]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
usb: host: xhci-plat: Parse xhci-missing_cas_quirk and apply quirk
authorFrank Li <Frank.Li@nxp.com>
Fri, 6 Sep 2024 16:30:37 +0000 (12:30 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 11 Sep 2024 13:37:52 +0000 (15:37 +0200)
Parse software managed property 'xhci-skip-phy-init-quirk' and
'xhci-skip-phy-init-quirk' to apply related quirk. It allows usb glue layer
driver apply these quirk.

Signed-off-by: Frank Li <Frank.Li@nxp.com>
Link: https://lore.kernel.org/r/20240906-dwc-mp-v5-1-ea8ec6774e7b@nxp.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/xhci-plat.c

index 31bdfa52eeb252172325f226d53fff58d242d2d8..ecaa75718e5926816fb3427c58c64292374defed 100644 (file)
@@ -259,6 +259,12 @@ int xhci_plat_probe(struct platform_device *pdev, struct device *sysdev, const s
                if (device_property_read_bool(tmpdev, "write-64-hi-lo-quirk"))
                        xhci->quirks |= XHCI_WRITE_64_HI_LO;
 
+               if (device_property_read_bool(tmpdev, "xhci-missing-cas-quirk"))
+                       xhci->quirks |= XHCI_MISSING_CAS;
+
+               if (device_property_read_bool(tmpdev, "xhci-skip-phy-init-quirk"))
+                       xhci->quirks |= XHCI_SKIP_PHY_INIT;
+
                device_property_read_u32(tmpdev, "imod-interval-ns",
                                         &xhci->imod_interval);
        }