From: Sebastian Reichel Date: Tue, 22 Oct 2013 22:49:32 +0000 (+0200) Subject: ARM: dts: omap3-n900: Add UART support X-Git-Tag: upstream/snapshot3+hdmi~4045^2~6^2^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a89eecfdf745bcc3d39cbd5088ad821c4fc62c4;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git ARM: dts: omap3-n900: Add UART support Add UART support to Nokia N900. Signed-off-by: Sebastian Reichel Signed-off-by: Benoit Cousson --- diff --git a/arch/arm/boot/dts/omap3-n900.dts b/arch/arm/boot/dts/omap3-n900.dts index 7dd6fb6..9226268 100644 --- a/arch/arm/boot/dts/omap3-n900.dts +++ b/arch/arm/boot/dts/omap3-n900.dts @@ -31,6 +31,20 @@ &omap3_pmx_core { pinctrl-names = "default"; + uart2_pins: pinmux_uart2_pins { + pinctrl-single,pins = < + 0x14a (PIN_INPUT | MUX_MODE0) /* uart2_rx */ + 0x148 (PIN_OUTPUT | MUX_MODE0) /* uart2_tx */ + >; + }; + + uart3_pins: pinmux_uart3_pins { + pinctrl-single,pins = < + 0x16e (PIN_INPUT | MUX_MODE0) /* uart3_rx */ + 0x170 (PIN_OUTPUT | MUX_MODE0) /* uart3_tx */ + >; + }; + i2c1_pins: pinmux_i2c1_pins { pinctrl-single,pins = < 0x18a (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_scl */ @@ -127,3 +141,17 @@ mode = <2>; power = <50>; }; + +&uart1 { + status = "disabled"; +}; + +&uart2 { + pinctrl-names = "default"; + pinctrl-0 = <&uart2_pins>; +}; + +&uart3 { + pinctrl-names = "default"; + pinctrl-0 = <&uart3_pins>; +};