From: Georgii Staroselskii Date: Tue, 11 Sep 2018 10:31:08 +0000 (+0300) Subject: x86: dts: edison: configure I2C#6 pins X-Git-Tag: v2018.11-rc1~116^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f26b260c69f1d92940f82b3d6674a7b70a967dfc;p=platform%2Fkernel%2Fu-boot.git x86: dts: edison: configure I2C#6 pins Now that we have the pinctrl driver for Merrifield in place we can make use of it and set I2C#6 pins appropriately. Initial configuration came from the firmware. Which quite likely has been used in the phones, where that is not part of Atom peripheral, is in use. Thus we need to override the leftover. Signed-off-by: Georgii Staroselskii Reviewed-by: Andy Shevchenko Reviewed-by: Bin Meng --- diff --git a/arch/x86/dts/edison.dts b/arch/x86/dts/edison.dts index 5c80f5c..ca8dfb4 100644 --- a/arch/x86/dts/edison.dts +++ b/arch/x86/dts/edison.dts @@ -90,4 +90,26 @@ compatible = "intel,reset-tangier"; u-boot,dm-pre-reloc; }; + + pinctrl { + compatible = "intel,pinctrl-tangier"; + reg = <0xff0c0000 0x8000>; + + /* + * Initial configuration came from the firmware. + * Which quite likely has been used in the phones, where I2C #8, + * that is not part of Atom peripheral, is in use. + * Thus we need to override the leftover. + */ + i2c6_scl@0 { + pad-offset = <111>; + mode-func = <1>; + protected; + }; + i2c6_sda@0 { + pad-offset = <112>; + mode-func = <1>; + protected; + }; + }; };