aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Brugger <matthias.bgg@gmail.com>2012-12-12 10:33:42 -0500
committerBenoit Cousson <benoit.cousson@linaro.org>2013-04-08 18:16:47 -0400
commitbc0b8b7085f534d65618f7103e87440fef0e27cf (patch)
tree8d46ddd14414ea7cf35cc3706054950f9395fb48
parent9ad1df2b15b0f1952a57c3407996450cc64bc976 (diff)
ARM: dts: omap3-igep: Add uart1 and uart2 to igep boards
This is a follow-up to Javier Martinez effort adding initial device tree support to IGEP technology devices [1]. It adds uart1 and uart2 bindings to the generic dtsi for the IGEP boards. [1] http://www.spinics.net/lists/linux-omap/msg83409.html Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com> Signed-off-by: Benoit Cousson <benoit.cousson@linaro.org>
-rw-r--r--arch/arm/boot/dts/omap3-igep.dtsi24
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap3-igep.dtsi b/arch/arm/boot/dts/omap3-igep.dtsi
index 100eb4101170..dd01c46d9082 100644
--- a/arch/arm/boot/dts/omap3-igep.dtsi
+++ b/arch/arm/boot/dts/omap3-igep.dtsi
@@ -27,6 +27,20 @@
27}; 27};
28 28
29&omap3_pmx_core { 29&omap3_pmx_core {
30 uart1_pins: pinmux_uart1_pins {
31 pinctrl-single,pins = <
32 0x152 0x100 /* uart1_rx.uart1_rx INPUT | MODE0 */
33 0x14c 0 /* uart1_tx.uart1_tx OUTPUT | MODE0 */
34 >;
35 };
36
37 uart2_pins: pinmux_uart2_pins {
38 pinctrl-single,pins = <
39 0x14a 0x100 /* uart2_rx.uart2_rx INPUT | MODE0 */
40 0x148 0 /* uart2_tx.uart2_tx OUTPUT | MODE0 */
41 >;
42 };
43
30 uart3_pins: pinmux_uart3_pins { 44 uart3_pins: pinmux_uart3_pins {
31 pinctrl-single,pins = < 45 pinctrl-single,pins = <
32 0x16e 0x100 /* uart3_rx.uart3_rx INPUT | MODE0 */ 46 0x16e 0x100 /* uart3_rx.uart3_rx INPUT | MODE0 */
@@ -88,6 +102,16 @@
88 status = "disabled"; 102 status = "disabled";
89}; 103};
90 104
105&uart1 {
106 pinctrl-names = "default";
107 pinctrl-0 = <&uart1_pins>;
108};
109
110&uart2 {
111 pinctrl-names = "default";
112 pinctrl-0 = <&uart2_pins>;
113};
114
91&uart3 { 115&uart3 {
92 pinctrl-names = "default"; 116 pinctrl-names = "default";
93 pinctrl-0 = <&uart3_pins>; 117 pinctrl-0 = <&uart3_pins>;