diff options
author | Dmitry Lifshitz <lifshitz@compulab.co.il> | 2014-11-18 04:13:20 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2014-11-21 19:11:56 -0500 |
commit | e35351bb711c031bc802f8e865dbca39060d1d11 (patch) | |
tree | 88e37a58731b81bd9c5901069c18112094ca7bb0 | |
parent | 0cdb8255c0d5742c7112bf9b9d2b0a53512039fd (diff) |
ARM: dts: sb-t35: add EEPROM support
Add at24 EEPROM chip support.
Signed-off-by: Dmitry Lifshitz <lifshitz@compulab.co.il>
Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r-- | arch/arm/boot/dts/omap3-sb-t35.dtsi | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap3-sb-t35.dtsi b/arch/arm/boot/dts/omap3-sb-t35.dtsi index b1cb5774f49a..aff733e4ad59 100644 --- a/arch/arm/boot/dts/omap3-sb-t35.dtsi +++ b/arch/arm/boot/dts/omap3-sb-t35.dtsi | |||
@@ -58,6 +58,26 @@ | |||
58 | OMAP3_CORE1_IOPAD(0x20b4, PIN_OUTPUT | MUX_MODE4) /* gpmc_ncs3.gpio_54 */ | 58 | OMAP3_CORE1_IOPAD(0x20b4, PIN_OUTPUT | MUX_MODE4) /* gpmc_ncs3.gpio_54 */ |
59 | >; | 59 | >; |
60 | }; | 60 | }; |
61 | |||
62 | i2c3_pins: pinmux_i2c3_pins { | ||
63 | pinctrl-single,pins = < | ||
64 | OMAP3_CORE1_IOPAD(0x21c2, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_scl */ | ||
65 | OMAP3_CORE1_IOPAD(0x21c4, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_sda */ | ||
66 | >; | ||
67 | }; | ||
68 | }; | ||
69 | |||
70 | &i2c3 { | ||
71 | pinctrl-names = "default"; | ||
72 | pinctrl-0 = <&i2c3_pins>; | ||
73 | |||
74 | clock-frequency = <400000>; | ||
75 | |||
76 | at24@50 { | ||
77 | compatible = "at24,24c02"; | ||
78 | pagesize = <16>; | ||
79 | reg = <0x50>; | ||
80 | }; | ||
61 | }; | 81 | }; |
62 | 82 | ||
63 | &gpmc { | 83 | &gpmc { |