i2c: add 'set_sda' to bus_recovery_info
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Tue, 9 Jan 2018 13:58:56 +0000 (14:58 +0100)
committerWolfram Sang <wsa@the-dreams.de>
Mon, 15 Jan 2018 23:04:19 +0000 (00:04 +0100)
This will be needed when we want to create STOP conditions, too, later.
Create the needed fields and populate them for the GPIO case if the GPIO
is set to output.

Tested-by: Phil Reid <preid@electromag.com.au>
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/i2c-core-base.c
include/linux/i2c.h

index bb34a5d4113331b955f43172d4e3bdf15cb2a1b0..a8b3fbe16fa08c4529b4ccb29da9e481c9942481 100644 (file)
@@ -147,6 +147,11 @@ static int get_sda_gpio_value(struct i2c_adapter *adap)
        return gpiod_get_value_cansleep(adap->bus_recovery_info->sda_gpiod);
 }
 
+static void set_sda_gpio_value(struct i2c_adapter *adap, int val)
+{
+       gpiod_set_value_cansleep(adap->bus_recovery_info->sda_gpiod, val);
+}
+
 /*
  * We are generating clock pulses. ndelay() determines durating of clk pulses.
  * We will generate clock with rate 100 KHz and so duration of both clock levels
@@ -225,8 +230,12 @@ static void i2c_init_recovery(struct i2c_adapter *adap)
        if (bri->scl_gpiod && bri->recover_bus == i2c_generic_scl_recovery) {
                bri->get_scl = get_scl_gpio_value;
                bri->set_scl = set_scl_gpio_value;
-               if (bri->sda_gpiod)
+               if (bri->sda_gpiod) {
                        bri->get_sda = get_sda_gpio_value;
+                       /* FIXME: add proper flag instead of '0' once available */
+                       if (gpiod_get_direction(bri->sda_gpiod) == 0)
+                               bri->set_sda = set_sda_gpio_value;
+               }
                return;
        }
 
index fd87b806b5f1656eb3c831fe71e5d20fc2b23592..419a38e7c315f134cc2f768e1b6e9f259e843319 100644 (file)
@@ -551,6 +551,9 @@ struct i2c_timings {
  * @get_sda: This gets current value of SDA line. Optional for generic SCL
  *      recovery. Populated internally, if sda_gpio is a valid GPIO, for generic
  *      GPIO recovery.
+ * @set_sda: This sets/clears the SDA line. Optional for generic SCL recovery.
+ *     Populated internally, if sda_gpio is a valid GPIO, for generic GPIO
+ *     recovery.
  * @prepare_recovery: This will be called before starting recovery. Platform may
  *     configure padmux here for SDA/SCL line or something else they want.
  * @unprepare_recovery: This will be called after completing recovery. Platform
@@ -564,6 +567,7 @@ struct i2c_bus_recovery_info {
        int (*get_scl)(struct i2c_adapter *adap);
        void (*set_scl)(struct i2c_adapter *adap, int val);
        int (*get_sda)(struct i2c_adapter *adap);
+       void (*set_sda)(struct i2c_adapter *adap, int val);
 
        void (*prepare_recovery)(struct i2c_adapter *adap);
        void (*unprepare_recovery)(struct i2c_adapter *adap);