aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts
diff options
context:
space:
mode:
authorMarkus Pargmann <mpa@pengutronix.de>2014-02-08 01:15:37 -0500
committerShawn Guo <shawn.guo@linaro.org>2014-02-09 08:32:58 -0500
commit26508cb703c6b08df53b8c856b90227237c62361 (patch)
tree3e1e0014030630245c41d660c516a0c21d493ef0 /arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts
parent858db3160820b0e0d02c363ea7d8e409ea0c498a (diff)
ARM: dts: imx27 phycore pinctrl
Add pinctrl nodes and properties for phycore device nodes. Signed-off-by: Markus Pargmann <mpa@pengutronix.de> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts')
-rw-r--r--arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts26
1 files changed, 26 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts b/arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts
index ad76d88a90ff..959dddf60d1f 100644
--- a/arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts
+++ b/arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts
@@ -19,6 +19,28 @@
19 cs-gpios = <&gpio4 28 0>, <&gpio4 27 0>; 19 cs-gpios = <&gpio4 28 0>, <&gpio4 27 0>;
20}; 20};
21 21
22&iomuxc {
23 imx27_phycore_rdk {
24 pinctrl_uart1: uart1grp {
25 fsl,pins = <
26 MX27_PAD_UART1_TXD__UART1_TXD 0x0
27 MX27_PAD_UART1_RXD__UART1_RXD 0x0
28 MX27_PAD_UART1_CTS__UART1_CTS 0x0
29 MX27_PAD_UART1_RTS__UART1_RTS 0x0
30 >;
31 };
32
33 pinctrl_uart2: uart2grp {
34 fsl,pins = <
35 MX27_PAD_UART2_TXD__UART2_TXD 0x0
36 MX27_PAD_UART2_RXD__UART2_RXD 0x0
37 MX27_PAD_UART2_CTS__UART2_CTS 0x0
38 MX27_PAD_UART2_RTS__UART2_RTS 0x0
39 >;
40 };
41 };
42};
43
22&sdhci2 { 44&sdhci2 {
23 bus-width = <4>; 45 bus-width = <4>;
24 cd-gpios = <&gpio3 29 0>; 46 cd-gpios = <&gpio3 29 0>;
@@ -29,11 +51,15 @@
29 51
30&uart1 { 52&uart1 {
31 fsl,uart-has-rtscts; 53 fsl,uart-has-rtscts;
54 pinctrl-names = "default";
55 pinctrl-0 = <&pinctrl_uart1>;
32 status = "okay"; 56 status = "okay";
33}; 57};
34 58
35&uart2 { 59&uart2 {
36 fsl,uart-has-rtscts; 60 fsl,uart-has-rtscts;
61 pinctrl-names = "default";
62 pinctrl-0 = <&pinctrl_uart2>;
37 status = "okay"; 63 status = "okay";
38}; 64};
39 65