reset: ACPI reset support
authorKrishna Yarlagadda <kyarlagadda@nvidia.com>
Mon, 7 Mar 2022 13:56:26 +0000 (19:26 +0530)
committerPhilipp Zabel <p.zabel@pengutronix.de>
Tue, 3 May 2022 15:41:25 +0000 (17:41 +0200)
Some of the IO devices like I2C or SPI require reset at runtime to
recover from an error condition without changing the power state of
the system. Added check for ACPI handle and a call to method '__RST'
if supported. Devices using device tree method are unaffected by this.

Signed-off-by: Krishna Yarlagadda <kyarlagadda@nvidia.com>
[p.zabel@pengutronix.de: wrap in #ifdef CONFIG_ACPI due to missing stubs]
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Link: https://lore.kernel.org/r/20220307135626.16673-1-kyarlagadda@nvidia.com
drivers/reset/core.c

index 61e6888826432f8f2d58518443566c600b8e509b..f0a076e94118f3547beceed946cf6269e83ac1ec 100644 (file)
@@ -12,6 +12,7 @@
 #include <linux/kref.h>
 #include <linux/module.h>
 #include <linux/of.h>
+#include <linux/acpi.h>
 #include <linux/reset.h>
 #include <linux/reset-controller.h>
 #include <linux/slab.h>
@@ -1100,13 +1101,25 @@ EXPORT_SYMBOL_GPL(__devm_reset_control_bulk_get);
  *
  * Convenience wrapper for __reset_control_get() and reset_control_reset().
  * This is useful for the common case of devices with single, dedicated reset
- * lines.
+ * lines. _RST firmware method will be called for devices with ACPI.
  */
 int __device_reset(struct device *dev, bool optional)
 {
        struct reset_control *rstc;
        int ret;
 
+#ifdef CONFIG_ACPI
+       acpi_handle handle = ACPI_HANDLE(dev);
+
+       if (handle) {
+               if (!acpi_has_method(handle, "_RST"))
+                       return optional ? 0 : -ENOENT;
+               if (ACPI_FAILURE(acpi_evaluate_object(handle, "_RST", NULL,
+                                                     NULL)))
+                       return -EIO;
+       }
+#endif
+
        rstc = __reset_control_get(dev, NULL, 0, 0, optional, true);
        if (IS_ERR(rstc))
                return PTR_ERR(rstc);