$FreeBSD$

Copyright (c) 2008-2010 Hans Petter Selasky. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

.Dd January 6, 2010 .Dt USBCONFIG 8 .Os .Sh NAME .Nm usbconfig .Nd configure the USB subsystem .Sh SYNOPSIS .Nm .Op Fl u Ar unit .Op Fl a Ar addr .Op cmds... .Nm .Op Fl d Ar [ugen]<unit>.<addr> .Op cmds... .Sh DESCRIPTION The .Nm utility is used to configure and dump information about the USB subsystem.

p The options are as follows: l -tag -width " " t Fl u Ar unit Limit device range to USB devices connected to the given USBUS unit. t Fl a Ar addr Limit device range to the given USB device index. Should only be used in conjunction with the unit argument. t Fl d Ar [ugen]<unit>.<addr> Limit device range to USB devices connected to the given unit and address. The unit and address coordinates may be prefixed by the lowercased word "ugen". t Fl h Show help and available commands. .El

p When called without options, .Nm prints a list of all available USB devices. .Sh EXAMPLES Show information about the device on USB bus 1 at address 2:

p .Dl usbconfig -u 1 -a 2 dump_info

p Dump HID descriptor for device on USB bus 1 at address 2:

p .Dl usbconfig -u 1 -a 2 do_request 0x81 0x06 0x2200 0 0x100

p Dump string descriptor at index Z for device on USB bus 1 at address 2:

p .Dl usbconfig -u 1 -a 2 dump_string Z

p Dump current configuration descriptor for device on USB bus 1 at address 2:

p .Dl usbconfig -u 1 -a 2 dump_curr_config_desc

p Dump device descriptor for device on USB bus 1 at address 2:

p .Dl usbconfig -u 1 -a 2 dump_device_desc

p Program the device on USB bus 1 at address 2 to suspend, resume, power off, go into power save, or power on:

p .Dl usbconfig -u 1 -a 2 suspend .Dl usbconfig -u 1 -a 2 resume .Dl usbconfig -u 1 -a 2 power_off .Dl usbconfig -u 1 -a 2 power_save .Dl usbconfig -u 1 -a 2 power_on

p Display a list of available quirk names:

p .Dl usbconfig dump_quirk_names

p See .Xr usb_quirk 4 for more information on quirks. .Sh SEE ALSO .Xr usb 4 , .Xr usb_quirk 4