diff options
author | Chen-Yu Tsai <[email protected]> | 2014-10-31 11:05:48 +0800 |
---|---|---|
committer | Maxime Ripard <[email protected]> | 2014-11-23 16:53:03 +0100 |
commit | 46d6e0014e5b634fb33659f864e020a74036fd7a (patch) | |
tree | 22af73fe6d3bb08b3fd9ccd2f3453742afa8459b | |
parent | 18b6645ad8d0e45abde3366c223fed3219df168d (diff) |
ARM: dts: sun9i: Enable i2c3 on A80 Optimus board
i2c3 is exposed on the GPIO extension header. Enable it so we can use it.
Also enable internal pull-ups on the pins, as they don't seem to have
external pull-up resistors.
Signed-off-by: Chen-Yu Tsai <[email protected]>
Signed-off-by: Maxime Ripard <[email protected]>
-rw-r--r-- | arch/arm/boot/dts/sun9i-a80-optimus.dts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/sun9i-a80-optimus.dts b/arch/arm/boot/dts/sun9i-a80-optimus.dts index 5d9bc80afef2..955436aa91d4 100644 --- a/arch/arm/boot/dts/sun9i-a80-optimus.dts +++ b/arch/arm/boot/dts/sun9i-a80-optimus.dts @@ -59,10 +59,23 @@ }; soc { + pio: pinctrl@06000800 { + i2c3_pins_a: i2c3@0 { + /* Enable internal pull-up */ + allwinner,pull = <1>; + }; + }; + uart0: serial@07000000 { pinctrl-names = "default"; pinctrl-0 = <&uart0_pins_a>; status = "okay"; }; + + i2c3: i2c@07003400 { + pinctrl-names = "default"; + pinctrl-0 = <&i2c3_pins_a>; + status = "okay"; + }; }; }; |