lkml.org 
[lkml]   [2022]   [Sep]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[RFC PATCH 2/2] clk: core: Avoid potential deadlock when disabling unused clocks
Date
While booting up my system, I seem to have hit the lucky jackpot and
my system was consistently deadlocking from an issue that seems to
have been possible for a long time. Analysis via kgdb made it obvious
what was happening.

The quick summary is here (gory details below):
* Task A:
- running clk_disable_unused() which holds the prepare lock.
- doing a synchronous runtime resume on a device; blocked waiting
for the device which is marked as midway through suspending.
* Task B:
- midway through suspending the same device on a work thread.
- trying to unprepare a clock and grab the prepare lock.

That's a pretty clear deadlock.

Fixing the deadlock isn't amazingly straightforward. It should be
pretty clear that a random device's PM Runtime callbacks should be
able to prepare/unprepare clocks, so pretty much the only action would
be to drop the "prepare" lock while disabling unused clocks. That's
not super safe, though.

Instead of rejiggering the locking design of the whole clock
framework, let's use the following observations to fix this:
1. Disabling unused clocks is not terribly urgent. It can be delayed
for a bit.
2. Disabling unused clocks can be retried. In other words, at any
point in time we can stop, drop the prepare lock, and start all
over again from the beginning.
This means that we can "fix" the problem by just backing off, delaying
a bit, and trying again.

At the moment we'll do an exponential type backoff (start at 1 ms and
double each time) and try at most 10 times. These numbers were picked
arbitrarily but seem like they'll work.

Gory detail of the analysis follow. This was from the chromeos-5.15
kernel, not pure upstream. The race hits as part of a lucky jackpot of
timings so I had to analyze it on the kernel I was on, but as far as I
know everything about this analysis applies to upstream:

Task A stack crawl (doing the clk_disable_unused()):
task:swapper/0 state:D stack: 0 pid: 1 ppid: 0 flags:0x00000008
Call trace:
schedule()
rpm_resume()
__pm_runtime_resume()
clk_pm_runtime_get()
clk_disable_unused_subtree()
clk_disable_unused_subtree()
clk_disable_unused_subtree()
clk_disable_unused_subtree()
clk_disable_unused()
do_one_initcall()

In kgdb you can see the "dev" being resumed:
(gdb) frame 4
at .../drivers/base/power/runtime.c:819
819 schedule();
(gdb) print dev->driver
$2 = (struct device_driver *) 0x... <lpass_aon_cc_sc7280_driver+40>

Task B stack crawl
schedule()
schedule_preempt_disabled()
__mutex_lock_common()
mutex_lock_nested()
clk_prepare_lock()
clk_unprepare()
pm_clk_suspend()
pm_generic_runtime_suspend()
__rpm_callback()
rpm_callback()
rpm_suspend()
pm_runtime_work()
process_one_work()
worker_thread()
kthread()

In kgdb you can see the "dev" being suspended
(gdb) frame 15
at .../drivers/base/power/runtime.c:522
522 retval = __rpm_callback(cb, dev);
(gdb) print dev->driver
$3 = (struct device_driver *) 0x... <lpass_aon_cc_sc7280_driver+40>

Signed-off-by: Douglas Anderson <dianders@chromium.org>
---

drivers/clk/clk.c | 137 +++++++++++++++++++++++++++++++++++++---------
1 file changed, 110 insertions(+), 27 deletions(-)

diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index bd0b35cac83e..723e57a9d60d 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -9,6 +9,7 @@
#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/clk/clk-conf.h>
+#include <linux/delay.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/spinlock.h>
@@ -114,6 +115,22 @@ static int clk_pm_runtime_get(struct clk_core *core)
return pm_runtime_resume_and_get(core->dev);
}

+static int clk_pm_runtime_try_get(struct clk_core *core)
+{
+ int ret;
+
+ if (!core->rpm_enabled)
+ return 0;
+
+ ret = pm_runtime_try_get_sync(core->dev);
+ if (ret < 0) {
+ pm_runtime_put_noidle(core->dev);
+ return ret;
+ }
+
+ return 0;
+}
+
static void clk_pm_runtime_put(struct clk_core *core)
{
if (!core->rpm_enabled)
@@ -122,6 +139,14 @@ static void clk_pm_runtime_put(struct clk_core *core)
pm_runtime_put_sync(core->dev);
}

+static void clk_pm_runtime_put_async(struct clk_core *core)
+{
+ if (!core->rpm_enabled)
+ return;
+
+ pm_runtime_put(core->dev);
+}
+
/*** locking ***/
static void clk_prepare_lock(void)
{
@@ -1217,23 +1242,31 @@ static void clk_core_disable_unprepare(struct clk_core *core)
clk_core_unprepare_lock(core);
}

