usb_request.c revision 214804
1184610Salfred/* $FreeBSD: head/sys/dev/usb/usb_request.c 214804 2010-11-04 19:24:21Z hselasky $ */
2184610Salfred/*-
3184610Salfred * Copyright (c) 1998 The NetBSD Foundation, Inc. All rights reserved.
4184610Salfred * Copyright (c) 1998 Lennart Augustsson. All rights reserved.
5184610Salfred * Copyright (c) 2008 Hans Petter Selasky. All rights reserved.
6184610Salfred *
7184610Salfred * Redistribution and use in source and binary forms, with or without
8184610Salfred * modification, are permitted provided that the following conditions
9184610Salfred * are met:
10184610Salfred * 1. Redistributions of source code must retain the above copyright
11184610Salfred *    notice, this list of conditions and the following disclaimer.
12184610Salfred * 2. Redistributions in binary form must reproduce the above copyright
13184610Salfred *    notice, this list of conditions and the following disclaimer in the
14184610Salfred *    documentation and/or other materials provided with the distribution.
15184610Salfred *
16184610Salfred * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17184610Salfred * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18184610Salfred * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19184610Salfred * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20184610Salfred * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21184610Salfred * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22184610Salfred * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23184610Salfred * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24184610Salfred * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25184610Salfred * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26184610Salfred * SUCH DAMAGE.
27190754Sthompsa */
28184610Salfred
29194677Sthompsa#include <sys/stdint.h>
30194677Sthompsa#include <sys/stddef.h>
31194677Sthompsa#include <sys/param.h>
32194677Sthompsa#include <sys/queue.h>
33194677Sthompsa#include <sys/types.h>
34194677Sthompsa#include <sys/systm.h>
35194677Sthompsa#include <sys/kernel.h>
36194677Sthompsa#include <sys/bus.h>
37194677Sthompsa#include <sys/linker_set.h>
38194677Sthompsa#include <sys/module.h>
39194677Sthompsa#include <sys/lock.h>
40194677Sthompsa#include <sys/mutex.h>
41194677Sthompsa#include <sys/condvar.h>
42194677Sthompsa#include <sys/sysctl.h>
43194677Sthompsa#include <sys/sx.h>
44194677Sthompsa#include <sys/unistd.h>
45194677Sthompsa#include <sys/callout.h>
46194677Sthompsa#include <sys/malloc.h>
47194677Sthompsa#include <sys/priv.h>
48194677Sthompsa
49188942Sthompsa#include <dev/usb/usb.h>
50194677Sthompsa#include <dev/usb/usbdi.h>
51194677Sthompsa#include <dev/usb/usbdi_util.h>
52188942Sthompsa#include <dev/usb/usb_ioctl.h>
53188942Sthompsa#include <dev/usb/usbhid.h>
54184610Salfred
55194228Sthompsa#define	USB_DEBUG_VAR usb_debug
56184610Salfred
57188942Sthompsa#include <dev/usb/usb_core.h>
58188942Sthompsa#include <dev/usb/usb_busdma.h>
59188942Sthompsa#include <dev/usb/usb_request.h>
60188942Sthompsa#include <dev/usb/usb_process.h>
61188942Sthompsa#include <dev/usb/usb_transfer.h>
62188942Sthompsa#include <dev/usb/usb_debug.h>
63188942Sthompsa#include <dev/usb/usb_device.h>
64188942Sthompsa#include <dev/usb/usb_util.h>
65188942Sthompsa#include <dev/usb/usb_dynamic.h>
66184610Salfred
67188942Sthompsa#include <dev/usb/usb_controller.h>
68188942Sthompsa#include <dev/usb/usb_bus.h>
69184610Salfred#include <sys/ctype.h>
70184610Salfred
71207077Sthompsa#ifdef USB_DEBUG
72194228Sthompsastatic int usb_pr_poll_delay = USB_PORT_RESET_DELAY;
73194228Sthompsastatic int usb_pr_recovery_delay = USB_PORT_RESET_RECOVERY;
74184610Salfred
75192502SthompsaSYSCTL_INT(_hw_usb, OID_AUTO, pr_poll_delay, CTLFLAG_RW,
76194228Sthompsa    &usb_pr_poll_delay, 0, "USB port reset poll delay in ms");
77192502SthompsaSYSCTL_INT(_hw_usb, OID_AUTO, pr_recovery_delay, CTLFLAG_RW,
78194228Sthompsa    &usb_pr_recovery_delay, 0, "USB port reset recovery delay in ms");
79184610Salfred
80208018Sthompsa#ifdef USB_REQ_DEBUG
81208018Sthompsa/* The following structures are used in connection to fault injection. */
82208018Sthompsastruct usb_ctrl_debug {
83208018Sthompsa	int bus_index;		/* target bus */
84208018Sthompsa	int dev_index;		/* target address */
85208018Sthompsa	int ds_fail;		/* fail data stage */
86208018Sthompsa	int ss_fail;		/* fail data stage */
87208018Sthompsa	int ds_delay;		/* data stage delay in ms */
88208018Sthompsa	int ss_delay;		/* status stage delay in ms */
89208018Sthompsa	int bmRequestType_value;
90208018Sthompsa	int bRequest_value;
91208018Sthompsa};
92208018Sthompsa
93208018Sthompsastruct usb_ctrl_debug_bits {
94208018Sthompsa	uint16_t ds_delay;
95208018Sthompsa	uint16_t ss_delay;
96208018Sthompsa	uint8_t ds_fail:1;
97208018Sthompsa	uint8_t ss_fail:1;
98208018Sthompsa	uint8_t enabled:1;
99208018Sthompsa};
100208018Sthompsa
101208018Sthompsa/* The default is to disable fault injection. */
102208018Sthompsa
103208018Sthompsastatic struct usb_ctrl_debug usb_ctrl_debug = {
104208018Sthompsa	.bus_index = -1,
105208018Sthompsa	.dev_index = -1,
106208018Sthompsa	.bmRequestType_value = -1,
107208018Sthompsa	.bRequest_value = -1,
108208018Sthompsa};
109208018Sthompsa
110208018SthompsaSYSCTL_INT(_hw_usb, OID_AUTO, ctrl_bus_fail, CTLFLAG_RW,
111208018Sthompsa    &usb_ctrl_debug.bus_index, 0, "USB controller index to fail");
112208018SthompsaSYSCTL_INT(_hw_usb, OID_AUTO, ctrl_dev_fail, CTLFLAG_RW,
113208018Sthompsa    &usb_ctrl_debug.dev_index, 0, "USB device address to fail");
114208018SthompsaSYSCTL_INT(_hw_usb, OID_AUTO, ctrl_ds_fail, CTLFLAG_RW,
115208018Sthompsa    &usb_ctrl_debug.ds_fail, 0, "USB fail data stage");
116208018SthompsaSYSCTL_INT(_hw_usb, OID_AUTO, ctrl_ss_fail, CTLFLAG_RW,
117208018Sthompsa    &usb_ctrl_debug.ss_fail, 0, "USB fail status stage");
118208018SthompsaSYSCTL_INT(_hw_usb, OID_AUTO, ctrl_ds_delay, CTLFLAG_RW,
119208018Sthompsa    &usb_ctrl_debug.ds_delay, 0, "USB data stage delay in ms");
120208018SthompsaSYSCTL_INT(_hw_usb, OID_AUTO, ctrl_ss_delay, CTLFLAG_RW,
121208018Sthompsa    &usb_ctrl_debug.ss_delay, 0, "USB status stage delay in ms");
122208018SthompsaSYSCTL_INT(_hw_usb, OID_AUTO, ctrl_rt_fail, CTLFLAG_RW,
123208018Sthompsa    &usb_ctrl_debug.bmRequestType_value, 0, "USB bmRequestType to fail");
124208018SthompsaSYSCTL_INT(_hw_usb, OID_AUTO, ctrl_rv_fail, CTLFLAG_RW,
125208018Sthompsa    &usb_ctrl_debug.bRequest_value, 0, "USB bRequest to fail");
126208018Sthompsa
127184610Salfred/*------------------------------------------------------------------------*
128208018Sthompsa *	usbd_get_debug_bits
129208018Sthompsa *
130208018Sthompsa * This function is only useful in USB host mode.
131208018Sthompsa *------------------------------------------------------------------------*/
132208018Sthompsastatic void
133208018Sthompsausbd_get_debug_bits(struct usb_device *udev, struct usb_device_request *req,
134208018Sthompsa    struct usb_ctrl_debug_bits *dbg)
135208018Sthompsa{
136208018Sthompsa	int temp;
137208018Sthompsa
138208018Sthompsa	memset(dbg, 0, sizeof(*dbg));
139208018Sthompsa
140208018Sthompsa	/* Compute data stage delay */
141208018Sthompsa
142208018Sthompsa	temp = usb_ctrl_debug.ds_delay;
143208018Sthompsa	if (temp < 0)
144208018Sthompsa		temp = 0;
145208018Sthompsa	else if (temp > (16*1024))
146208018Sthompsa		temp = (16*1024);
147208018Sthompsa
148208018Sthompsa	dbg->ds_delay = temp;
149208018Sthompsa
150208018Sthompsa	/* Compute status stage delay */
151208018Sthompsa
152208018Sthompsa	temp = usb_ctrl_debug.ss_delay;
153208018Sthompsa	if (temp < 0)
154208018Sthompsa		temp = 0;
155208018Sthompsa	else if (temp > (16*1024))
156208018Sthompsa		temp = (16*1024);
157208018Sthompsa
158208018Sthompsa	dbg->ss_delay = temp;
159208018Sthompsa
160208018Sthompsa	/* Check if this control request should be failed */
161208018Sthompsa
162208018Sthompsa	if (usbd_get_bus_index(udev) != usb_ctrl_debug.bus_index)
163208018Sthompsa		return;
164208018Sthompsa
165208018Sthompsa	if (usbd_get_device_index(udev) != usb_ctrl_debug.dev_index)
166208018Sthompsa		return;
167208018Sthompsa
168208018Sthompsa	temp = usb_ctrl_debug.bmRequestType_value;
169208018Sthompsa
170208018Sthompsa	if ((temp != req->bmRequestType) && (temp >= 0) && (temp <= 255))
171208018Sthompsa		return;
172208018Sthompsa
173208018Sthompsa	temp = usb_ctrl_debug.bRequest_value;
174208018Sthompsa
175208018Sthompsa	if ((temp != req->bRequest) && (temp >= 0) && (temp <= 255))
176208018Sthompsa		return;
177208018Sthompsa
178208018Sthompsa	temp = usb_ctrl_debug.ds_fail;
179208018Sthompsa	if (temp)
180208018Sthompsa		dbg->ds_fail = 1;
181208018Sthompsa
182208018Sthompsa	temp = usb_ctrl_debug.ss_fail;
183208018Sthompsa	if (temp)
184208018Sthompsa		dbg->ss_fail = 1;
185208018Sthompsa
186208018Sthompsa	dbg->enabled = 1;
187208018Sthompsa}
188208018Sthompsa#endif	/* USB_REQ_DEBUG */
189208018Sthompsa#endif	/* USB_DEBUG */
190208018Sthompsa
191208018Sthompsa/*------------------------------------------------------------------------*
192194228Sthompsa *	usbd_do_request_callback
193184610Salfred *
194184610Salfred * This function is the USB callback for generic USB Host control
195184610Salfred * transfers.
196184610Salfred *------------------------------------------------------------------------*/
197184610Salfredvoid
198194677Sthompsausbd_do_request_callback(struct usb_xfer *xfer, usb_error_t error)
199184610Salfred{
200184610Salfred	;				/* workaround for a bug in "indent" */
201184610Salfred
202184610Salfred	DPRINTF("st=%u\n", USB_GET_STATE(xfer));
203184610Salfred
204184610Salfred	switch (USB_GET_STATE(xfer)) {
205184610Salfred	case USB_ST_SETUP:
206194228Sthompsa		usbd_transfer_submit(xfer);
207184610Salfred		break;
208184610Salfred	default:
209207079Sthompsa		cv_signal(&xfer->xroot->udev->ctrlreq_cv);
210184610Salfred		break;
211184610Salfred	}
212184610Salfred}
213184610Salfred
214184610Salfred/*------------------------------------------------------------------------*
215194228Sthompsa *	usb_do_clear_stall_callback
216184610Salfred *
217184610Salfred * This function is the USB callback for generic clear stall requests.
218184610Salfred *------------------------------------------------------------------------*/
219184610Salfredvoid
220194677Sthompsausb_do_clear_stall_callback(struct usb_xfer *xfer, usb_error_t error)
221184610Salfred{
222192984Sthompsa	struct usb_device_request req;
223192984Sthompsa	struct usb_device *udev;
224193644Sthompsa	struct usb_endpoint *ep;
225193644Sthompsa	struct usb_endpoint *ep_end;
226193644Sthompsa	struct usb_endpoint *ep_first;
227190731Sthompsa	uint8_t to;
228184610Salfred
229187173Sthompsa	udev = xfer->xroot->udev;
230184610Salfred
231187173Sthompsa	USB_BUS_LOCK(udev->bus);
232187173Sthompsa
233193644Sthompsa	/* round robin endpoint clear stall */
234184610Salfred
235193644Sthompsa	ep = udev->ep_curr;
236193644Sthompsa	ep_end = udev->endpoints + udev->endpoints_max;
237193644Sthompsa	ep_first = udev->endpoints;
238193644Sthompsa	to = udev->endpoints_max;
239193318Sthompsa
240184610Salfred	switch (USB_GET_STATE(xfer)) {
241184610Salfred	case USB_ST_TRANSFERRED:
242193644Sthompsa		if (ep == NULL)
243193318Sthompsa			goto tr_setup;		/* device was unconfigured */
244193644Sthompsa		if (ep->edesc &&
245193644Sthompsa		    ep->is_stalled) {
246193644Sthompsa			ep->toggle_next = 0;
247193644Sthompsa			ep->is_stalled = 0;
248213435Shselasky			/* some hardware needs a callback to clear the data toggle */
249213435Shselasky			usbd_clear_stall_locked(udev, ep);
250184610Salfred			/* start up the current or next transfer, if any */
251194228Sthompsa			usb_command_wrapper(&ep->endpoint_q,
252193644Sthompsa			    ep->endpoint_q.curr);
253184610Salfred		}
254193644Sthompsa		ep++;
255184610Salfred
256184610Salfred	case USB_ST_SETUP:
257184610Salfredtr_setup:
258193318Sthompsa		if (to == 0)
259193644Sthompsa			break;			/* no endpoints - nothing to do */
260193644Sthompsa		if ((ep < ep_first) || (ep >= ep_end))
261193644Sthompsa			ep = ep_first;	/* endpoint wrapped around */
262193644Sthompsa		if (ep->edesc &&
263193644Sthompsa		    ep->is_stalled) {
264184610Salfred
265184610Salfred			/* setup a clear-stall packet */
266184610Salfred
267184610Salfred			req.bmRequestType = UT_WRITE_ENDPOINT;
268184610Salfred			req.bRequest = UR_CLEAR_FEATURE;
269184610Salfred			USETW(req.wValue, UF_ENDPOINT_HALT);
270193644Sthompsa			req.wIndex[0] = ep->edesc->bEndpointAddress;
271184610Salfred			req.wIndex[1] = 0;
272184610Salfred			USETW(req.wLength, 0);
273184610Salfred
274184610Salfred			/* copy in the transfer */
275184610Salfred
276194228Sthompsa			usbd_copy_in(xfer->frbuffers, 0, &req, sizeof(req));
277184610Salfred
278184610Salfred			/* set length */
279194677Sthompsa			usbd_xfer_set_frame_len(xfer, 0, sizeof(req));
280184610Salfred			xfer->nframes = 1;
281187173Sthompsa			USB_BUS_UNLOCK(udev->bus);
282184610Salfred
283194228Sthompsa			usbd_transfer_submit(xfer);
284184610Salfred
285187173Sthompsa			USB_BUS_LOCK(udev->bus);
286184610Salfred			break;
287184610Salfred		}
288193644Sthompsa		ep++;
289193318Sthompsa		to--;
290193318Sthompsa		goto tr_setup;
291184610Salfred
292184610Salfred	default:
293184610Salfred		if (xfer->error == USB_ERR_CANCELLED) {
294184610Salfred			break;
295184610Salfred		}
296184610Salfred		goto tr_setup;
297184610Salfred	}
298184610Salfred
299193644Sthompsa	/* store current endpoint */
300193644Sthompsa	udev->ep_curr = ep;
301187173Sthompsa	USB_BUS_UNLOCK(udev->bus);
302184610Salfred}
303184610Salfred
304193045Sthompsastatic usb_handle_req_t *
305194228Sthompsausbd_get_hr_func(struct usb_device *udev)
306191402Sthompsa{
307191402Sthompsa	/* figure out if there is a Handle Request function */
308192499Sthompsa	if (udev->flags.usb_mode == USB_MODE_DEVICE)
309194228Sthompsa		return (usb_temp_get_desc_p);
310191402Sthompsa	else if (udev->parent_hub == NULL)
311191402Sthompsa		return (udev->bus->methods->roothub_exec);
312191402Sthompsa	else
313191402Sthompsa		return (NULL);
314191402Sthompsa}
315191402Sthompsa
316184610Salfred/*------------------------------------------------------------------------*
317194228Sthompsa *	usbd_do_request_flags and usbd_do_request
318184610Salfred *
319184610Salfred * Description of arguments passed to these functions:
320184610Salfred *
321192984Sthompsa * "udev" - this is the "usb_device" structure pointer on which the
322184610Salfred * request should be performed. It is possible to call this function
323184610Salfred * in both Host Side mode and Device Side mode.
324184610Salfred *
325184610Salfred * "mtx" - if this argument is non-NULL the mutex pointed to by it
326184610Salfred * will get dropped and picked up during the execution of this
327184610Salfred * function, hence this function sometimes needs to sleep. If this
328184610Salfred * argument is NULL it has no effect.
329184610Salfred *
330184610Salfred * "req" - this argument must always be non-NULL and points to an
331184610Salfred * 8-byte structure holding the USB request to be done. The USB
332184610Salfred * request structure has a bit telling the direction of the USB
333184610Salfred * request, if it is a read or a write.
334184610Salfred *
335184610Salfred * "data" - if the "wLength" part of the structure pointed to by "req"
336184610Salfred * is non-zero this argument must point to a valid kernel buffer which
337184610Salfred * can hold at least "wLength" bytes. If "wLength" is zero "data" can
338184610Salfred * be NULL.
339184610Salfred *
340184610Salfred * "flags" - here is a list of valid flags:
341184610Salfred *
342184610Salfred *  o USB_SHORT_XFER_OK: allows the data transfer to be shorter than
343184610Salfred *  specified
344184610Salfred *
345184610Salfred *  o USB_DELAY_STATUS_STAGE: allows the status stage to be performed
346184610Salfred *  at a later point in time. This is tunable by the "hw.usb.ss_delay"
347184610Salfred *  sysctl. This flag is mostly useful for debugging.
348184610Salfred *
349184610Salfred *  o USB_USER_DATA_PTR: treat the "data" pointer like a userland
350184610Salfred *  pointer.
351184610Salfred *
352184610Salfred * "actlen" - if non-NULL the actual transfer length will be stored in
353184610Salfred * the 16-bit unsigned integer pointed to by "actlen". This
354184610Salfred * information is mostly useful when the "USB_SHORT_XFER_OK" flag is
355184610Salfred * used.
356184610Salfred *
357184610Salfred * "timeout" - gives the timeout for the control transfer in
358184610Salfred * milliseconds. A "timeout" value less than 50 milliseconds is
359184610Salfred * treated like a 50 millisecond timeout. A "timeout" value greater
360184610Salfred * than 30 seconds is treated like a 30 second timeout. This USB stack
361184610Salfred * does not allow control requests without a timeout.
362184610Salfred *
363184610Salfred * NOTE: This function is thread safe. All calls to
364194228Sthompsa * "usbd_do_request_flags" will be serialised by the use of an
365184610Salfred * internal "sx_lock".
366184610Salfred *
367184610Salfred * Returns:
368184610Salfred *    0: Success
369184610Salfred * Else: Failure
370184610Salfred *------------------------------------------------------------------------*/
371193045Sthompsausb_error_t
372194228Sthompsausbd_do_request_flags(struct usb_device *udev, struct mtx *mtx,
373192984Sthompsa    struct usb_device_request *req, void *data, uint16_t flags,
374193045Sthompsa    uint16_t *actlen, usb_timeout_t timeout)
375184610Salfred{
376208018Sthompsa#ifdef USB_REQ_DEBUG
377208018Sthompsa	struct usb_ctrl_debug_bits dbg;
378208018Sthompsa#endif
379193045Sthompsa	usb_handle_req_t *hr_func;
380192984Sthompsa	struct usb_xfer *xfer;
381184610Salfred	const void *desc;
382184610Salfred	int err = 0;
383193045Sthompsa	usb_ticks_t start_ticks;
384193045Sthompsa	usb_ticks_t delta_ticks;
385193045Sthompsa	usb_ticks_t max_ticks;
386184610Salfred	uint16_t length;
387184610Salfred	uint16_t temp;
388208018Sthompsa	uint16_t acttemp;
389208008Sthompsa	uint8_t enum_locked;
390184610Salfred
391184610Salfred	if (timeout < 50) {
392184610Salfred		/* timeout is too small */
393184610Salfred		timeout = 50;
394184610Salfred	}
395184610Salfred	if (timeout > 30000) {
396184610Salfred		/* timeout is too big */
397184610Salfred		timeout = 30000;
398184610Salfred	}
399184610Salfred	length = UGETW(req->wLength);
400184610Salfred
401208008Sthompsa	enum_locked = usbd_enum_is_locked(udev);
402208008Sthompsa
403184610Salfred	DPRINTFN(5, "udev=%p bmRequestType=0x%02x bRequest=0x%02x "
404184610Salfred	    "wValue=0x%02x%02x wIndex=0x%02x%02x wLength=0x%02x%02x\n",
405184610Salfred	    udev, req->bmRequestType, req->bRequest,
406184610Salfred	    req->wValue[1], req->wValue[0],
407184610Salfred	    req->wIndex[1], req->wIndex[0],
408184610Salfred	    req->wLength[1], req->wLength[0]);
409184610Salfred
410191494Sthompsa	/* Check if the device is still alive */
411191494Sthompsa	if (udev->state < USB_STATE_POWERED) {
412191494Sthompsa		DPRINTF("usb device has gone\n");
413191494Sthompsa		return (USB_ERR_NOT_CONFIGURED);
414191494Sthompsa	}
415191494Sthompsa
416184610Salfred	/*
417184610Salfred	 * Set "actlen" to a known value in case the caller does not
418184610Salfred	 * check the return value:
419184610Salfred	 */
420190735Sthompsa	if (actlen)
421184610Salfred		*actlen = 0;
422190735Sthompsa
423190180Sthompsa#if (USB_HAVE_USER_IO == 0)
424190180Sthompsa	if (flags & USB_USER_DATA_PTR)
425190180Sthompsa		return (USB_ERR_INVAL);
426190180Sthompsa#endif
427208008Sthompsa	if ((mtx != NULL) && (mtx != &Giant)) {
428184610Salfred		mtx_unlock(mtx);
429208008Sthompsa		mtx_assert(mtx, MA_NOTOWNED);
430184610Salfred	}
431208008Sthompsa
432184610Salfred	/*
433208008Sthompsa	 * We need to allow suspend and resume at this point, else the
434208008Sthompsa	 * control transfer will timeout if the device is suspended!
435208008Sthompsa	 */
436208008Sthompsa	if (enum_locked)
437208008Sthompsa		usbd_sr_unlock(udev);
438208008Sthompsa
439208008Sthompsa	/*
440184610Salfred	 * Grab the default sx-lock so that serialisation
441184610Salfred	 * is achieved when multiple threads are involved:
442184610Salfred	 */
443207079Sthompsa	sx_xlock(&udev->ctrl_sx);
444184610Salfred
445194228Sthompsa	hr_func = usbd_get_hr_func(udev);
446190735Sthompsa
447191402Sthompsa	if (hr_func != NULL) {
448191402Sthompsa		DPRINTF("Handle Request function is set\n");
449190735Sthompsa
450191402Sthompsa		desc = NULL;
451191402Sthompsa		temp = 0;
452191402Sthompsa
453191402Sthompsa		if (!(req->bmRequestType & UT_READ)) {
454190735Sthompsa			if (length != 0) {
455191402Sthompsa				DPRINTFN(1, "The handle request function "
456191402Sthompsa				    "does not support writing data!\n");
457191402Sthompsa				err = USB_ERR_INVAL;
458191402Sthompsa				goto done;
459190735Sthompsa			}
460190735Sthompsa		}
461190735Sthompsa
462191402Sthompsa		/* The root HUB code needs the BUS lock locked */
463191402Sthompsa
464190735Sthompsa		USB_BUS_LOCK(udev->bus);
465191402Sthompsa		err = (hr_func) (udev, req, &desc, &temp);
466190735Sthompsa		USB_BUS_UNLOCK(udev->bus);
467190735Sthompsa
468190735Sthompsa		if (err)
469190735Sthompsa			goto done;
470190735Sthompsa
471191402Sthompsa		if (length > temp) {
472190735Sthompsa			if (!(flags & USB_SHORT_XFER_OK)) {
473190735Sthompsa				err = USB_ERR_SHORT_XFER;
474190735Sthompsa				goto done;
475190735Sthompsa			}
476191402Sthompsa			length = temp;
477190735Sthompsa		}
478190735Sthompsa		if (actlen)
479190735Sthompsa			*actlen = length;
480190735Sthompsa
481190735Sthompsa		if (length > 0) {
482190735Sthompsa#if USB_HAVE_USER_IO
483190735Sthompsa			if (flags & USB_USER_DATA_PTR) {
484191402Sthompsa				if (copyout(desc, data, length)) {
485190735Sthompsa					err = USB_ERR_INVAL;
486190735Sthompsa					goto done;
487190735Sthompsa				}
488190735Sthompsa			} else
489190735Sthompsa#endif
490191402Sthompsa				bcopy(desc, data, length);
491190735Sthompsa		}
492191402Sthompsa		goto done;		/* success */
493190735Sthompsa	}
494190735Sthompsa
495184610Salfred	/*
496184610Salfred	 * Setup a new USB transfer or use the existing one, if any:
497184610Salfred	 */
498207080Sthompsa	usbd_ctrl_transfer_setup(udev);
499184610Salfred
500207080Sthompsa	xfer = udev->ctrl_xfer[0];
501184610Salfred	if (xfer == NULL) {
502184610Salfred		/* most likely out of memory */
503184610Salfred		err = USB_ERR_NOMEM;
504184610Salfred		goto done;
505184610Salfred	}
506208018Sthompsa
507208018Sthompsa#ifdef USB_REQ_DEBUG
508208018Sthompsa	/* Get debug bits */
509208018Sthompsa	usbd_get_debug_bits(udev, req, &dbg);
510208018Sthompsa
511208018Sthompsa	/* Check for fault injection */
512208018Sthompsa	if (dbg.enabled)
513208018Sthompsa		flags |= USB_DELAY_STATUS_STAGE;
514208018Sthompsa#endif
515184824Sthompsa	USB_XFER_LOCK(xfer);
516184610Salfred
517190734Sthompsa	if (flags & USB_DELAY_STATUS_STAGE)
518184610Salfred		xfer->flags.manual_status = 1;
519190734Sthompsa	else
520184610Salfred		xfer->flags.manual_status = 0;
521184610Salfred
522190734Sthompsa	if (flags & USB_SHORT_XFER_OK)
523190734Sthompsa		xfer->flags.short_xfer_ok = 1;
524190734Sthompsa	else
525190734Sthompsa		xfer->flags.short_xfer_ok = 0;
526190734Sthompsa
527184610Salfred	xfer->timeout = timeout;
528184610Salfred
529184610Salfred	start_ticks = ticks;
530184610Salfred
531184610Salfred	max_ticks = USB_MS_TO_TICKS(timeout);
532184610Salfred
533194228Sthompsa	usbd_copy_in(xfer->frbuffers, 0, req, sizeof(*req));
534184610Salfred
535194677Sthompsa	usbd_xfer_set_frame_len(xfer, 0, sizeof(*req));
536184610Salfred
537184610Salfred	while (1) {
538184610Salfred		temp = length;
539208018Sthompsa		if (temp > usbd_xfer_max_len(xfer)) {
540194677Sthompsa			temp = usbd_xfer_max_len(xfer);
541184610Salfred		}
542208018Sthompsa#ifdef USB_REQ_DEBUG
543208018Sthompsa		if (xfer->flags.manual_status) {
544208018Sthompsa			if (usbd_xfer_frame_len(xfer, 0) != 0) {
545208018Sthompsa				/* Execute data stage separately */
546208018Sthompsa				temp = 0;
547208018Sthompsa			} else if (temp > 0) {
548208018Sthompsa				if (dbg.ds_fail) {
549208018Sthompsa					err = USB_ERR_INVAL;
550208018Sthompsa					break;
551208018Sthompsa				}
552208018Sthompsa				if (dbg.ds_delay > 0) {
553208018Sthompsa					usb_pause_mtx(
554208018Sthompsa					    xfer->xroot->xfer_mtx,
555208018Sthompsa				            USB_MS_TO_TICKS(dbg.ds_delay));
556208018Sthompsa					/* make sure we don't time out */
557208018Sthompsa					start_ticks = ticks;
558208018Sthompsa				}
559208018Sthompsa			}
560208018Sthompsa		}
561208018Sthompsa#endif
562194677Sthompsa		usbd_xfer_set_frame_len(xfer, 1, temp);
563184610Salfred
564184610Salfred		if (temp > 0) {
565184610Salfred			if (!(req->bmRequestType & UT_READ)) {
566190180Sthompsa#if USB_HAVE_USER_IO
567184610Salfred				if (flags & USB_USER_DATA_PTR) {
568184824Sthompsa					USB_XFER_UNLOCK(xfer);
569194228Sthompsa					err = usbd_copy_in_user(xfer->frbuffers + 1,
570184610Salfred					    0, data, temp);
571184824Sthompsa					USB_XFER_LOCK(xfer);
572184610Salfred					if (err) {
573184610Salfred						err = USB_ERR_INVAL;
574184610Salfred						break;
575184610Salfred					}
576190180Sthompsa				} else
577190180Sthompsa#endif
578194228Sthompsa					usbd_copy_in(xfer->frbuffers + 1,
579190180Sthompsa					    0, data, temp);
580184610Salfred			}
581208018Sthompsa			usbd_xfer_set_frames(xfer, 2);
582184610Salfred		} else {
583208018Sthompsa			if (usbd_xfer_frame_len(xfer, 0) == 0) {
584184610Salfred				if (xfer->flags.manual_status) {
585208018Sthompsa#ifdef USB_REQ_DEBUG
586208018Sthompsa					if (dbg.ss_fail) {
587208018Sthompsa						err = USB_ERR_INVAL;
588208018Sthompsa						break;
589184610Salfred					}
590208018Sthompsa					if (dbg.ss_delay > 0) {
591194228Sthompsa						usb_pause_mtx(
592187173Sthompsa						    xfer->xroot->xfer_mtx,
593208018Sthompsa						    USB_MS_TO_TICKS(dbg.ss_delay));
594208018Sthompsa						/* make sure we don't time out */
595208018Sthompsa						start_ticks = ticks;
596184610Salfred					}
597184610Salfred#endif
598184610Salfred					xfer->flags.manual_status = 0;
599184610Salfred				} else {
600184610Salfred					break;
601184610Salfred				}
602184610Salfred			}
603208018Sthompsa			usbd_xfer_set_frames(xfer, 1);
604184610Salfred		}
605184610Salfred
606194228Sthompsa		usbd_transfer_start(xfer);
607184610Salfred
608194228Sthompsa		while (usbd_transfer_pending(xfer)) {
609207079Sthompsa			cv_wait(&udev->ctrlreq_cv,
610188983Sthompsa			    xfer->xroot->xfer_mtx);
611184610Salfred		}
612184610Salfred
613184610Salfred		err = xfer->error;
614184610Salfred
615184610Salfred		if (err) {
616184610Salfred			break;
617184610Salfred		}
618184610Salfred
619208018Sthompsa		/* get actual length of DATA stage */
620208018Sthompsa
621208018Sthompsa		if (xfer->aframes < 2) {
622208018Sthompsa			acttemp = 0;
623184610Salfred		} else {
624208018Sthompsa			acttemp = usbd_xfer_frame_len(xfer, 1);
625184610Salfred		}
626184610Salfred
627184610Salfred		/* check for short packet */
628184610Salfred
629208018Sthompsa		if (temp > acttemp) {
630208018Sthompsa			temp = acttemp;
631184610Salfred			length = temp;
632184610Salfred		}
633184610Salfred		if (temp > 0) {
634184610Salfred			if (req->bmRequestType & UT_READ) {
635190180Sthompsa#if USB_HAVE_USER_IO
636184610Salfred				if (flags & USB_USER_DATA_PTR) {
637184824Sthompsa					USB_XFER_UNLOCK(xfer);
638194228Sthompsa					err = usbd_copy_out_user(xfer->frbuffers + 1,
639184610Salfred					    0, data, temp);
640184824Sthompsa					USB_XFER_LOCK(xfer);
641184610Salfred					if (err) {
642184610Salfred						err = USB_ERR_INVAL;
643184610Salfred						break;
644184610Salfred					}
645190180Sthompsa				} else
646190180Sthompsa#endif
647194228Sthompsa					usbd_copy_out(xfer->frbuffers + 1,
648184610Salfred					    0, data, temp);
649184610Salfred			}
650184610Salfred		}
651184610Salfred		/*
652184610Salfred		 * Clear "frlengths[0]" so that we don't send the setup
653184610Salfred		 * packet again:
654184610Salfred		 */
655194677Sthompsa		usbd_xfer_set_frame_len(xfer, 0, 0);
656184610Salfred
657184610Salfred		/* update length and data pointer */
658184610Salfred		length -= temp;
659184610Salfred		data = USB_ADD_BYTES(data, temp);
660184610Salfred
661184610Salfred		if (actlen) {
662184610Salfred			(*actlen) += temp;
663184610Salfred		}
664184610Salfred		/* check for timeout */
665184610Salfred
666184610Salfred		delta_ticks = ticks - start_ticks;
667184610Salfred		if (delta_ticks > max_ticks) {
668184610Salfred			if (!err) {
669184610Salfred				err = USB_ERR_TIMEOUT;
670184610Salfred			}
671184610Salfred		}
672184610Salfred		if (err) {
673184610Salfred			break;
674184610Salfred		}
675184610Salfred	}
676184610Salfred
677184610Salfred	if (err) {
678184610Salfred		/*
679184610Salfred		 * Make sure that the control endpoint is no longer
680184610Salfred		 * blocked in case of a non-transfer related error:
681184610Salfred		 */
682194228Sthompsa		usbd_transfer_stop(xfer);
683184610Salfred	}
684184824Sthompsa	USB_XFER_UNLOCK(xfer);
685184610Salfred
686184610Salfreddone:
687207079Sthompsa	sx_xunlock(&udev->ctrl_sx);
688184610Salfred
689208008Sthompsa	if (enum_locked)
690208008Sthompsa		usbd_sr_lock(udev);
691208008Sthompsa
692208008Sthompsa	if ((mtx != NULL) && (mtx != &Giant))
693184610Salfred		mtx_lock(mtx);
694208008Sthompsa
695193045Sthompsa	return ((usb_error_t)err);
696184610Salfred}
697184610Salfred
698184610Salfred/*------------------------------------------------------------------------*
699194228Sthompsa *	usbd_do_request_proc - factored out code
700188411Sthompsa *
701188411Sthompsa * This function is factored out code. It does basically the same like
702194228Sthompsa * usbd_do_request_flags, except it will check the status of the
703188411Sthompsa * passed process argument before doing the USB request. If the
704188411Sthompsa * process is draining the USB_ERR_IOERROR code will be returned. It
705188411Sthompsa * is assumed that the mutex associated with the process is locked
706188411Sthompsa * when calling this function.
707188411Sthompsa *------------------------------------------------------------------------*/
708193045Sthompsausb_error_t
709194228Sthompsausbd_do_request_proc(struct usb_device *udev, struct usb_process *pproc,
710192984Sthompsa    struct usb_device_request *req, void *data, uint16_t flags,
711193045Sthompsa    uint16_t *actlen, usb_timeout_t timeout)
712188411Sthompsa{
713193045Sthompsa	usb_error_t err;
714188411Sthompsa	uint16_t len;
715188411Sthompsa
716188411Sthompsa	/* get request data length */
717188411Sthompsa	len = UGETW(req->wLength);
718188411Sthompsa
719188411Sthompsa	/* check if the device is being detached */
720194228Sthompsa	if (usb_proc_is_gone(pproc)) {
721188411Sthompsa		err = USB_ERR_IOERROR;
722188411Sthompsa		goto done;
723188411Sthompsa	}
724188411Sthompsa
725188411Sthompsa	/* forward the USB request */
726194228Sthompsa	err = usbd_do_request_flags(udev, pproc->up_mtx,
727188411Sthompsa	    req, data, flags, actlen, timeout);
728188411Sthompsa
729188411Sthompsadone:
730188411Sthompsa	/* on failure we zero the data */
731188411Sthompsa	/* on short packet we zero the unused data */
732188411Sthompsa	if ((len != 0) && (req->bmRequestType & UE_DIR_IN)) {
733188411Sthompsa		if (err)
734188411Sthompsa			memset(data, 0, len);
735188411Sthompsa		else if (actlen && *actlen != len)
736188411Sthompsa			memset(((uint8_t *)data) + *actlen, 0, len - *actlen);
737188411Sthompsa	}
738188411Sthompsa	return (err);
739188411Sthompsa}
740188411Sthompsa
741188411Sthompsa/*------------------------------------------------------------------------*
742194228Sthompsa *	usbd_req_reset_port
743184610Salfred *
744214804Shselasky * This function will instruct a USB HUB to perform a reset sequence
745184610Salfred * on the specified port number.
746184610Salfred *
747184610Salfred * Returns:
748184610Salfred *    0: Success. The USB device should now be at address zero.
749184610Salfred * Else: Failure. No USB device is present and the USB port should be
750184610Salfred *       disabled.
751184610Salfred *------------------------------------------------------------------------*/
752193045Sthompsausb_error_t
753194228Sthompsausbd_req_reset_port(struct usb_device *udev, struct mtx *mtx, uint8_t port)
754184610Salfred{
755192984Sthompsa	struct usb_port_status ps;
756193045Sthompsa	usb_error_t err;
757184610Salfred	uint16_t n;
758184610Salfred
759207077Sthompsa#ifdef USB_DEBUG
760184610Salfred	uint16_t pr_poll_delay;
761184610Salfred	uint16_t pr_recovery_delay;
762184610Salfred
763184610Salfred#endif
764194228Sthompsa	err = usbd_req_set_port_feature(udev, mtx, port, UHF_PORT_RESET);
765184610Salfred	if (err) {
766184610Salfred		goto done;
767184610Salfred	}
768207077Sthompsa#ifdef USB_DEBUG
769184610Salfred	/* range check input parameters */
770194228Sthompsa	pr_poll_delay = usb_pr_poll_delay;
771184610Salfred	if (pr_poll_delay < 1) {
772184610Salfred		pr_poll_delay = 1;
773184610Salfred	} else if (pr_poll_delay > 1000) {
774184610Salfred		pr_poll_delay = 1000;
775184610Salfred	}
776194228Sthompsa	pr_recovery_delay = usb_pr_recovery_delay;
777184610Salfred	if (pr_recovery_delay > 1000) {
778184610Salfred		pr_recovery_delay = 1000;
779184610Salfred	}
780184610Salfred#endif
781184610Salfred	n = 0;
782184610Salfred	while (1) {
783207077Sthompsa#ifdef USB_DEBUG
784184610Salfred		/* wait for the device to recover from reset */
785194228Sthompsa		usb_pause_mtx(mtx, USB_MS_TO_TICKS(pr_poll_delay));
786184610Salfred		n += pr_poll_delay;
787184610Salfred#else
788184610Salfred		/* wait for the device to recover from reset */
789194228Sthompsa		usb_pause_mtx(mtx, USB_MS_TO_TICKS(USB_PORT_RESET_DELAY));
790184610Salfred		n += USB_PORT_RESET_DELAY;
791184610Salfred#endif
792194228Sthompsa		err = usbd_req_get_port_status(udev, mtx, &ps, port);
793184610Salfred		if (err) {
794184610Salfred			goto done;
795184610Salfred		}
796214804Shselasky		/* check if reset is complete */
797214804Shselasky		if (UGETW(ps.wPortChange) & UPS_C_PORT_RESET) {
798214804Shselasky			break;
799214804Shselasky		}
800214804Shselasky		/* check for timeout */
801214804Shselasky		if (n > 1000) {
802214804Shselasky			n = 0;
803214804Shselasky			break;
804214804Shselasky		}
805214804Shselasky	}
806214804Shselasky
807214804Shselasky	/* clear port reset first */
808214804Shselasky	err = usbd_req_clear_port_feature(
809214804Shselasky	    udev, mtx, port, UHF_C_PORT_RESET);
810214804Shselasky	if (err) {
811214804Shselasky		goto done;
812214804Shselasky	}
813214804Shselasky	/* check for timeout */
814214804Shselasky	if (n == 0) {
815214804Shselasky		err = USB_ERR_TIMEOUT;
816214804Shselasky		goto done;
817214804Shselasky	}
818214804Shselasky#ifdef USB_DEBUG
819214804Shselasky	/* wait for the device to recover from reset */
820214804Shselasky	usb_pause_mtx(mtx, USB_MS_TO_TICKS(pr_recovery_delay));
821214804Shselasky#else
822214804Shselasky	/* wait for the device to recover from reset */
823214804Shselasky	usb_pause_mtx(mtx, USB_MS_TO_TICKS(USB_PORT_RESET_RECOVERY));
824214804Shselasky#endif
825214804Shselasky
826214804Shselaskydone:
827214804Shselasky	DPRINTFN(2, "port %d reset returning error=%s\n",
828214804Shselasky	    port, usbd_errstr(err));
829214804Shselasky	return (err);
830214804Shselasky}
831214804Shselasky
832214804Shselasky/*------------------------------------------------------------------------*
833214804Shselasky *	usbd_req_warm_reset_port
834214804Shselasky *
835214804Shselasky * This function will instruct an USB HUB to perform a warm reset
836214804Shselasky * sequence on the specified port number. This kind of reset is not
837214804Shselasky * mandatory for LOW-, FULL- and HIGH-speed USB HUBs and is targeted
838214804Shselasky * for SUPER-speed USB HUBs.
839214804Shselasky *
840214804Shselasky * Returns:
841214804Shselasky *    0: Success. The USB device should now be available again.
842214804Shselasky * Else: Failure. No USB device is present and the USB port should be
843214804Shselasky *       disabled.
844214804Shselasky *------------------------------------------------------------------------*/
845214804Shselaskyusb_error_t
846214804Shselaskyusbd_req_warm_reset_port(struct usb_device *udev, struct mtx *mtx, uint8_t port)
847214804Shselasky{
848214804Shselasky	struct usb_port_status ps;
849214804Shselasky	usb_error_t err;
850214804Shselasky	uint16_t n;
851214804Shselasky
852214804Shselasky#ifdef USB_DEBUG
853214804Shselasky	uint16_t pr_poll_delay;
854214804Shselasky	uint16_t pr_recovery_delay;
855214804Shselasky
856214804Shselasky#endif
857214804Shselasky	err = usbd_req_set_port_feature(udev, mtx, port, UHF_BH_PORT_RESET);
858214804Shselasky	if (err) {
859214804Shselasky		goto done;
860214804Shselasky	}
861214804Shselasky#ifdef USB_DEBUG
862214804Shselasky	/* range check input parameters */
863214804Shselasky	pr_poll_delay = usb_pr_poll_delay;
864214804Shselasky	if (pr_poll_delay < 1) {
865214804Shselasky		pr_poll_delay = 1;
866214804Shselasky	} else if (pr_poll_delay > 1000) {
867214804Shselasky		pr_poll_delay = 1000;
868214804Shselasky	}
869214804Shselasky	pr_recovery_delay = usb_pr_recovery_delay;
870214804Shselasky	if (pr_recovery_delay > 1000) {
871214804Shselasky		pr_recovery_delay = 1000;
872214804Shselasky	}
873214804Shselasky#endif
874214804Shselasky	n = 0;
875214804Shselasky	while (1) {
876214804Shselasky#ifdef USB_DEBUG
877214804Shselasky		/* wait for the device to recover from reset */
878214804Shselasky		usb_pause_mtx(mtx, USB_MS_TO_TICKS(pr_poll_delay));
879214804Shselasky		n += pr_poll_delay;
880214804Shselasky#else
881214804Shselasky		/* wait for the device to recover from reset */
882214804Shselasky		usb_pause_mtx(mtx, USB_MS_TO_TICKS(USB_PORT_RESET_DELAY));
883214804Shselasky		n += USB_PORT_RESET_DELAY;
884214804Shselasky#endif
885214804Shselasky		err = usbd_req_get_port_status(udev, mtx, &ps, port);
886214804Shselasky		if (err) {
887214804Shselasky			goto done;
888214804Shselasky		}
889184610Salfred		/* if the device disappeared, just give up */
890184610Salfred		if (!(UGETW(ps.wPortStatus) & UPS_CURRENT_CONNECT_STATUS)) {
891184610Salfred			goto done;
892184610Salfred		}
893184610Salfred		/* check if reset is complete */
894214804Shselasky		if (UGETW(ps.wPortChange) & UPS_C_BH_PORT_RESET) {
895184610Salfred			break;
896184610Salfred		}
897184610Salfred		/* check for timeout */
898184610Salfred		if (n > 1000) {
899184610Salfred			n = 0;
900184610Salfred			break;
901184610Salfred		}
902184610Salfred	}
903184610Salfred
904184610Salfred	/* clear port reset first */
905194228Sthompsa	err = usbd_req_clear_port_feature(
906214804Shselasky	    udev, mtx, port, UHF_C_BH_PORT_RESET);
907184610Salfred	if (err) {
908184610Salfred		goto done;
909184610Salfred	}
910184610Salfred	/* check for timeout */
911184610Salfred	if (n == 0) {
912184610Salfred		err = USB_ERR_TIMEOUT;
913184610Salfred		goto done;
914184610Salfred	}
915207077Sthompsa#ifdef USB_DEBUG
916184610Salfred	/* wait for the device to recover from reset */
917194228Sthompsa	usb_pause_mtx(mtx, USB_MS_TO_TICKS(pr_recovery_delay));
918184610Salfred#else
919184610Salfred	/* wait for the device to recover from reset */
920194228Sthompsa	usb_pause_mtx(mtx, USB_MS_TO_TICKS(USB_PORT_RESET_RECOVERY));
921184610Salfred#endif
922184610Salfred
923184610Salfreddone:
924214804Shselasky	DPRINTFN(2, "port %d warm reset returning error=%s\n",
925194228Sthompsa	    port, usbd_errstr(err));
926184610Salfred	return (err);
927184610Salfred}
928184610Salfred
929184610Salfred/*------------------------------------------------------------------------*
930194228Sthompsa *	usbd_req_get_desc
931184610Salfred *
932184610Salfred * This function can be used to retrieve USB descriptors. It contains
933184610Salfred * some additional logic like zeroing of missing descriptor bytes and
934184610Salfred * retrying an USB descriptor in case of failure. The "min_len"
935184610Salfred * argument specifies the minimum descriptor length. The "max_len"
936184610Salfred * argument specifies the maximum descriptor length. If the real
937184610Salfred * descriptor length is less than the minimum length the missing
938188985Sthompsa * byte(s) will be zeroed. The type field, the second byte of the USB
939188985Sthompsa * descriptor, will get forced to the correct type. If the "actlen"
940188985Sthompsa * pointer is non-NULL, the actual length of the transfer will get
941188985Sthompsa * stored in the 16-bit unsigned integer which it is pointing to. The
942188985Sthompsa * first byte of the descriptor will not get updated. If the "actlen"
943188985Sthompsa * pointer is NULL the first byte of the descriptor will get updated
944188985Sthompsa * to reflect the actual length instead. If "min_len" is not equal to
945188985Sthompsa * "max_len" then this function will try to retrive the beginning of
946188985Sthompsa * the descriptor and base the maximum length on the first byte of the
947188985Sthompsa * descriptor.
948184610Salfred *
949184610Salfred * Returns:
950184610Salfred *    0: Success
951184610Salfred * Else: Failure
952184610Salfred *------------------------------------------------------------------------*/
953193045Sthompsausb_error_t
954194228Sthompsausbd_req_get_desc(struct usb_device *udev,
955188985Sthompsa    struct mtx *mtx, uint16_t *actlen, void *desc,
956184610Salfred    uint16_t min_len, uint16_t max_len,
957184610Salfred    uint16_t id, uint8_t type, uint8_t index,
958184610Salfred    uint8_t retries)
959184610Salfred{
960192984Sthompsa	struct usb_device_request req;
961184610Salfred	uint8_t *buf;
962193045Sthompsa	usb_error_t err;
963184610Salfred
964184610Salfred	DPRINTFN(4, "id=%d, type=%d, index=%d, max_len=%d\n",
965184610Salfred	    id, type, index, max_len);
966184610Salfred
967184610Salfred	req.bmRequestType = UT_READ_DEVICE;
968184610Salfred	req.bRequest = UR_GET_DESCRIPTOR;
969184610Salfred	USETW2(req.wValue, type, index);
970184610Salfred	USETW(req.wIndex, id);
971184610Salfred
972184610Salfred	while (1) {
973184610Salfred
974184610Salfred		if ((min_len < 2) || (max_len < 2)) {
975184610Salfred			err = USB_ERR_INVAL;
976184610Salfred			goto done;
977184610Salfred		}
978184610Salfred		USETW(req.wLength, min_len);
979184610Salfred
980194228Sthompsa		err = usbd_do_request_flags(udev, mtx, &req,
981186730Salfred		    desc, 0, NULL, 1000);
982184610Salfred
983184610Salfred		if (err) {
984184610Salfred			if (!retries) {
985184610Salfred				goto done;
986184610Salfred			}
987184610Salfred			retries--;
988184610Salfred
989194228Sthompsa			usb_pause_mtx(mtx, hz / 5);
990184610Salfred
991184610Salfred			continue;
992184610Salfred		}
993184610Salfred		buf = desc;
994184610Salfred
995184610Salfred		if (min_len == max_len) {
996184610Salfred
997188985Sthompsa			/* enforce correct length */
998188985Sthompsa			if ((buf[0] > min_len) && (actlen == NULL))
999188985Sthompsa				buf[0] = min_len;
1000184610Salfred
1001188985Sthompsa			/* enforce correct type */
1002184610Salfred			buf[1] = type;
1003184610Salfred
1004184610Salfred			goto done;
1005184610Salfred		}
1006184610Salfred		/* range check */
1007184610Salfred
1008184610Salfred		if (max_len > buf[0]) {
1009184610Salfred			max_len = buf[0];
1010184610Salfred		}
1011184610Salfred		/* zero minimum data */
1012184610Salfred
1013184610Salfred		while (min_len > max_len) {
1014184610Salfred			min_len--;
1015184610Salfred			buf[min_len] = 0;
1016184610Salfred		}
1017184610Salfred
1018184610Salfred		/* set new minimum length */
1019184610Salfred
1020184610Salfred		min_len = max_len;
1021184610Salfred	}
1022184610Salfreddone:
1023188985Sthompsa	if (actlen != NULL) {
1024188985Sthompsa		if (err)
1025188985Sthompsa			*actlen = 0;
1026188985Sthompsa		else
1027188985Sthompsa			*actlen = min_len;
1028188985Sthompsa	}
1029184610Salfred	return (err);
1030184610Salfred}
1031184610Salfred
1032184610Salfred/*------------------------------------------------------------------------*
1033194228Sthompsa *	usbd_req_get_string_any
1034184610Salfred *
1035184610Salfred * This function will return the string given by "string_index"
1036184610Salfred * using the first language ID. The maximum length "len" includes
1037184610Salfred * the terminating zero. The "len" argument should be twice as
1038184610Salfred * big pluss 2 bytes, compared with the actual maximum string length !
1039184610Salfred *
1040184610Salfred * Returns:
1041184610Salfred *    0: Success
1042184610Salfred * Else: Failure
1043184610Salfred *------------------------------------------------------------------------*/
1044193045Sthompsausb_error_t
1045194228Sthompsausbd_req_get_string_any(struct usb_device *udev, struct mtx *mtx, char *buf,
1046184610Salfred    uint16_t len, uint8_t string_index)
1047184610Salfred{
1048184610Salfred	char *s;
1049184610Salfred	uint8_t *temp;
1050184610Salfred	uint16_t i;
1051184610Salfred	uint16_t n;
1052184610Salfred	uint16_t c;
1053184610Salfred	uint8_t swap;
1054193045Sthompsa	usb_error_t err;
1055184610Salfred
1056184610Salfred	if (len == 0) {
1057184610Salfred		/* should not happen */
1058184610Salfred		return (USB_ERR_NORMAL_COMPLETION);
1059184610Salfred	}
1060184610Salfred	if (string_index == 0) {
1061184610Salfred		/* this is the language table */
1062185087Salfred		buf[0] = 0;
1063184610Salfred		return (USB_ERR_INVAL);
1064184610Salfred	}
1065184610Salfred	if (udev->flags.no_strings) {
1066185087Salfred		buf[0] = 0;
1067184610Salfred		return (USB_ERR_STALLED);
1068184610Salfred	}
1069194228Sthompsa	err = usbd_req_get_string_desc
1070184610Salfred	    (udev, mtx, buf, len, udev->langid, string_index);
1071184610Salfred	if (err) {
1072185087Salfred		buf[0] = 0;
1073184610Salfred		return (err);
1074184610Salfred	}
1075184610Salfred	temp = (uint8_t *)buf;
1076184610Salfred
1077184610Salfred	if (temp[0] < 2) {
1078184610Salfred		/* string length is too short */
1079185087Salfred		buf[0] = 0;
1080184610Salfred		return (USB_ERR_INVAL);
1081184610Salfred	}
1082184610Salfred	/* reserve one byte for terminating zero */
1083184610Salfred	len--;
1084184610Salfred
1085184610Salfred	/* find maximum length */
1086184610Salfred	s = buf;
1087184610Salfred	n = (temp[0] / 2) - 1;
1088184610Salfred	if (n > len) {
1089184610Salfred		n = len;
1090184610Salfred	}
1091184610Salfred	/* skip descriptor header */
1092184610Salfred	temp += 2;
1093184610Salfred
1094184610Salfred	/* reset swap state */
1095184610Salfred	swap = 3;
1096184610Salfred
1097184610Salfred	/* convert and filter */
1098184610Salfred	for (i = 0; (i != n); i++) {
1099184610Salfred		c = UGETW(temp + (2 * i));
1100184610Salfred
1101184610Salfred		/* convert from Unicode, handle buggy strings */
1102184610Salfred		if (((c & 0xff00) == 0) && (swap & 1)) {
1103184610Salfred			/* Little Endian, default */
1104184610Salfred			*s = c;
1105184610Salfred			swap = 1;
1106184610Salfred		} else if (((c & 0x00ff) == 0) && (swap & 2)) {
1107184610Salfred			/* Big Endian */
1108184610Salfred			*s = c >> 8;
1109184610Salfred			swap = 2;
1110184610Salfred		} else {
1111185087Salfred			/* silently skip bad character */
1112185087Salfred			continue;
1113184610Salfred		}
1114184610Salfred
1115184610Salfred		/*
1116213433Shselasky		 * Filter by default - We only allow alphanumerical
1117213433Shselasky		 * and a few more to avoid any problems with scripts
1118213433Shselasky		 * and daemons.
1119184610Salfred		 */
1120213433Shselasky		if (isalpha(*s) ||
1121213433Shselasky		    isdigit(*s) ||
1122213433Shselasky		    *s == '-' ||
1123213433Shselasky		    *s == '+' ||
1124213433Shselasky		    *s == ' ' ||
1125213433Shselasky		    *s == '.' ||
1126213433Shselasky		    *s == ',') {
1127213433Shselasky			/* allowed */
1128213433Shselasky			s++;
1129184610Salfred		}
1130213433Shselasky		/* silently skip bad character */
1131184610Salfred	}
1132185087Salfred	*s = 0;				/* zero terminate resulting string */
1133184610Salfred	return (USB_ERR_NORMAL_COMPLETION);
1134184610Salfred}
1135184610Salfred
1136184610Salfred/*------------------------------------------------------------------------*
1137194228Sthompsa *	usbd_req_get_string_desc
1138184610Salfred *
1139184610Salfred * If you don't know the language ID, consider using
1140194228Sthompsa * "usbd_req_get_string_any()".
1141184610Salfred *
1142184610Salfred * Returns:
1143184610Salfred *    0: Success
1144184610Salfred * Else: Failure
1145184610Salfred *------------------------------------------------------------------------*/
1146193045Sthompsausb_error_t
1147194228Sthompsausbd_req_get_string_desc(struct usb_device *udev, struct mtx *mtx, void *sdesc,
1148184610Salfred    uint16_t max_len, uint16_t lang_id,
1149184610Salfred    uint8_t string_index)
1150184610Salfred{
1151194228Sthompsa	return (usbd_req_get_desc(udev, mtx, NULL, sdesc, 2, max_len, lang_id,
1152184610Salfred	    UDESC_STRING, string_index, 0));
1153184610Salfred}
1154184610Salfred
1155184610Salfred/*------------------------------------------------------------------------*
1156194228Sthompsa *	usbd_req_get_config_desc_ptr
1157190727Sthompsa *
1158190727Sthompsa * This function is used in device side mode to retrieve the pointer
1159190727Sthompsa * to the generated config descriptor. This saves allocating space for
1160190727Sthompsa * an additional config descriptor when setting the configuration.
1161190727Sthompsa *
1162190727Sthompsa * Returns:
1163190727Sthompsa *    0: Success
1164190727Sthompsa * Else: Failure
1165190727Sthompsa *------------------------------------------------------------------------*/
1166193045Sthompsausb_error_t
1167194228Sthompsausbd_req_get_descriptor_ptr(struct usb_device *udev,
1168192984Sthompsa    struct usb_config_descriptor **ppcd, uint16_t wValue)
1169190727Sthompsa{
1170192984Sthompsa	struct usb_device_request req;
1171193045Sthompsa	usb_handle_req_t *hr_func;
1172191402Sthompsa	const void *ptr;
1173190727Sthompsa	uint16_t len;
1174193045Sthompsa	usb_error_t err;
1175190727Sthompsa
1176190731Sthompsa	req.bmRequestType = UT_READ_DEVICE;
1177190727Sthompsa	req.bRequest = UR_GET_DESCRIPTOR;
1178191402Sthompsa	USETW(req.wValue, wValue);
1179190727Sthompsa	USETW(req.wIndex, 0);
1180190727Sthompsa	USETW(req.wLength, 0);
1181190727Sthompsa
1182191402Sthompsa	ptr = NULL;
1183191402Sthompsa	len = 0;
1184190727Sthompsa
1185194228Sthompsa	hr_func = usbd_get_hr_func(udev);
1186191402Sthompsa
1187191402Sthompsa	if (hr_func == NULL)
1188191402Sthompsa		err = USB_ERR_INVAL;
1189191402Sthompsa	else {
1190191402Sthompsa		USB_BUS_LOCK(udev->bus);
1191191402Sthompsa		err = (hr_func) (udev, &req, &ptr, &len);
1192191402Sthompsa		USB_BUS_UNLOCK(udev->bus);
1193191402Sthompsa	}
1194191402Sthompsa
1195191402Sthompsa	if (err)
1196191402Sthompsa		ptr = NULL;
1197191402Sthompsa	else if (ptr == NULL)
1198191402Sthompsa		err = USB_ERR_INVAL;
1199191402Sthompsa
1200192984Sthompsa	*ppcd = __DECONST(struct usb_config_descriptor *, ptr);
1201191402Sthompsa
1202191402Sthompsa	return (err);
1203190727Sthompsa}
1204190727Sthompsa
1205190727Sthompsa/*------------------------------------------------------------------------*
1206194228Sthompsa *	usbd_req_get_config_desc
1207184610Salfred *
1208184610Salfred * Returns:
1209184610Salfred *    0: Success
1210184610Salfred * Else: Failure
1211184610Salfred *------------------------------------------------------------------------*/
1212193045Sthompsausb_error_t
1213194228Sthompsausbd_req_get_config_desc(struct usb_device *udev, struct mtx *mtx,
1214192984Sthompsa    struct usb_config_descriptor *d, uint8_t conf_index)
1215184610Salfred{
1216193045Sthompsa	usb_error_t err;
1217184610Salfred
1218184610Salfred	DPRINTFN(4, "confidx=%d\n", conf_index);
1219184610Salfred
1220194228Sthompsa	err = usbd_req_get_desc(udev, mtx, NULL, d, sizeof(*d),
1221184610Salfred	    sizeof(*d), 0, UDESC_CONFIG, conf_index, 0);
1222184610Salfred	if (err) {
1223184610Salfred		goto done;
1224184610Salfred	}
1225184610Salfred	/* Extra sanity checking */
1226184610Salfred	if (UGETW(d->wTotalLength) < sizeof(*d)) {
1227184610Salfred		err = USB_ERR_INVAL;
1228184610Salfred	}
1229184610Salfreddone:
1230184610Salfred	return (err);
1231184610Salfred}
1232184610Salfred
1233184610Salfred/*------------------------------------------------------------------------*
1234194228Sthompsa *	usbd_req_get_config_desc_full
1235184610Salfred *
1236184610Salfred * This function gets the complete USB configuration descriptor and
1237184610Salfred * ensures that "wTotalLength" is correct.
1238184610Salfred *
1239184610Salfred * Returns:
1240184610Salfred *    0: Success
1241184610Salfred * Else: Failure
1242184610Salfred *------------------------------------------------------------------------*/
1243193045Sthompsausb_error_t
1244194228Sthompsausbd_req_get_config_desc_full(struct usb_device *udev, struct mtx *mtx,
1245192984Sthompsa    struct usb_config_descriptor **ppcd, struct malloc_type *mtype,
1246184610Salfred    uint8_t index)
1247184610Salfred{
1248192984Sthompsa	struct usb_config_descriptor cd;
1249192984Sthompsa	struct usb_config_descriptor *cdesc;
1250184610Salfred	uint16_t len;
1251193045Sthompsa	usb_error_t err;
1252184610Salfred
1253184610Salfred	DPRINTFN(4, "index=%d\n", index);
1254184610Salfred
1255184610Salfred	*ppcd = NULL;
1256184610Salfred
1257194228Sthompsa	err = usbd_req_get_config_desc(udev, mtx, &cd, index);
1258184610Salfred	if (err) {
1259184610Salfred		return (err);
1260184610Salfred	}
1261184610Salfred	/* get full descriptor */
1262184610Salfred	len = UGETW(cd.wTotalLength);
1263184610Salfred	if (len < sizeof(*cdesc)) {
1264184610Salfred		/* corrupt descriptor */
1265184610Salfred		return (USB_ERR_INVAL);
1266184610Salfred	}
1267184610Salfred	cdesc = malloc(len, mtype, M_WAITOK);
1268184610Salfred	if (cdesc == NULL) {
1269184610Salfred		return (USB_ERR_NOMEM);
1270184610Salfred	}
1271194228Sthompsa	err = usbd_req_get_desc(udev, mtx, NULL, cdesc, len, len, 0,
1272184610Salfred	    UDESC_CONFIG, index, 3);
1273184610Salfred	if (err) {
1274184610Salfred		free(cdesc, mtype);
1275184610Salfred		return (err);
1276184610Salfred	}
1277184610Salfred	/* make sure that the device is not fooling us: */
1278184610Salfred	USETW(cdesc->wTotalLength, len);
1279184610Salfred
1280184610Salfred	*ppcd = cdesc;
1281184610Salfred
1282184610Salfred	return (0);			/* success */
1283184610Salfred}
1284184610Salfred
1285184610Salfred/*------------------------------------------------------------------------*
1286194228Sthompsa *	usbd_req_get_device_desc
1287184610Salfred *
1288184610Salfred * Returns:
1289184610Salfred *    0: Success
1290184610Salfred * Else: Failure
1291184610Salfred *------------------------------------------------------------------------*/
1292193045Sthompsausb_error_t
1293194228Sthompsausbd_req_get_device_desc(struct usb_device *udev, struct mtx *mtx,
1294192984Sthompsa    struct usb_device_descriptor *d)
1295184610Salfred{
1296184610Salfred	DPRINTFN(4, "\n");
1297194228Sthompsa	return (usbd_req_get_desc(udev, mtx, NULL, d, sizeof(*d),
1298184610Salfred	    sizeof(*d), 0, UDESC_DEVICE, 0, 3));
1299184610Salfred}
1300184610Salfred
1301184610Salfred/*------------------------------------------------------------------------*
1302194228Sthompsa *	usbd_req_get_alt_interface_no
1303184610Salfred *
1304184610Salfred * Returns:
1305184610Salfred *    0: Success
1306184610Salfred * Else: Failure
1307184610Salfred *------------------------------------------------------------------------*/
1308193045Sthompsausb_error_t
1309194228Sthompsausbd_req_get_alt_interface_no(struct usb_device *udev, struct mtx *mtx,
1310184610Salfred    uint8_t *alt_iface_no, uint8_t iface_index)
1311184610Salfred{
1312194228Sthompsa	struct usb_interface *iface = usbd_get_iface(udev, iface_index);
1313192984Sthompsa	struct usb_device_request req;
1314184610Salfred
1315195963Salfred	if ((iface == NULL) || (iface->idesc == NULL))
1316184610Salfred		return (USB_ERR_INVAL);
1317195963Salfred
1318184610Salfred	req.bmRequestType = UT_READ_INTERFACE;
1319184610Salfred	req.bRequest = UR_GET_INTERFACE;
1320184610Salfred	USETW(req.wValue, 0);
1321184610Salfred	req.wIndex[0] = iface->idesc->bInterfaceNumber;
1322184610Salfred	req.wIndex[1] = 0;
1323184610Salfred	USETW(req.wLength, 1);
1324194228Sthompsa	return (usbd_do_request(udev, mtx, &req, alt_iface_no));
1325184610Salfred}
1326184610Salfred
1327184610Salfred/*------------------------------------------------------------------------*
1328194228Sthompsa *	usbd_req_set_alt_interface_no
1329184610Salfred *
1330184610Salfred * Returns:
1331184610Salfred *    0: Success
1332184610Salfred * Else: Failure
1333184610Salfred *------------------------------------------------------------------------*/
1334193045Sthompsausb_error_t
1335194228Sthompsausbd_req_set_alt_interface_no(struct usb_device *udev, struct mtx *mtx,
1336184610Salfred    uint8_t iface_index, uint8_t alt_no)
1337184610Salfred{
1338194228Sthompsa	struct usb_interface *iface = usbd_get_iface(udev, iface_index);
1339192984Sthompsa	struct usb_device_request req;
1340184610Salfred
1341195963Salfred	if ((iface == NULL) || (iface->idesc == NULL))
1342184610Salfred		return (USB_ERR_INVAL);
1343195963Salfred
1344184610Salfred	req.bmRequestType = UT_WRITE_INTERFACE;
1345184610Salfred	req.bRequest = UR_SET_INTERFACE;
1346184610Salfred	req.wValue[0] = alt_no;
1347184610Salfred	req.wValue[1] = 0;
1348184610Salfred	req.wIndex[0] = iface->idesc->bInterfaceNumber;
1349184610Salfred	req.wIndex[1] = 0;
1350184610Salfred	USETW(req.wLength, 0);
1351194228Sthompsa	return (usbd_do_request(udev, mtx, &req, 0));
1352184610Salfred}
1353184610Salfred
1354184610Salfred/*------------------------------------------------------------------------*
1355194228Sthompsa *	usbd_req_get_device_status
1356184610Salfred *
1357184610Salfred * Returns:
1358184610Salfred *    0: Success
1359184610Salfred * Else: Failure
1360184610Salfred *------------------------------------------------------------------------*/
1361193045Sthompsausb_error_t
1362194228Sthompsausbd_req_get_device_status(struct usb_device *udev, struct mtx *mtx,
1363192984Sthompsa    struct usb_status *st)
1364184610Salfred{
1365192984Sthompsa	struct usb_device_request req;
1366184610Salfred
1367184610Salfred	req.bmRequestType = UT_READ_DEVICE;
1368184610Salfred	req.bRequest = UR_GET_STATUS;
1369184610Salfred	USETW(req.wValue, 0);
1370184610Salfred	USETW(req.wIndex, 0);
1371184610Salfred	USETW(req.wLength, sizeof(*st));
1372194228Sthompsa	return (usbd_do_request(udev, mtx, &req, st));
1373184610Salfred}
1374184610Salfred
1375184610Salfred/*------------------------------------------------------------------------*
1376194228Sthompsa *	usbd_req_get_hub_descriptor
1377184610Salfred *
1378184610Salfred * Returns:
1379184610Salfred *    0: Success
1380184610Salfred * Else: Failure
1381184610Salfred *------------------------------------------------------------------------*/
1382193045Sthompsausb_error_t
1383194228Sthompsausbd_req_get_hub_descriptor(struct usb_device *udev, struct mtx *mtx,
1384192984Sthompsa    struct usb_hub_descriptor *hd, uint8_t nports)
1385184610Salfred{
1386192984Sthompsa	struct usb_device_request req;
1387184610Salfred	uint16_t len = (nports + 7 + (8 * 8)) / 8;
1388184610Salfred
1389184610Salfred	req.bmRequestType = UT_READ_CLASS_DEVICE;
1390184610Salfred	req.bRequest = UR_GET_DESCRIPTOR;
1391184610Salfred	USETW2(req.wValue, UDESC_HUB, 0);
1392184610Salfred	USETW(req.wIndex, 0);
1393184610Salfred	USETW(req.wLength, len);
1394194228Sthompsa	return (usbd_do_request(udev, mtx, &req, hd));
1395184610Salfred}
1396184610Salfred
1397184610Salfred/*------------------------------------------------------------------------*
1398213435Shselasky *	usbd_req_get_ss_hub_descriptor
1399213435Shselasky *
1400213435Shselasky * Returns:
1401213435Shselasky *    0: Success
1402213435Shselasky * Else: Failure
1403213435Shselasky *------------------------------------------------------------------------*/
1404213435Shselaskyusb_error_t
1405213435Shselaskyusbd_req_get_ss_hub_descriptor(struct usb_device *udev, struct mtx *mtx,
1406213435Shselasky    struct usb_hub_ss_descriptor *hd, uint8_t nports)
1407213435Shselasky{
1408213435Shselasky	struct usb_device_request req;
1409213435Shselasky	uint16_t len = sizeof(*hd) - 32 + 1 + ((nports + 7) / 8);
1410213435Shselasky
1411213435Shselasky	req.bmRequestType = UT_READ_CLASS_DEVICE;
1412213435Shselasky	req.bRequest = UR_GET_DESCRIPTOR;
1413213435Shselasky	USETW2(req.wValue, UDESC_SS_HUB, 0);
1414213435Shselasky	USETW(req.wIndex, 0);
1415213435Shselasky	USETW(req.wLength, len);
1416213435Shselasky	return (usbd_do_request(udev, mtx, &req, hd));
1417213435Shselasky}
1418213435Shselasky
1419213435Shselasky/*------------------------------------------------------------------------*
1420194228Sthompsa *	usbd_req_get_hub_status
1421184610Salfred *
1422184610Salfred * Returns:
1423184610Salfred *    0: Success
1424184610Salfred * Else: Failure
1425184610Salfred *------------------------------------------------------------------------*/
1426193045Sthompsausb_error_t
1427194228Sthompsausbd_req_get_hub_status(struct usb_device *udev, struct mtx *mtx,
1428192984Sthompsa    struct usb_hub_status *st)
1429184610Salfred{
1430192984Sthompsa	struct usb_device_request req;
1431184610Salfred
1432184610Salfred	req.bmRequestType = UT_READ_CLASS_DEVICE;
1433184610Salfred	req.bRequest = UR_GET_STATUS;
1434184610Salfred	USETW(req.wValue, 0);
1435184610Salfred	USETW(req.wIndex, 0);
1436192984Sthompsa	USETW(req.wLength, sizeof(struct usb_hub_status));
1437194228Sthompsa	return (usbd_do_request(udev, mtx, &req, st));
1438184610Salfred}
1439184610Salfred
1440184610Salfred/*------------------------------------------------------------------------*
1441194228Sthompsa *	usbd_req_set_address
1442184610Salfred *
1443184610Salfred * This function is used to set the address for an USB device. After
1444184610Salfred * port reset the USB device will respond at address zero.
1445184610Salfred *
1446184610Salfred * Returns:
1447184610Salfred *    0: Success
1448184610Salfred * Else: Failure
1449184610Salfred *------------------------------------------------------------------------*/
1450193045Sthompsausb_error_t
1451194228Sthompsausbd_req_set_address(struct usb_device *udev, struct mtx *mtx, uint16_t addr)
1452184610Salfred{
1453192984Sthompsa	struct usb_device_request req;
1454213435Shselasky	usb_error_t err;
1455184610Salfred
1456184610Salfred	DPRINTFN(6, "setting device address=%d\n", addr);
1457184610Salfred
1458184610Salfred	req.bmRequestType = UT_WRITE_DEVICE;
1459184610Salfred	req.bRequest = UR_SET_ADDRESS;
1460184610Salfred	USETW(req.wValue, addr);
1461184610Salfred	USETW(req.wIndex, 0);
1462184610Salfred	USETW(req.wLength, 0);
1463184610Salfred
1464213435Shselasky	err = USB_ERR_INVAL;
1465213435Shselasky
1466213435Shselasky	/* check if USB controller handles set address */
1467213435Shselasky	if (udev->bus->methods->set_address != NULL)
1468213435Shselasky		err = (udev->bus->methods->set_address) (udev, mtx, addr);
1469213435Shselasky
1470213435Shselasky	if (err != USB_ERR_INVAL)
1471213435Shselasky		goto done;
1472213435Shselasky
1473184610Salfred	/* Setting the address should not take more than 1 second ! */
1474213435Shselasky	err = usbd_do_request_flags(udev, mtx, &req, NULL,
1475213435Shselasky	    USB_DELAY_STATUS_STAGE, NULL, 1000);
1476213435Shselasky
1477213435Shselaskydone:
1478213435Shselasky	/* allow device time to set new address */
1479213435Shselasky	usb_pause_mtx(mtx,
1480213435Shselasky	    USB_MS_TO_TICKS(USB_SET_ADDRESS_SETTLE));
1481213435Shselasky
1482213435Shselasky	return (err);
1483184610Salfred}
1484184610Salfred
1485184610Salfred/*------------------------------------------------------------------------*
1486194228Sthompsa *	usbd_req_get_port_status
1487184610Salfred *
1488184610Salfred * Returns:
1489184610Salfred *    0: Success
1490184610Salfred * Else: Failure
1491184610Salfred *------------------------------------------------------------------------*/
1492193045Sthompsausb_error_t
1493194228Sthompsausbd_req_get_port_status(struct usb_device *udev, struct mtx *mtx,
1494192984Sthompsa    struct usb_port_status *ps, uint8_t port)
1495184610Salfred{
1496192984Sthompsa	struct usb_device_request req;
1497184610Salfred
1498184610Salfred	req.bmRequestType = UT_READ_CLASS_OTHER;
1499184610Salfred	req.bRequest = UR_GET_STATUS;
1500184610Salfred	USETW(req.wValue, 0);
1501184610Salfred	req.wIndex[0] = port;
1502184610Salfred	req.wIndex[1] = 0;
1503184610Salfred	USETW(req.wLength, sizeof *ps);
1504194228Sthompsa	return (usbd_do_request(udev, mtx, &req, ps));
1505184610Salfred}
1506184610Salfred
1507184610Salfred/*------------------------------------------------------------------------*
1508194228Sthompsa *	usbd_req_clear_hub_feature
1509184610Salfred *
1510184610Salfred * Returns:
1511184610Salfred *    0: Success
1512184610Salfred * Else: Failure
1513184610Salfred *------------------------------------------------------------------------*/
1514193045Sthompsausb_error_t
1515194228Sthompsausbd_req_clear_hub_feature(struct usb_device *udev, struct mtx *mtx,
1516184610Salfred    uint16_t sel)
1517184610Salfred{
1518192984Sthompsa	struct usb_device_request req;
1519184610Salfred
1520184610Salfred	req.bmRequestType = UT_WRITE_CLASS_DEVICE;
1521184610Salfred	req.bRequest = UR_CLEAR_FEATURE;
1522184610Salfred	USETW(req.wValue, sel);
1523184610Salfred	USETW(req.wIndex, 0);
1524184610Salfred	USETW(req.wLength, 0);
1525194228Sthompsa	return (usbd_do_request(udev, mtx, &req, 0));
1526184610Salfred}
1527184610Salfred
1528184610Salfred/*------------------------------------------------------------------------*
1529194228Sthompsa *	usbd_req_set_hub_feature
1530184610Salfred *
1531184610Salfred * Returns:
1532184610Salfred *    0: Success
1533184610Salfred * Else: Failure
1534184610Salfred *------------------------------------------------------------------------*/
1535193045Sthompsausb_error_t
1536194228Sthompsausbd_req_set_hub_feature(struct usb_device *udev, struct mtx *mtx,
1537184610Salfred    uint16_t sel)
1538184610Salfred{
1539192984Sthompsa	struct usb_device_request req;
1540184610Salfred
1541184610Salfred	req.bmRequestType = UT_WRITE_CLASS_DEVICE;
1542184610Salfred	req.bRequest = UR_SET_FEATURE;
1543184610Salfred	USETW(req.wValue, sel);
1544184610Salfred	USETW(req.wIndex, 0);
1545184610Salfred	USETW(req.wLength, 0);
1546194228Sthompsa	return (usbd_do_request(udev, mtx, &req, 0));
1547184610Salfred}
1548184610Salfred
1549184610Salfred/*------------------------------------------------------------------------*
1550213435Shselasky *	usbd_req_set_hub_u1_timeout
1551213435Shselasky *
1552213435Shselasky * Returns:
1553213435Shselasky *    0: Success
1554213435Shselasky * Else: Failure
1555213435Shselasky *------------------------------------------------------------------------*/
1556213435Shselaskyusb_error_t
1557213435Shselaskyusbd_req_set_hub_u1_timeout(struct usb_device *udev, struct mtx *mtx,
1558213435Shselasky    uint8_t port, uint8_t timeout)
1559213435Shselasky{
1560213435Shselasky	struct usb_device_request req;
1561213435Shselasky
1562213435Shselasky	req.bmRequestType = UT_WRITE_CLASS_OTHER;
1563213435Shselasky	req.bRequest = UR_SET_FEATURE;
1564213435Shselasky	USETW(req.wValue, UHF_PORT_U1_TIMEOUT);
1565213435Shselasky	req.wIndex[0] = port;
1566213435Shselasky	req.wIndex[1] = timeout;
1567213435Shselasky	USETW(req.wLength, 0);
1568213435Shselasky	return (usbd_do_request(udev, mtx, &req, 0));
1569213435Shselasky}
1570213435Shselasky
1571213435Shselasky/*------------------------------------------------------------------------*
1572213435Shselasky *	usbd_req_set_hub_u2_timeout
1573213435Shselasky *
1574213435Shselasky * Returns:
1575213435Shselasky *    0: Success
1576213435Shselasky * Else: Failure
1577213435Shselasky *------------------------------------------------------------------------*/
1578213435Shselaskyusb_error_t
1579213435Shselaskyusbd_req_set_hub_u2_timeout(struct usb_device *udev, struct mtx *mtx,
1580213435Shselasky    uint8_t port, uint8_t timeout)
1581213435Shselasky{
1582213435Shselasky	struct usb_device_request req;
1583213435Shselasky
1584213435Shselasky	req.bmRequestType = UT_WRITE_CLASS_OTHER;
1585213435Shselasky	req.bRequest = UR_SET_FEATURE;
1586213435Shselasky	USETW(req.wValue, UHF_PORT_U2_TIMEOUT);
1587213435Shselasky	req.wIndex[0] = port;
1588213435Shselasky	req.wIndex[1] = timeout;
1589213435Shselasky	USETW(req.wLength, 0);
1590213435Shselasky	return (usbd_do_request(udev, mtx, &req, 0));
1591213435Shselasky}
1592213435Shselasky
1593213435Shselasky/*------------------------------------------------------------------------*
1594213435Shselasky *	usbd_req_set_hub_depth
1595213435Shselasky *
1596213435Shselasky * Returns:
1597213435Shselasky *    0: Success
1598213435Shselasky * Else: Failure
1599213435Shselasky *------------------------------------------------------------------------*/
1600213435Shselaskyusb_error_t
1601213435Shselaskyusbd_req_set_hub_depth(struct usb_device *udev, struct mtx *mtx,
1602213435Shselasky    uint16_t depth)
1603213435Shselasky{
1604213435Shselasky	struct usb_device_request req;
1605213435Shselasky
1606213435Shselasky	req.bmRequestType = UT_WRITE_CLASS_DEVICE;
1607213435Shselasky	req.bRequest = UR_SET_HUB_DEPTH;
1608213435Shselasky	USETW(req.wValue, depth);
1609213435Shselasky	USETW(req.wIndex, 0);
1610213435Shselasky	USETW(req.wLength, 0);
1611213435Shselasky	return (usbd_do_request(udev, mtx, &req, 0));
1612213435Shselasky}
1613213435Shselasky
1614213435Shselasky/*------------------------------------------------------------------------*
1615194228Sthompsa *	usbd_req_clear_port_feature
1616184610Salfred *
1617184610Salfred * Returns:
1618184610Salfred *    0: Success
1619184610Salfred * Else: Failure
1620184610Salfred *------------------------------------------------------------------------*/
1621193045Sthompsausb_error_t
1622194228Sthompsausbd_req_clear_port_feature(struct usb_device *udev, struct mtx *mtx,
1623184610Salfred    uint8_t port, uint16_t sel)
1624184610Salfred{
1625192984Sthompsa	struct usb_device_request req;
1626184610Salfred
1627184610Salfred	req.bmRequestType = UT_WRITE_CLASS_OTHER;
1628184610Salfred	req.bRequest = UR_CLEAR_FEATURE;
1629184610Salfred	USETW(req.wValue, sel);
1630184610Salfred	req.wIndex[0] = port;
1631184610Salfred	req.wIndex[1] = 0;
1632184610Salfred	USETW(req.wLength, 0);
1633194228Sthompsa	return (usbd_do_request(udev, mtx, &req, 0));
1634184610Salfred}
1635184610Salfred
1636184610Salfred/*------------------------------------------------------------------------*
1637194228Sthompsa *	usbd_req_set_port_feature
1638184610Salfred *
1639184610Salfred * Returns:
1640184610Salfred *    0: Success
1641184610Salfred * Else: Failure
1642184610Salfred *------------------------------------------------------------------------*/
1643193045Sthompsausb_error_t
1644194228Sthompsausbd_req_set_port_feature(struct usb_device *udev, struct mtx *mtx,
1645184610Salfred    uint8_t port, uint16_t sel)
1646184610Salfred{
1647192984Sthompsa	struct usb_device_request req;
1648184610Salfred
1649184610Salfred	req.bmRequestType = UT_WRITE_CLASS_OTHER;
1650184610Salfred	req.bRequest = UR_SET_FEATURE;
1651184610Salfred	USETW(req.wValue, sel);
1652184610Salfred	req.wIndex[0] = port;
1653184610Salfred	req.wIndex[1] = 0;
1654184610Salfred	USETW(req.wLength, 0);
1655194228Sthompsa	return (usbd_do_request(udev, mtx, &req, 0));
1656184610Salfred}
1657184610Salfred
1658184610Salfred/*------------------------------------------------------------------------*
1659194228Sthompsa *	usbd_req_set_protocol
1660184610Salfred *
1661184610Salfred * Returns:
1662184610Salfred *    0: Success
1663184610Salfred * Else: Failure
1664184610Salfred *------------------------------------------------------------------------*/
1665193045Sthompsausb_error_t
1666194228Sthompsausbd_req_set_protocol(struct usb_device *udev, struct mtx *mtx,
1667184610Salfred    uint8_t iface_index, uint16_t report)
1668184610Salfred{
1669194228Sthompsa	struct usb_interface *iface = usbd_get_iface(udev, iface_index);
1670192984Sthompsa	struct usb_device_request req;
1671184610Salfred
1672184610Salfred	if ((iface == NULL) || (iface->idesc == NULL)) {
1673184610Salfred		return (USB_ERR_INVAL);
1674184610Salfred	}
1675184610Salfred	DPRINTFN(5, "iface=%p, report=%d, endpt=%d\n",
1676184610Salfred	    iface, report, iface->idesc->bInterfaceNumber);
1677184610Salfred
1678184610Salfred	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
1679184610Salfred	req.bRequest = UR_SET_PROTOCOL;
1680184610Salfred	USETW(req.wValue, report);
1681184610Salfred	req.wIndex[0] = iface->idesc->bInterfaceNumber;
1682184610Salfred	req.wIndex[1] = 0;
1683184610Salfred	USETW(req.wLength, 0);
1684194228Sthompsa	return (usbd_do_request(udev, mtx, &req, 0));
1685184610Salfred}
1686184610Salfred
1687184610Salfred/*------------------------------------------------------------------------*
1688194228Sthompsa *	usbd_req_set_report
1689184610Salfred *
1690184610Salfred * Returns:
1691184610Salfred *    0: Success
1692184610Salfred * Else: Failure
1693184610Salfred *------------------------------------------------------------------------*/
1694193045Sthompsausb_error_t
1695194228Sthompsausbd_req_set_report(struct usb_device *udev, struct mtx *mtx, void *data, uint16_t len,
1696184610Salfred    uint8_t iface_index, uint8_t type, uint8_t id)
1697184610Salfred{
1698194228Sthompsa	struct usb_interface *iface = usbd_get_iface(udev, iface_index);
1699192984Sthompsa	struct usb_device_request req;
1700184610Salfred
1701184610Salfred	if ((iface == NULL) || (iface->idesc == NULL)) {
1702184610Salfred		return (USB_ERR_INVAL);
1703184610Salfred	}
1704184610Salfred	DPRINTFN(5, "len=%d\n", len);
1705184610Salfred
1706184610Salfred	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
1707184610Salfred	req.bRequest = UR_SET_REPORT;
1708184610Salfred	USETW2(req.wValue, type, id);
1709184610Salfred	req.wIndex[0] = iface->idesc->bInterfaceNumber;
1710184610Salfred	req.wIndex[1] = 0;
1711184610Salfred	USETW(req.wLength, len);
1712194228Sthompsa	return (usbd_do_request(udev, mtx, &req, data));
1713184610Salfred}
1714184610Salfred
1715184610Salfred/*------------------------------------------------------------------------*
1716194228Sthompsa *	usbd_req_get_report
1717184610Salfred *
1718184610Salfred * Returns:
1719184610Salfred *    0: Success
1720184610Salfred * Else: Failure
1721184610Salfred *------------------------------------------------------------------------*/
1722193045Sthompsausb_error_t
1723194228Sthompsausbd_req_get_report(struct usb_device *udev, struct mtx *mtx, void *data,
1724184610Salfred    uint16_t len, uint8_t iface_index, uint8_t type, uint8_t id)
1725184610Salfred{
1726194228Sthompsa	struct usb_interface *iface = usbd_get_iface(udev, iface_index);
1727192984Sthompsa	struct usb_device_request req;
1728184610Salfred
1729184610Salfred	if ((iface == NULL) || (iface->idesc == NULL) || (id == 0)) {
1730184610Salfred		return (USB_ERR_INVAL);
1731184610Salfred	}
1732184610Salfred	DPRINTFN(5, "len=%d\n", len);
1733184610Salfred
1734184610Salfred	req.bmRequestType = UT_READ_CLASS_INTERFACE;
1735184610Salfred	req.bRequest = UR_GET_REPORT;
1736184610Salfred	USETW2(req.wValue, type, id);
1737184610Salfred	req.wIndex[0] = iface->idesc->bInterfaceNumber;
1738184610Salfred	req.wIndex[1] = 0;
1739184610Salfred	USETW(req.wLength, len);
1740194228Sthompsa	return (usbd_do_request(udev, mtx, &req, data));
1741184610Salfred}
1742184610Salfred
1743184610Salfred/*------------------------------------------------------------------------*
1744194228Sthompsa *	usbd_req_set_idle
1745184610Salfred *
1746184610Salfred * Returns:
1747184610Salfred *    0: Success
1748184610Salfred * Else: Failure
1749184610Salfred *------------------------------------------------------------------------*/
1750193045Sthompsausb_error_t
1751194228Sthompsausbd_req_set_idle(struct usb_device *udev, struct mtx *mtx,
1752184610Salfred    uint8_t iface_index, uint8_t duration, uint8_t id)
1753184610Salfred{
1754194228Sthompsa	struct usb_interface *iface = usbd_get_iface(udev, iface_index);
1755192984Sthompsa	struct usb_device_request req;
1756184610Salfred
1757184610Salfred	if ((iface == NULL) || (iface->idesc == NULL)) {
1758184610Salfred		return (USB_ERR_INVAL);
1759184610Salfred	}
1760184610Salfred	DPRINTFN(5, "%d %d\n", duration, id);
1761184610Salfred
1762184610Salfred	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
1763184610Salfred	req.bRequest = UR_SET_IDLE;
1764184610Salfred	USETW2(req.wValue, duration, id);
1765184610Salfred	req.wIndex[0] = iface->idesc->bInterfaceNumber;
1766184610Salfred	req.wIndex[1] = 0;
1767184610Salfred	USETW(req.wLength, 0);
1768194228Sthompsa	return (usbd_do_request(udev, mtx, &req, 0));
1769184610Salfred}
1770184610Salfred
1771184610Salfred/*------------------------------------------------------------------------*
1772194228Sthompsa *	usbd_req_get_report_descriptor
1773184610Salfred *
1774184610Salfred * Returns:
1775184610Salfred *    0: Success
1776184610Salfred * Else: Failure
1777184610Salfred *------------------------------------------------------------------------*/
1778193045Sthompsausb_error_t
1779194228Sthompsausbd_req_get_report_descriptor(struct usb_device *udev, struct mtx *mtx,
1780184610Salfred    void *d, uint16_t size, uint8_t iface_index)
1781184610Salfred{
1782194228Sthompsa	struct usb_interface *iface = usbd_get_iface(udev, iface_index);
1783192984Sthompsa	struct usb_device_request req;
1784184610Salfred
1785184610Salfred	if ((iface == NULL) || (iface->idesc == NULL)) {
1786184610Salfred		return (USB_ERR_INVAL);
1787184610Salfred	}
1788184610Salfred	req.bmRequestType = UT_READ_INTERFACE;
1789184610Salfred	req.bRequest = UR_GET_DESCRIPTOR;
1790184610Salfred	USETW2(req.wValue, UDESC_REPORT, 0);	/* report id should be 0 */
1791184610Salfred	req.wIndex[0] = iface->idesc->bInterfaceNumber;
1792184610Salfred	req.wIndex[1] = 0;
1793184610Salfred	USETW(req.wLength, size);
1794194228Sthompsa	return (usbd_do_request(udev, mtx, &req, d));
1795184610Salfred}
1796184610Salfred
1797184610Salfred/*------------------------------------------------------------------------*
1798194228Sthompsa *	usbd_req_set_config
1799184610Salfred *
1800184610Salfred * This function is used to select the current configuration number in
1801184610Salfred * both USB device side mode and USB host side mode. When setting the
1802184610Salfred * configuration the function of the interfaces can change.
1803184610Salfred *
1804184610Salfred * Returns:
1805184610Salfred *    0: Success
1806184610Salfred * Else: Failure
1807184610Salfred *------------------------------------------------------------------------*/
1808193045Sthompsausb_error_t
1809194228Sthompsausbd_req_set_config(struct usb_device *udev, struct mtx *mtx, uint8_t conf)
1810184610Salfred{
1811192984Sthompsa	struct usb_device_request req;
1812184610Salfred
1813184610Salfred	DPRINTF("setting config %d\n", conf);
1814184610Salfred
1815184610Salfred	/* do "set configuration" request */
1816184610Salfred
1817184610Salfred	req.bmRequestType = UT_WRITE_DEVICE;
1818184610Salfred	req.bRequest = UR_SET_CONFIG;
1819184610Salfred	req.wValue[0] = conf;
1820184610Salfred	req.wValue[1] = 0;
1821184610Salfred	USETW(req.wIndex, 0);
1822184610Salfred	USETW(req.wLength, 0);
1823194228Sthompsa	return (usbd_do_request(udev, mtx, &req, 0));
1824184610Salfred}
1825184610Salfred
1826184610Salfred/*------------------------------------------------------------------------*
1827194228Sthompsa *	usbd_req_get_config
1828184610Salfred *
1829184610Salfred * Returns:
1830184610Salfred *    0: Success
1831184610Salfred * Else: Failure
1832184610Salfred *------------------------------------------------------------------------*/
1833193045Sthompsausb_error_t
1834194228Sthompsausbd_req_get_config(struct usb_device *udev, struct mtx *mtx, uint8_t *pconf)
1835184610Salfred{
1836192984Sthompsa	struct usb_device_request req;
1837184610Salfred
1838184610Salfred	req.bmRequestType = UT_READ_DEVICE;
1839184610Salfred	req.bRequest = UR_GET_CONFIG;
1840184610Salfred	USETW(req.wValue, 0);
1841184610Salfred	USETW(req.wIndex, 0);
1842184610Salfred	USETW(req.wLength, 1);
1843194228Sthompsa	return (usbd_do_request(udev, mtx, &req, pconf));
1844184610Salfred}
1845184610Salfred
1846184610Salfred/*------------------------------------------------------------------------*
1847213435Shselasky *	usbd_setup_device_desc
1848213435Shselasky *------------------------------------------------------------------------*/
1849213435Shselaskyusb_error_t
1850213435Shselaskyusbd_setup_device_desc(struct usb_device *udev, struct mtx *mtx)
1851213435Shselasky{
1852213435Shselasky	usb_error_t err;
1853213435Shselasky
1854213435Shselasky	/*
1855213435Shselasky	 * Get the first 8 bytes of the device descriptor !
1856213435Shselasky	 *
1857213435Shselasky	 * NOTE: "usbd_do_request()" will check the device descriptor
1858213435Shselasky	 * next time we do a request to see if the maximum packet size
1859213435Shselasky	 * changed! The 8 first bytes of the device descriptor
1860213435Shselasky	 * contains the maximum packet size to use on control endpoint
1861213435Shselasky	 * 0. If this value is different from "USB_MAX_IPACKET" a new
1862213435Shselasky	 * USB control request will be setup!
1863213435Shselasky	 */
1864213435Shselasky	switch (udev->speed) {
1865213435Shselasky	case USB_SPEED_FULL:
1866213435Shselasky	case USB_SPEED_LOW:
1867213435Shselasky		err = usbd_req_get_desc(udev, mtx, NULL, &udev->ddesc,
1868213435Shselasky		    USB_MAX_IPACKET, USB_MAX_IPACKET, 0, UDESC_DEVICE, 0, 0);
1869213435Shselasky		if (err != 0) {
1870213435Shselasky			DPRINTFN(0, "getting device descriptor "
1871213435Shselasky			    "at addr %d failed, %s\n", udev->address,
1872213435Shselasky			    usbd_errstr(err));
1873213435Shselasky			return (err);
1874213435Shselasky		}
1875213435Shselasky		break;
1876213435Shselasky	default:
1877213435Shselasky		DPRINTF("Minimum MaxPacketSize is large enough "
1878213435Shselasky		    "to hold the complete device descriptor\n");
1879213435Shselasky		break;
1880213435Shselasky	}
1881213435Shselasky
1882213435Shselasky	/* get the full device descriptor */
1883213435Shselasky	err = usbd_req_get_device_desc(udev, mtx, &udev->ddesc);
1884213435Shselasky
1885213435Shselasky	/* try one more time, if error */
1886213435Shselasky	if (err)
1887213435Shselasky		err = usbd_req_get_device_desc(udev, mtx, &udev->ddesc);
1888213435Shselasky
1889213435Shselasky	if (err) {
1890213435Shselasky		DPRINTF("addr=%d, getting full desc failed\n",
1891213435Shselasky		    udev->address);
1892213435Shselasky		return (err);
1893213435Shselasky	}
1894213435Shselasky
1895213435Shselasky	DPRINTF("adding unit addr=%d, rev=%02x, class=%d, "
1896213435Shselasky	    "subclass=%d, protocol=%d, maxpacket=%d, len=%d, speed=%d\n",
1897213435Shselasky	    udev->address, UGETW(udev->ddesc.bcdUSB),
1898213435Shselasky	    udev->ddesc.bDeviceClass,
1899213435Shselasky	    udev->ddesc.bDeviceSubClass,
1900213435Shselasky	    udev->ddesc.bDeviceProtocol,
1901213435Shselasky	    udev->ddesc.bMaxPacketSize,
1902213435Shselasky	    udev->ddesc.bLength,
1903213435Shselasky	    udev->speed);
1904213435Shselasky
1905213435Shselasky	return (err);
1906213435Shselasky}
1907213435Shselasky
1908213435Shselasky/*------------------------------------------------------------------------*
1909194228Sthompsa *	usbd_req_re_enumerate
1910184610Salfred *
1911185087Salfred * NOTE: After this function returns the hardware is in the
1912185087Salfred * unconfigured state! The application is responsible for setting a
1913185087Salfred * new configuration.
1914185087Salfred *
1915184610Salfred * Returns:
1916184610Salfred *    0: Success
1917184610Salfred * Else: Failure
1918184610Salfred *------------------------------------------------------------------------*/
1919193045Sthompsausb_error_t
1920194228Sthompsausbd_req_re_enumerate(struct usb_device *udev, struct mtx *mtx)
1921184610Salfred{
1922192984Sthompsa	struct usb_device *parent_hub;
1923193045Sthompsa	usb_error_t err;
1924184610Salfred	uint8_t old_addr;
1925186730Salfred	uint8_t do_retry = 1;
1926184610Salfred
1927192499Sthompsa	if (udev->flags.usb_mode != USB_MODE_HOST) {
1928185290Salfred		return (USB_ERR_INVAL);
1929185290Salfred	}
1930184610Salfred	old_addr = udev->address;
1931184610Salfred	parent_hub = udev->parent_hub;
1932184610Salfred	if (parent_hub == NULL) {
1933185290Salfred		return (USB_ERR_INVAL);
1934184610Salfred	}
1935186730Salfredretry:
1936194228Sthompsa	err = usbd_req_reset_port(parent_hub, mtx, udev->port_no);
1937184610Salfred	if (err) {
1938190739Sthompsa		DPRINTFN(0, "addr=%d, port reset failed, %s\n",
1939194228Sthompsa		    old_addr, usbd_errstr(err));
1940184610Salfred		goto done;
1941184610Salfred	}
1942213435Shselasky
1943184610Salfred	/*
1944184610Salfred	 * After that the port has been reset our device should be at
1945184610Salfred	 * address zero:
1946184610Salfred	 */
1947184610Salfred	udev->address = USB_START_ADDR;
1948184610Salfred
1949185290Salfred	/* reset "bMaxPacketSize" */
1950185290Salfred	udev->ddesc.bMaxPacketSize = USB_MAX_IPACKET;
1951185290Salfred
1952213435Shselasky	/* reset USB state */
1953213435Shselasky	usb_set_device_state(udev, USB_STATE_POWERED);
1954213435Shselasky
1955184610Salfred	/*
1956184610Salfred	 * Restore device address:
1957184610Salfred	 */
1958194228Sthompsa	err = usbd_req_set_address(udev, mtx, old_addr);
1959184610Salfred	if (err) {
1960184610Salfred		/* XXX ignore any errors! */
1961190739Sthompsa		DPRINTFN(0, "addr=%d, set address failed! (%s, ignored)\n",
1962194228Sthompsa		    old_addr, usbd_errstr(err));
1963184610Salfred	}
1964213435Shselasky	/*
1965213435Shselasky	 * Restore device address, if the controller driver did not
1966213435Shselasky	 * set a new one:
1967213435Shselasky	 */
1968213435Shselasky	if (udev->address == USB_START_ADDR)
1969213435Shselasky		udev->address = old_addr;
1970184610Salfred
1971213435Shselasky	/* setup the device descriptor and the initial "wMaxPacketSize" */
1972213435Shselasky	err = usbd_setup_device_desc(udev, mtx);
1973184610Salfred
1974184610Salfreddone:
1975186730Salfred	if (err && do_retry) {
1976186730Salfred		/* give the USB firmware some time to load */
1977194228Sthompsa		usb_pause_mtx(mtx, hz / 2);
1978186730Salfred		/* no more retries after this retry */
1979186730Salfred		do_retry = 0;
1980186730Salfred		/* try again */
1981186730Salfred		goto retry;
1982186730Salfred	}
1983184610Salfred	/* restore address */
1984213435Shselasky	if (udev->address == USB_START_ADDR)
1985213435Shselasky		udev->address = old_addr;
1986213435Shselasky	/* update state, if successful */
1987213435Shselasky	if (err == 0)
1988213435Shselasky		usb_set_device_state(udev, USB_STATE_ADDRESSED);
1989184610Salfred	return (err);
1990184610Salfred}
1991186730Salfred
1992186730Salfred/*------------------------------------------------------------------------*
1993194228Sthompsa *	usbd_req_clear_device_feature
1994186730Salfred *
1995186730Salfred * Returns:
1996186730Salfred *    0: Success
1997186730Salfred * Else: Failure
1998186730Salfred *------------------------------------------------------------------------*/
1999193045Sthompsausb_error_t
2000194228Sthompsausbd_req_clear_device_feature(struct usb_device *udev, struct mtx *mtx,
2001186730Salfred    uint16_t sel)
2002186730Salfred{
2003192984Sthompsa	struct usb_device_request req;
2004186730Salfred
2005186730Salfred	req.bmRequestType = UT_WRITE_DEVICE;
2006186730Salfred	req.bRequest = UR_CLEAR_FEATURE;
2007186730Salfred	USETW(req.wValue, sel);
2008186730Salfred	USETW(req.wIndex, 0);
2009186730Salfred	USETW(req.wLength, 0);
2010194228Sthompsa	return (usbd_do_request(udev, mtx, &req, 0));
2011186730Salfred}
2012186730Salfred
2013186730Salfred/*------------------------------------------------------------------------*
2014194228Sthompsa *	usbd_req_set_device_feature
2015186730Salfred *
2016186730Salfred * Returns:
2017186730Salfred *    0: Success
2018186730Salfred * Else: Failure
2019186730Salfred *------------------------------------------------------------------------*/
2020193045Sthompsausb_error_t
2021194228Sthompsausbd_req_set_device_feature(struct usb_device *udev, struct mtx *mtx,
2022186730Salfred    uint16_t sel)
2023186730Salfred{
2024192984Sthompsa	struct usb_device_request req;
2025186730Salfred
2026186730Salfred	req.bmRequestType = UT_WRITE_DEVICE;
2027186730Salfred	req.bRequest = UR_SET_FEATURE;
2028186730Salfred	USETW(req.wValue, sel);
2029186730Salfred	USETW(req.wIndex, 0);
2030186730Salfred	USETW(req.wLength, 0);
2031194228Sthompsa	return (usbd_do_request(udev, mtx, &req, 0));
2032186730Salfred}
2033