Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

struct_usb_configuration(9) [suse man page]

STRUCT 
USB_CONFIGURA(9) Kernel Mode Gadget API STRUCT USB_CONFIGURA(9) NAME
struct_usb_configuration - represents one gadget configuration SYNOPSIS
struct usb_configuration { const char * label; struct usb_gadget_strings ** strings; const struct usb_descriptor_header ** descriptors; int (* bind) (struct usb_configuration *); void (* unbind) (struct usb_configuration *); int (* setup) (struct usb_configuration *,const struct usb_ctrlrequest *); u8 bConfigurationValue; u8 iConfiguration; u8 bmAttributes; u8 bMaxPower; struct usb_composite_dev * cdev; }; MEMBERS
label For diagnostics, describes the configuration. strings Tables of strings, keyed by identifiers assigned during bind() and by language IDs provided in control requests. descriptors Table of descriptors preceding all function descriptors. Examples include OTG and vendor-specific descriptors. bind Called from usb_add_config() to allocate resources unique to this configuration and to call usb_add_function() for each function used. unbind Reverses bind; called as a side effect of unregistering the driver which added this configuration. setup Used to delegate control requests that aren't handled by standard device infrastructure or directed at a specific interface. bConfigurationValue Copied into configuration descriptor. iConfiguration Copied into configuration descriptor. bmAttributes Copied into configuration descriptor. bMaxPower Copied into configuration descriptor. cdev assigned by usb_add_config() before calling bind(); this is the device associated with this configuration. DESCRIPTION
Configurations are building blocks for gadget drivers structured around function drivers. Simple USB gadgets require only one function and one configuration, and handle dual-speed hardware by always providing the same functionality. Slightly more complex gadgets may have more than one single-function configuration at a given speed; or have configurations that only work at one speed. Composite devices are, by definition, ones with configurations which include more than one function. The lifecycle of a usb_configuration includes allocation, initialization of the fields described above, and calling usb_add_config() to set up internal data and bind it to a specific device. The configuration's bind() method is then used to initialize all the functions and then call usb_add_function() for them. Those functions would normally be independant of each other, but that's not mandatory. CDC WMC devices are an example where functions often depend on other functions, with some functions subsidiary to others. Such interdependency may be managed in any way, so long as all of the descriptors complete by the time the composite driver returns from its bind routine. AUTHOR
David Brownell <dbrownell@users.sourceforge.net> Author. COPYRIGHT
Kernel Hackers Manual 2.6. July 2010 STRUCT USB_CONFIGURA(9)

Check Out this Related Man Page

STRUCT 
USB_COMPOSITE(9) Kernel Mode Gadget API STRUCT USB_COMPOSITE(9) NAME
struct_usb_composite_dev - represents one composite usb gadget SYNOPSIS
struct usb_composite_dev { struct usb_gadget * gadget; struct usb_request * req; struct usb_configuration * config; }; MEMBERS
gadget read-only, abstracts the gadget's usb peripheral controller req used for control responses; buffer is pre-allocated config the currently active configuration DESCRIPTION
One of these devices is allocated and initialized before the associated device driver's bind is called. OPEN ISSUE
it appears that some WUSB devices will need to be built by combining a normal (wired) gadget with a wireless one. This revision of the gadget framework should probably try to make sure doing that won't hurt too much. ONE NOTION FOR HOW TO HANDLE WIRELESS USB DEVICES INVOLVES
(a) a second gadget here, discovery mechanism TBD, but likely needing separate "register/unregister WUSB gadget" calls; (b) updates to usb_gadget to include flags "is it wireless", "is it wired", plus (presumably in a wrapper structure) bandgroup and PHY info; (c) presumably a wireless_ep wrapping a usb_ep, and reporting wireless-specific parameters like maxburst and maxsequence; (d) configurations that are specific to wireless links; (e) function drivers that understand wireless configs and will support wireless for (additional) function instances; (f) a function to support association setup (like CBAF), not necessarily requiring a wireless adapter; (g) composite device setup that can create one or more wireless configs, including appropriate association setup support; (h) more, TBD. AUTHOR
David Brownell <dbrownell@users.sourceforge.net> Author. COPYRIGHT
Kernel Hackers Manual 3.10 June 2014 STRUCT USB_COMPOSITE(9)
Man Page