diff options
-rw-r--r-- | arch/arm/boot/dts/omap3-n900.dts | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap3-n900.dts b/arch/arm/boot/dts/omap3-n900.dts index 7dd6fb6488e0..92262680cb85 100644 --- a/arch/arm/boot/dts/omap3-n900.dts +++ b/arch/arm/boot/dts/omap3-n900.dts | |||
@@ -31,6 +31,20 @@ | |||
31 | &omap3_pmx_core { | 31 | &omap3_pmx_core { |
32 | pinctrl-names = "default"; | 32 | pinctrl-names = "default"; |
33 | 33 | ||
34 | uart2_pins: pinmux_uart2_pins { | ||
35 | pinctrl-single,pins = < | ||
36 | 0x14a (PIN_INPUT | MUX_MODE0) /* uart2_rx */ | ||
37 | 0x148 (PIN_OUTPUT | MUX_MODE0) /* uart2_tx */ | ||
38 | >; | ||
39 | }; | ||
40 | |||
41 | uart3_pins: pinmux_uart3_pins { | ||
42 | pinctrl-single,pins = < | ||
43 | 0x16e (PIN_INPUT | MUX_MODE0) /* uart3_rx */ | ||
44 | 0x170 (PIN_OUTPUT | MUX_MODE0) /* uart3_tx */ | ||
45 | >; | ||
46 | }; | ||
47 | |||
34 | i2c1_pins: pinmux_i2c1_pins { | 48 | i2c1_pins: pinmux_i2c1_pins { |
35 | pinctrl-single,pins = < | 49 | pinctrl-single,pins = < |
36 | 0x18a (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_scl */ | 50 | 0x18a (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_scl */ |
@@ -127,3 +141,17 @@ | |||
127 | mode = <2>; | 141 | mode = <2>; |
128 | power = <50>; | 142 | power = <50>; |
129 | }; | 143 | }; |
144 | |||
145 | &uart1 { | ||
146 | status = "disabled"; | ||
147 | }; | ||
148 | |||
149 | &uart2 { | ||
150 | pinctrl-names = "default"; | ||
151 | pinctrl-0 = <&uart2_pins>; | ||
152 | }; | ||
153 | |||
154 | &uart3 { | ||
155 | pinctrl-names = "default"; | ||
156 | pinctrl-0 = <&uart3_pins>; | ||
157 | }; | ||