From: Kyungwoo Kang Date: Fri, 20 Oct 2017 05:27:07 +0000 (+0900) Subject: [COMMON] i2c: exynos5: Fix Enable IRQ sequence X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=88d78636e2af301c705ce663dff6a161cd5e6992;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git [COMMON] i2c: exynos5: Fix Enable IRQ sequence By architectual guide, IRQ_EN SFR must be set before Master runs. Previously this sequeuce has been opposite. Change-Id: I04997171ae5c28a4ca0e6aacd317ddd5fed61dd2 Signed-off-by: Kyungwoo Kang --- diff --git a/drivers/i2c/busses/i2c-exynos5.c b/drivers/i2c/busses/i2c-exynos5.c index 1cae64aa3d68..fe9cf3095646 100644 --- a/drivers/i2c/busses/i2c-exynos5.c +++ b/drivers/i2c/busses/i2c-exynos5.c @@ -657,14 +657,6 @@ static int exynos5_i2c_xfer_msg(struct exynos5_i2c *i2c, writel(i2c_ctl, i2c->regs + HSI2C_CTL); - i2c_auto_conf &= ~(0xffff); - i2c_auto_conf |= i2c->msg->len; - writel(i2c_auto_conf, i2c->regs + HSI2C_AUTO_CONF); - - i2c_auto_conf = readl(i2c->regs + HSI2C_AUTO_CONF); - i2c_auto_conf |= HSI2C_MASTER_RUN; - writel(i2c_auto_conf, i2c->regs + HSI2C_AUTO_CONF); - if (operation_mode == HSI2C_INTERRUPT) { unsigned int cpu = raw_smp_processor_id(); i2c_int_en |= HSI2C_INT_CHK_TRANS_STATE | HSI2C_INT_TRANSFER_DONE; @@ -676,6 +668,14 @@ static int exynos5_i2c_xfer_msg(struct exynos5_i2c *i2c, writel(HSI2C_INT_TRANSFER_DONE, i2c->regs + HSI2C_INT_ENABLE); } + i2c_auto_conf &= ~(0xffff); + i2c_auto_conf |= i2c->msg->len; + writel(i2c_auto_conf, i2c->regs + HSI2C_AUTO_CONF); + + i2c_auto_conf = readl(i2c->regs + HSI2C_AUTO_CONF); + i2c_auto_conf |= HSI2C_MASTER_RUN; + writel(i2c_auto_conf, i2c->regs + HSI2C_AUTO_CONF); + ret = -EAGAIN; if (msgs->flags & I2C_M_RD) { if (operation_mode == HSI2C_POLLING) {