USB: xhci: Root hub support.

Add functionality for getting port status and hub descriptor for xHCI root
hubs.  This is WIP because the USB 3.0 hub descriptor is different from
the USB 2.0 hub descriptor.  For now, we lie about the root hub descriptor
because the changes won't effect how the core talks to the root hub.
Later we will need to add the USB 3.0 hub descriptor for real hubs, and
this code might change.

Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Sarah Sharp
2009-04-27 19:57:12 -07:00
committed by Greg Kroah-Hartman
parent 7206b00164
commit 0f2a79300a
6 changed files with 390 additions and 5 deletions

View File

@@ -113,7 +113,9 @@ static const struct hc_driver xhci_pci_hc_driver = {
*/
.get_frame_number = xhci_get_frame,
/* Implement root hub support later. */
/* Root hub support */
.hub_control = xhci_hub_control,
.hub_status_data = xhci_hub_status_data,
};
/*-------------------------------------------------------------------------*/