diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-04-13 10:48:42 -0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@freescale.com> | 2014-05-16 11:01:52 -0400 |
commit | e58773268c38ac69c8998bd36bb2030d3414d630 (patch) | |
tree | 4e60397bb5f35ad609e73f85fe0ef8d17aacea8e /arch/arm/boot/dts/imx27-pdk.dts | |
parent | 09c7450c274139ee772e7005869f7c5a8bc60895 (diff) |
ARM: dts: imx27-pdk: Pass the UART1 pin configuration
Provide an entry for the UART1 pin muxing.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'arch/arm/boot/dts/imx27-pdk.dts')
-rw-r--r-- | arch/arm/boot/dts/imx27-pdk.dts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx27-pdk.dts b/arch/arm/boot/dts/imx27-pdk.dts index bd9526561f10..e0f42133f657 100644 --- a/arch/arm/boot/dts/imx27-pdk.dts +++ b/arch/arm/boot/dts/imx27-pdk.dts | |||
@@ -28,5 +28,20 @@ | |||
28 | 28 | ||
29 | &uart1 { | 29 | &uart1 { |
30 | fsl,uart-has-rtscts; | 30 | fsl,uart-has-rtscts; |
31 | pinctrl-names = "default"; | ||
32 | pinctrl-0 = <&pinctrl_uart1>; | ||
31 | status = "okay"; | 33 | status = "okay"; |
32 | }; | 34 | }; |
35 | |||
36 | &iomuxc { | ||
37 | imx27-pdk { | ||
38 | pinctrl_uart1: uart1grp { | ||
39 | fsl,pins = < | ||
40 | MX27_PAD_UART1_TXD__UART1_TXD 0x0 | ||
41 | MX27_PAD_UART1_RXD__UART1_RXD 0x0 | ||
42 | MX27_PAD_UART1_CTS__UART1_CTS 0x0 | ||
43 | MX27_PAD_UART1_RTS__UART1_RTS 0x0 | ||
44 | >; | ||
45 | }; | ||
46 | }; | ||
47 | }; | ||