From: Jisheng Zhang <jszhang@kernel.org>
To: Jarkko Nikula <jarkko.nikula@linux.intel.com>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Mika Westerberg <mika.westerberg@linux.intel.com>,
Jan Dabros <jsd@semihalf.com>, Andi Shyti <andi.shyti@kernel.org>
Cc: linux-kernel@vger.kernel.org, linux-i2c@vger.kernel.org
Subject: [PATCH 1/2] i2c: designware: Avoid taking clk_prepare mutex in PM callbacks
Date: Wed, 20 Aug 2025 23:31:24 +0800 [thread overview]
Message-ID: <20250820153125.22002-2-jszhang@kernel.org> (raw)
In-Reply-To: <20250820153125.22002-1-jszhang@kernel.org>
This is unsafe, as the runtime PM callbacks are called from the PM
workqueue, so this may deadlock when handling an i2c attached clock,
which may already hold the clk_prepare mutex from another context.
Fixes: 1fc2fe204cb9 ("i2c: designware: Add runtime PM hooks")
Signed-off-by: Jisheng Zhang <jszhang@kernel.org>
---
drivers/i2c/busses/i2c-designware-common.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/i2c/busses/i2c-designware-common.c b/drivers/i2c/busses/i2c-designware-common.c
index 5b1e8f74c4ac..b4e38bc0f876 100644
--- a/drivers/i2c/busses/i2c-designware-common.c
+++ b/drivers/i2c/busses/i2c-designware-common.c
@@ -776,7 +776,8 @@ static int i2c_dw_runtime_suspend(struct device *device)
return 0;
i2c_dw_disable(dev);
- i2c_dw_prepare_clk(dev, false);
+ clk_disable(dev->clk);
+ clk_disable(dev->pclk);
return 0;
}
@@ -794,8 +795,10 @@ static int i2c_dw_runtime_resume(struct device *device)
{
struct dw_i2c_dev *dev = dev_get_drvdata(device);
- if (!dev->shared_with_punit)
- i2c_dw_prepare_clk(dev, true);
+ if (!dev->shared_with_punit) {
+ clk_enable(dev->pclk);
+ clk_enable(dev->clk);
+ }
dev->init(dev);
--
2.50.1
next prev parent reply other threads:[~2025-08-20 15:48 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-20 15:31 [PATCH 0/2] i2c: designware: Implement atomic transfer suppot Jisheng Zhang
2025-08-20 15:31 ` Jisheng Zhang [this message]
2025-08-20 16:05 ` [PATCH 1/2] i2c: designware: Avoid taking clk_prepare mutex in PM callbacks Andy Shevchenko
2025-08-20 16:33 ` Jisheng Zhang
2025-08-21 12:45 ` Jarkko Nikula
2025-08-21 13:01 ` Andy Shevchenko
2025-08-21 16:32 ` Jisheng Zhang
2025-08-22 9:18 ` Andy Shevchenko
2025-08-22 9:34 ` Andy Shevchenko
2025-08-22 13:56 ` Jisheng Zhang
2025-08-22 23:51 ` Jisheng Zhang
2025-08-20 15:31 ` [PATCH 2/2] i2c: designware: Implement atomic transfer suppot Jisheng Zhang
2025-08-20 17:00 ` Andy Shevchenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250820153125.22002-2-jszhang@kernel.org \
--to=jszhang@kernel.org \
--cc=andi.shyti@kernel.org \
--cc=andriy.shevchenko@linux.intel.com \
--cc=jarkko.nikula@linux.intel.com \
--cc=jsd@semihalf.com \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mika.westerberg@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.