aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Reichel <sre@debian.org>2013-10-22 18:49:32 -0400
committerBenoit Cousson <bcousson@baylibre.com>2013-10-23 04:11:54 -0400
commit7a89eecfdf745bcc3d39cbd5088ad821c4fc62c4 (patch)
tree2b9cb08cd43a587937480104e22517b3dfd335a0
parent48fc98645062b459a8d136483ee7ebbc2087185f (diff)
ARM: dts: omap3-n900: Add UART support
Add UART support to Nokia N900. Signed-off-by: Sebastian Reichel <sre@debian.org> Signed-off-by: Benoit Cousson <bcousson@baylibre.com>
-rw-r--r--arch/arm/boot/dts/omap3-n900.dts28
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};