Skip to content

Commit 048bbbd

Browse files
Marek VasutAndi Shyti
authored andcommitted
i2c: stm32f7: Do not prepare/unprepare clock during runtime suspend/resume
In case there is any sort of clock controller attached to this I2C bus controller, for example Versaclock or even an AIC32x4 I2C codec, then an I2C transfer triggered from the clock controller clk_ops .prepare callback may trigger a deadlock on drivers/clk/clk.c prepare_lock mutex. This is because the clock controller first grabs the prepare_lock mutex and then performs the prepare operation, including its I2C access. The I2C access resumes this I2C bus controller via .runtime_resume callback, which calls clk_prepare_enable(), which attempts to grab the prepare_lock mutex again and deadlocks. Since the clock are already prepared since probe() and unprepared in remove(), use simple clk_enable()/clk_disable() calls to enable and disable the clock on runtime suspend and resume, to avoid hitting the prepare_lock mutex. Acked-by: Alain Volmat <[email protected]> Signed-off-by: Marek Vasut <[email protected]> Fixes: 4e7bca6 ("i2c: i2c-stm32f7: add PM Runtime support") Cc: <[email protected]> # v5.0+ Signed-off-by: Andi Shyti <[email protected]>
1 parent 9852d85 commit 048bbbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/i2c/busses/i2c-stm32f7.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2395,7 +2395,7 @@ static int __maybe_unused stm32f7_i2c_runtime_suspend(struct device *dev)
23952395
struct stm32f7_i2c_dev *i2c_dev = dev_get_drvdata(dev);
23962396

23972397
if (!stm32f7_i2c_is_slave_registered(i2c_dev))
2398-
clk_disable_unprepare(i2c_dev->clk);
2398+
clk_disable(i2c_dev->clk);
23992399

24002400
return 0;
24012401
}
@@ -2406,9 +2406,9 @@ static int __maybe_unused stm32f7_i2c_runtime_resume(struct device *dev)
24062406
int ret;
24072407

24082408
if (!stm32f7_i2c_is_slave_registered(i2c_dev)) {
2409-
ret = clk_prepare_enable(i2c_dev->clk);
2409+
ret = clk_enable(i2c_dev->clk);
24102410
if (ret) {
2411-
dev_err(dev, "failed to prepare_enable clock\n");
2411+
dev_err(dev, "failed to enable clock\n");
24122412
return ret;
24132413
}
24142414
}

0 commit comments

Comments
 (0)