]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
usb: dwc3: imx8mp: add 2 software managed quirk properties for host mode
authorFrank Li <Frank.Li@nxp.com>
Fri, 6 Sep 2024 16:30:38 +0000 (12:30 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 11 Sep 2024 13:37:52 +0000 (15:37 +0200)
Add 2 software manage quirk properties (xhci-missing-cas-quirk and
xhci-skip-phy-init-quirk) for xhci host.

dwc3 driver have PHY management to cover both device and host mode, so add
xhci-skip-phy-init-quirk to skip PHY management from HCD core.

Cold Attach Status (CAS) bit can't be set at i.MX8MP after resume from
suspend state. So set xhci-missing-cas-quirk.

Signed-off-by: Frank Li <Frank.Li@nxp.com>
Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Link: https://lore.kernel.org/r/20240906-dwc-mp-v5-2-ea8ec6774e7b@nxp.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/dwc3/dwc3-imx8mp.c

index 8b88649b569febd1f97904806c204316fc04643e..cfb59f6bf5dde7b8744e7f64e638b18a0565dca9 100644 (file)
@@ -145,6 +145,17 @@ static irqreturn_t dwc3_imx8mp_interrupt(int irq, void *_dwc3_imx)
        return IRQ_HANDLED;
 }
 
+static int dwc3_imx8mp_set_software_node(struct device *dev)
+{
+       struct property_entry props[3] = { 0 };
+       int prop_idx = 0;
+
+       props[prop_idx++] = PROPERTY_ENTRY_BOOL("xhci-missing-cas-quirk");
+       props[prop_idx++] = PROPERTY_ENTRY_BOOL("xhci-skip-phy-init-quirk");
+
+       return device_create_managed_software_node(dev, props, NULL);
+}
+
 static int dwc3_imx8mp_probe(struct platform_device *pdev)
 {
        struct device           *dev = &pdev->dev;
@@ -207,6 +218,13 @@ static int dwc3_imx8mp_probe(struct platform_device *pdev)
        if (err < 0)
                goto disable_rpm;
 
+       err = dwc3_imx8mp_set_software_node(dev);
+       if (err) {
+               err = -ENODEV;
+               dev_err(dev, "failed to create software node\n");
+               goto disable_rpm;
+       }
+
        err = of_platform_populate(node, NULL, NULL, dev);
        if (err) {
                dev_err(&pdev->dev, "failed to create dwc3 core\n");