1 From 97db2ca4485dc7b10b8382832befe607ade59a6b Mon Sep 17 00:00:00 2001
2 From: Dong Aisheng <aisheng.dong@nxp.com>
3 Date: Sat, 26 Jan 2019 17:51:59 +0800
4 Subject: [PATCH] i2c: imx: fix system hang due to access i2c registers without
7 Currently, i2c_imx_bus_busy in i2c_imx_xfer is called before
8 pm_runtime_get which means the clocks are still not enabled.
9 This will cause a hang on IMX as IMX requires accessing registers
12 So let's change the order to ensure the clocks are enabled before
13 accessing registers. This is also a more safe way to access registers,
14 suppose shouldn't affect other platforms.
16 Fixes: 4a6ebf1c125c ("i2c: imx: add workaround for erratum ERR010027")
17 Reviewed-by: Biwen Li <biwen.li@nxp.com>
18 Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
20 drivers/i2c/busses/i2c-imx.c | 9 ++++-----
21 1 file changed, 4 insertions(+), 5 deletions(-)
23 --- a/drivers/i2c/busses/i2c-imx.c
24 +++ b/drivers/i2c/busses/i2c-imx.c
25 @@ -1094,12 +1094,15 @@ static int i2c_imx_xfer(struct i2c_adapt
27 dev_dbg(&i2c_imx->adapter.dev, "<%s>\n", __func__);
30 if (!pm_runtime_enabled(i2c_imx->adapter.dev.parent)) {
31 pm_runtime_enable(i2c_imx->adapter.dev.parent);
32 enable_runtime_pm = true;
35 + result = pm_runtime_get_sync(i2c_imx->adapter.dev.parent);
40 * workround for ERR010027: ensure that the I2C BUS is idle
41 * before switching to master mode and attempting a Start cycle
42 @@ -1113,10 +1116,6 @@ static int i2c_imx_xfer(struct i2c_adapt
46 - result = pm_runtime_get_sync(i2c_imx->adapter.dev.parent);
50 /* Start I2C transfer */
51 result = i2c_imx_start(i2c_imx);