mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 20:07:46 +09:00
usb: host: xhci: plat: check hcc_params after add hcd
commit5de4e1ea9aupstream. The commit4ac53087d6("usb: xhci: plat: Create both HCDs before adding them") move add hcd to the end of probe, this cause hcc_params uninitiated, because xHCI driver sets hcc_params in xhci_gen_setup() called from usb_add_hcd(). This patch checks the Maximum Primary Stream Array Size in the hcc_params register after add primary hcd. Signed-off-by: William wu <william.wu@rock-chips.com> Acked-by: Roger Quadros <rogerq@ti.com> Fixes:4ac53087d6("usb: xhci: plat: Create both HCDs before adding them") Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
900466a746
commit
61e9e9bcfd
@@ -162,9 +162,6 @@ static int xhci_plat_probe(struct platform_device *pdev)
|
|||||||
(pdata && pdata->usb3_lpm_capable))
|
(pdata && pdata->usb3_lpm_capable))
|
||||||
xhci->quirks |= XHCI_LPM_SUPPORT;
|
xhci->quirks |= XHCI_LPM_SUPPORT;
|
||||||
|
|
||||||
if (HCC_MAX_PSA(xhci->hcc_params) >= 4)
|
|
||||||
xhci->shared_hcd->can_do_streams = 1;
|
|
||||||
|
|
||||||
hcd->usb_phy = devm_usb_get_phy_by_phandle(&pdev->dev, "usb-phy", 0);
|
hcd->usb_phy = devm_usb_get_phy_by_phandle(&pdev->dev, "usb-phy", 0);
|
||||||
if (IS_ERR(hcd->usb_phy)) {
|
if (IS_ERR(hcd->usb_phy)) {
|
||||||
ret = PTR_ERR(hcd->usb_phy);
|
ret = PTR_ERR(hcd->usb_phy);
|
||||||
@@ -181,6 +178,9 @@ static int xhci_plat_probe(struct platform_device *pdev)
|
|||||||
if (ret)
|
if (ret)
|
||||||
goto disable_usb_phy;
|
goto disable_usb_phy;
|
||||||
|
|
||||||
|
if (HCC_MAX_PSA(xhci->hcc_params) >= 4)
|
||||||
|
xhci->shared_hcd->can_do_streams = 1;
|
||||||
|
|
||||||
ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED);
|
ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto dealloc_usb2_hcd;
|
goto dealloc_usb2_hcd;
|
||||||
|
|||||||
Reference in New Issue
Block a user