From 0ba507d286fc521e71ba048d81c7d1d751012bb8 Mon Sep 17 00:00:00 2001 From: Ondrej Jirman Date: Sat, 30 Sep 2017 02:51:09 +0200 Subject: [PATCH 33/82] ARM: dts: sun8i-a83t-tbs-a711: Use i2c-gpio to communicate with cameras Camera sensors are connected via I2C to PE14/PE15 pins on A83T. Unfortunately while the A83T datasheet suggests TWI2 I2C controller can be configured to have SDA/SCL on these pins, this configuration doesn't work in reality. We need to either use CCI I2C controller that is part of the CSI module, or as is done in this patch, use GPIO based bitbanging I2C driver. Signed-off-by: Ondrej Jirman --- arch/arm/boot/dts/sun8i-a83t-tbs-a711.dts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-a83t-tbs-a711.dts b/arch/arm/boot/dts/sun8i-a83t-tbs-a711.dts index 7936405862c1..8a0a8d39eb21 100644 --- a/arch/arm/boot/dts/sun8i-a83t-tbs-a711.dts +++ b/arch/arm/boot/dts/sun8i-a83t-tbs-a711.dts @@ -72,6 +72,16 @@ default-brightness-level = <39>; }; + i2c_gpio: i2c-gpio { + compatible = "i2c-gpio"; + /* PE15 = sda, PE14 = scl */ + sda-gpios = <&pio 4 15 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; + scl-gpios = <&pio 4 14 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; + i2c-gpio,delay-us = <1>; /* ~100 kHz */ + #address-cells = <1>; + #size-cells = <0>; + }; + panel { compatible = "tbs,a711-panel", "panel-lvds"; backlight = <&backlight>; -- 2.20.1