-static void __init clk_unprepare_unused_subtree(struct clk_core *core)
+static int __init clk_unprepare_unused_subtree(struct clk_core *core)
{
struct clk_core *child;
+ int ret;

lockdep_assert_held(&prepare_lock);

- hlist_for_each_entry(child, &core->children, child_node)
- clk_unprepare_unused_subtree(child);
+ hlist_for_each_entry(child, &core->children, child_node) {
+ ret = clk_unprepare_unused_subtree(child);
+ if (ret)
+ return ret;
+ }

if (core->prepare_count)
- return;
+ return 0;

if (core->flags & CLK_IGNORE_UNUSED)
- return;
+ return 0;

- if (clk_pm_runtime_get(core))
- return;
+ /* Backoff if the device is busy; see clk_disable_unused_subtree() */
+ ret = clk_pm_runtime_try_get(core);
+ if (ret == -EINPROGRESS)
+ return -EAGAIN;
+ else if (ret)
+ return ret;

if (clk_core_is_prepared(core)) {
trace_clk_unprepare(core);
@@ -1244,23 +1277,39 @@ static void __init clk_unprepare_unused_subtree(struct clk_core *core)
trace_clk_unprepare_complete(core);
}

- clk_pm_runtime_put(core);
+ clk_pm_runtime_put_async(core);
+
+ return 0;
}

-static void __init clk_disable_unused_subtree(struct clk_core *core)
+static int __init clk_disable_unused_subtree(struct clk_core *core)
{
struct clk_core *child;
unsigned long flags;
+ int ret;

lockdep_assert_held(&prepare_lock);

- hlist_for_each_entry(child, &core->children, child_node)
- clk_disable_unused_subtree(child);
+ hlist_for_each_entry(child, &core->children, child_node) {
+ ret = clk_disable_unused_subtree(child);
+ if (ret)
+ return ret;
+ }

if (core->flags & CLK_OPS_PARENT_ENABLE)
clk_core_prepare_enable(core->parent);

- if (clk_pm_runtime_get(core))
+ /*
+ * If the device is already busy resuming / suspending then we need
+ * to back off and try the whole subtree disable again. This is because
+ * the resume / suspend may be happening on another CPU. The resume /
+ * suspend code on the other CPU might be trying to prepare a clock, but
+ * we're already holding the lock. That's deadlock unless we stand down.
+ */
+ ret = clk_pm_runtime_try_get(core);
+ if (ret == -EINPROGRESS)
+ ret = -EAGAIN;
+ if (ret)
goto unprepare_out;

flags = clk_enable_lock();
@@ -1287,10 +1336,12 @@ static void __init clk_disable_unused_subtree(struct clk_core *core)

unlock_out:
clk_enable_unlock(flags);
- clk_pm_runtime_put(core);
+ clk_pm_runtime_put_async(core);
unprepare_out:
if (core->flags & CLK_OPS_PARENT_ENABLE)
clk_core_disable_unprepare(core->parent);
+
+ return ret;
}

static bool clk_ignore_unused __initdata;
@@ -1301,32 +1352,64 @@ static int __init clk_ignore_unused_setup(char *__unused)
}
__setup("clk_ignore_unused", clk_ignore_unused_setup);

-static int __init clk_disable_unused(void)
+static int __init _clk_disable_unused(void)
{
struct clk_core *core;
+ int ret;
+
+ hlist_for_each_entry(core, &clk_root_list, child_node) {
+ ret = clk_disable_unused_subtree(core);
+ if (ret)
+ return ret;
+ }
+
+ hlist_for_each_entry(core, &clk_orphan_list, child_node) {
+ ret = clk_disable_unused_subtree(core);
+ if (ret)
+ return ret;
+ }
+
+ hlist_for_each_entry(core, &clk_root_list, child_node) {
+ ret = clk_unprepare_unused_subtree(core);
+ if (ret)
+ return ret;
+ }
+
+ hlist_for_each_entry(core, &clk_orphan_list, child_node) {
+ ret = clk_unprepare_unused_subtree(core);
+ if (ret)
+ return ret;
+ }
+
+ return 0;
+}
+
+static int __init clk_disable_unused(void)
+{
+ int ret;
+ int backoff_ms = 1;
+ int tries_left;

if (clk_ignore_unused) {
pr_warn("clk: Not disabling unused clocks\n");
return 0;
}

- clk_prepare_lock();
+ for (tries_left = 10; tries_left; tries_left--) {
+ clk_prepare_lock();
+ ret = _clk_disable_unused();
+ clk_prepare_unlock();

- hlist_for_each_entry(core, &clk_root_list, child_node)
- clk_disable_unused_subtree(core);
-
- hlist_for_each_entry(core, &clk_orphan_list, child_node)
- clk_disable_unused_subtree(core);
-
- hlist_for_each_entry(core, &clk_root_list, child_node)
- clk_unprepare_unused_subtree(core);
+ if (ret != -EAGAIN)
+ return ret;

- hlist_for_each_entry(core, &clk_orphan_list, child_node)
- clk_unprepare_unused_subtree(core);
+ msleep(backoff_ms);
+ backoff_ms *= 2;
+ }

- clk_prepare_unlock();
+ pr_warn("clk: Failed to disable unused clocks\n");

- return 0;
+ return ret;
}
late_initcall_sync(clk_disable_unused);

--
2.37.3.968.ga6b4b080e4-goog
\
 
 \ /
  Last update: 2022-09-22 17:45    [W:0.047 / U:0.580 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site