]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
i2c: rockchip: De-initialize the bus after start bit failure
authorOndrej Jirman <megi@xff.cz>
Thu, 25 May 2023 12:18:17 +0000 (14:18 +0200)
committerHeiko Schocher <hs@denx.de>
Mon, 5 Jun 2023 04:52:46 +0000 (06:52 +0200)
Failure can happen when i2c is used without initializing pinctrl properly,
which U-Boot happily allows in SPL. Without this fix, further I2C access would
fail, even after proper pinctrl initialization.

Signed-off-by: Ondrej Jirman <megi@xff.cz>
Cc: Heiko Schocher <hs@denx.de>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
drivers/i2c/rk_i2c.c

index f8fac45b6ca0b8786e00e080b63731fd993ca783..9927af94a80b1dfbb66c41e276d52118ba6b996f 100644 (file)
@@ -342,7 +342,7 @@ static int rockchip_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
                             int nmsgs)
 {
        struct rk_i2c *i2c = dev_get_priv(bus);
-       int ret;
+       int ret = 0;
 
        debug("i2c_xfer: %d messages\n", nmsgs);
        for (; nmsgs > 0; nmsgs--, msg++) {
@@ -356,14 +356,15 @@ static int rockchip_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
                }
                if (ret) {
                        debug("i2c_write: error sending\n");
-                       return -EREMOTEIO;
+                       ret = -EREMOTEIO;
+                       break;
                }
        }
 
        rk_i2c_send_stop_bit(i2c);
        rk_i2c_disable(i2c);
 
-       return 0;
+       return ret;
 }
 
 int rockchip_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)