Commit a2d49572 authored by Mathias Nyman's avatar Mathias Nyman Committed by Greg Kroah-Hartman

usb: set root hub lane counts

Set the the rx_lane and tx_lane count to "2" for USB 3.2 hosts.
For all other older hosts set the default lane counts to 1
Signed-off-by: default avatarMathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 013eedb8
...@@ -2793,6 +2793,9 @@ int usb_add_hcd(struct usb_hcd *hcd, ...@@ -2793,6 +2793,9 @@ int usb_add_hcd(struct usb_hcd *hcd,
hcd->self.root_hub = rhdev; hcd->self.root_hub = rhdev;
mutex_unlock(&usb_port_peer_mutex); mutex_unlock(&usb_port_peer_mutex);
rhdev->rx_lanes = 1;
rhdev->tx_lanes = 1;
switch (hcd->speed) { switch (hcd->speed) {
case HCD_USB11: case HCD_USB11:
rhdev->speed = USB_SPEED_FULL; rhdev->speed = USB_SPEED_FULL;
...@@ -2807,6 +2810,8 @@ int usb_add_hcd(struct usb_hcd *hcd, ...@@ -2807,6 +2810,8 @@ int usb_add_hcd(struct usb_hcd *hcd,
rhdev->speed = USB_SPEED_SUPER; rhdev->speed = USB_SPEED_SUPER;
break; break;
case HCD_USB32: case HCD_USB32:
rhdev->rx_lanes = 2;
rhdev->tx_lanes = 2;
case HCD_USB31: case HCD_USB31:
rhdev->speed = USB_SPEED_SUPER_PLUS; rhdev->speed = USB_SPEED_SUPER_PLUS;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment