usb: host: xhci-plat: fix possible kernel oops while resuming
authorSergey Shtylyov <s.shtylyov@omp.ru>
Thu, 19 Oct 2023 10:29:23 +0000 (13:29 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 21 Oct 2023 10:38:54 +0000 (12:38 +0200)
If this driver enables the xHC clocks while resuming from sleep, it calls
clk_prepare_enable() without checking for errors and blithely goes on to
read/write the xHC's registers -- which, with the xHC not being clocked,
at least on ARM32 usually causes an imprecise external abort exceptions
which cause kernel oops.  Currently, the chips for which the driver does
the clock dance on suspend/resume seem to be the Broadcom STB SoCs, based
on ARM32 CPUs, as it seems...

Found by Linux Verification Center (linuxtesting.org) with the Svace static
analysis tool.

Fixes: 8bd954c56197 ("usb: host: xhci-plat: suspend and resume clocks")
Signed-off-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Link: https://lore.kernel.org/r/20231019102924.2797346-19-mathias.nyman@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/xhci-plat.c

index 28218c8f183768efac576b035c6cce15380bc447..b93161374293b3b9f272b9a9c77a282a3a5795b1 100644 (file)
@@ -458,23 +458,38 @@ static int __maybe_unused xhci_plat_resume(struct device *dev)
        int ret;
 
        if (!device_may_wakeup(dev) && (xhci->quirks & XHCI_SUSPEND_RESUME_CLKS)) {
-               clk_prepare_enable(xhci->clk);
-               clk_prepare_enable(xhci->reg_clk);
+               ret = clk_prepare_enable(xhci->clk);
+               if (ret)
+                       return ret;
+
+               ret = clk_prepare_enable(xhci->reg_clk);
+               if (ret) {
+                       clk_disable_unprepare(xhci->clk);
+                       return ret;
+               }
        }
 
        ret = xhci_priv_resume_quirk(hcd);
        if (ret)
-               return ret;
+               goto disable_clks;
 
        ret = xhci_resume(xhci, PMSG_RESUME);
        if (ret)
-               return ret;
+               goto disable_clks;
 
        pm_runtime_disable(dev);
        pm_runtime_set_active(dev);
        pm_runtime_enable(dev);
 
        return 0;
+
+disable_clks:
+       if (!device_may_wakeup(dev) && (xhci->quirks & XHCI_SUSPEND_RESUME_CLKS)) {
+               clk_disable_unprepare(xhci->clk);
+               clk_disable_unprepare(xhci->reg_clk);
+       }
+
+       return ret;
 }
 
 static int __maybe_unused xhci_plat_runtime_suspend(struct device *dev)