All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Add Phytec phyFLEX-i.MX6 board
@ 2013-05-29 21:06 Christian Hemp
  2013-05-29 21:06 ` [PATCH 1/2] ARM: dts: imx6q: Add pinctrl for usdhc2 and enet Christian Hemp
  2013-05-29 21:06 ` [PATCH 2/2] ARM: dts: Phytec phyFLEX-i.MX6 support Christian Hemp
  0 siblings, 2 replies; 6+ messages in thread
From: Christian Hemp @ 2013-05-29 21:06 UTC (permalink / raw)
  To: linux-arm-kernel

This patchset adds basic support for Phytec's phyFLEX-i.MX6.

It's based on git repo from Shwan Guo branche imx/dt

Christian Hemp (2):
  ARM: dts: imx6q: Add pinctrl for usdhc2 and enet
  ARM: dts: Phytec phyFLEX-i.MX6 support

 arch/arm/boot/dts/Makefile                 |    1 +
 arch/arm/boot/dts/imx6q-phytec-phyflex.dts |   76 ++++++++++++++++++++++++++++
 arch/arm/boot/dts/imx6q.dtsi               |   33 ++++++++++++
 3 files changed, 110 insertions(+)
 create mode 100644 arch/arm/boot/dts/imx6q-phytec-phyflex.dts

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/2] ARM: dts: imx6q: Add pinctrl for usdhc2 and enet
  2013-05-29 21:06 [PATCH 0/2] Add Phytec phyFLEX-i.MX6 board Christian Hemp
@ 2013-05-29 21:06 ` Christian Hemp
  2013-05-30  6:25   ` Shawn Guo
  2013-05-29 21:06 ` [PATCH 2/2] ARM: dts: Phytec phyFLEX-i.MX6 support Christian Hemp
  1 sibling, 1 reply; 6+ messages in thread
From: Christian Hemp @ 2013-05-29 21:06 UTC (permalink / raw)
  To: linux-arm-kernel

Add a group to the usdhc2 and enet pinctrl.

Signed-off-by: Christian Hemp <c.hemp@phytec.de>
---
 arch/arm/boot/dts/imx6q.dtsi |   33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi
index ed11bcf..c0c8b7b 100644
--- a/arch/arm/boot/dts/imx6q.dtsi
+++ b/arch/arm/boot/dts/imx6q.dtsi
@@ -157,6 +157,28 @@
 							MX6Q_PAD_RGMII_RX_CTL__RGMII_RX_CTL 0x1b0b0
 						>;
 					};
+
+					pinctrl_enet_3: enetgrp-3 {
+						fsl,pins = <
+							MX6Q_PAD_ENET_MDIO__ENET_MDIO       0x1b0b0
+							MX6Q_PAD_ENET_MDC__ENET_MDC         0x1b0b0
+							MX6Q_PAD_RGMII_TXC__RGMII_TXC       0x1b0b0
+							MX6Q_PAD_RGMII_TD0__RGMII_TD0       0x1b0b0
+							MX6Q_PAD_RGMII_TD1__RGMII_TD1       0x1b0b0
+							MX6Q_PAD_RGMII_TD2__RGMII_TD2       0x1b0b0
+							MX6Q_PAD_RGMII_TD3__RGMII_TD3       0x1b0b0
+							MX6Q_PAD_RGMII_TX_CTL__RGMII_TX_CTL 0x1b0b0
+							MX6Q_PAD_ENET_REF_CLK__ENET_TX_CLK  0x1b0b0
+							MX6Q_PAD_RGMII_RXC__RGMII_RXC       0x1b0b0
+							MX6Q_PAD_RGMII_RD0__RGMII_RD0       0x1b0b0
+							MX6Q_PAD_RGMII_RD1__RGMII_RD1       0x1b0b0
+							MX6Q_PAD_RGMII_RD2__RGMII_RD2       0x1b0b0
+							MX6Q_PAD_RGMII_RD3__RGMII_RD3       0x1b0b0
+							MX6Q_PAD_RGMII_RX_CTL__RGMII_RX_CTL 0x1b0b0
+							MX6Q_PAD_ENET_CRS_DV__SPDIF_EXT_CLK 0x1b0b0
+							MX6Q_PAD_ENET_TX_EN__ENET_TX_EN     0x1b0b0
+						>;
+					};
 				};
 
 				gpmi-nand {
@@ -266,6 +288,17 @@
 							MX6Q_PAD_NANDF_D7__SD2_DATA7 0x17059
 						>;
 					};
+
+					pinctrl_usdhc2_2: usdhc2grp-2 {
+						fsl,pins = <
+							MX6Q_PAD_SD2_CMD__SD2_CMD    0x17059
+							MX6Q_PAD_SD2_CLK__SD2_CLK    0x10059
+							MX6Q_PAD_SD2_DAT0__SD2_DATA0 0x17059
+							MX6Q_PAD_SD2_DAT1__SD2_DATA1 0x17059
+							MX6Q_PAD_SD2_DAT2__SD2_DATA2 0x17059
+							MX6Q_PAD_SD2_DAT3__SD2_DATA3 0x17059
+						>;
+					};
 				};
 
 				usdhc3 {
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] ARM: dts: Phytec phyFLEX-i.MX6 support
  2013-05-29 21:06 [PATCH 0/2] Add Phytec phyFLEX-i.MX6 board Christian Hemp
  2013-05-29 21:06 ` [PATCH 1/2] ARM: dts: imx6q: Add pinctrl for usdhc2 and enet Christian Hemp
@ 2013-05-29 21:06 ` Christian Hemp
  2013-05-30  6:31   ` Shawn Guo
  1 sibling, 1 reply; 6+ messages in thread
From: Christian Hemp @ 2013-05-29 21:06 UTC (permalink / raw)
  To: linux-arm-kernel

Add support for Phytec phyFLEX-i.MX6 board

Signed-off-by: Christian Hemp <c.hemp@phytec.de>
---
 arch/arm/boot/dts/Makefile                 |    1 +
 arch/arm/boot/dts/imx6q-phytec-phyflex.dts |   76 ++++++++++++++++++++++++++++
 2 files changed, 77 insertions(+)
 create mode 100644 arch/arm/boot/dts/imx6q-phytec-phyflex.dts

diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
index 4c58951..6ffdaa1 100644
--- a/arch/arm/boot/dts/Makefile
+++ b/arch/arm/boot/dts/Makefile
@@ -118,6 +118,7 @@ dtb-$(CONFIG_ARCH_MXC) += \
 	imx6dl-sabresd.dtb \
 	imx6dl-wandboard.dtb \
 	imx6q-arm2.dtb \
+	imx6q-phytec-phyflex.dtb \
 	imx6q-sabreauto.dtb \
 	imx6q-sabrelite.dtb \
 	imx6q-sabresd.dtb \
diff --git a/arch/arm/boot/dts/imx6q-phytec-phyflex.dts b/arch/arm/boot/dts/imx6q-phytec-phyflex.dts
new file mode 100644
index 0000000..9690691
--- /dev/null
+++ b/arch/arm/boot/dts/imx6q-phytec-phyflex.dts
@@ -0,0 +1,76 @@
+/*
+ * Copyright 2013 Christian Hemp, Phytec Messtechnik GmbH
+ *
+ * The code contained herein is licensed under the GNU General Public
+ * License. You may obtain a copy of the GNU General Public License
+ * Version 2 or later at the following locations:
+ *
+ * http://www.opensource.org/licenses/gpl-license.html
+ * http://www.gnu.org/copyleft/gpl.html
+ */
+
+/dts-v1/;
+#include "imx6q.dtsi"
+
+/ {
+	model = "Phytec phyFLEX-i.MX6";
+	compatible = "phytec,phyflex-imx6", "fsl,imx6q";
+
+	memory {
+		reg = <0x10000000 0x80000000>;
+	};
+};
+
+&iomuxc {
+	pinctrl-names = "default";
+	pinctrl-0 = <&pinctrl_hog>;
+
+	hog {
+                pinctrl_hog: hoggrp {
+                        fsl,pins = <
+				MX6Q_PAD_EIM_D23__GPIO3_IO23    0x80000000
+			>;
+		};
+	};
+
+	phyflex {
+		pinctrl_usdhc3_phyflex: usdhc3grp-phyflex {
+			fsl,pins = <
+				MX6Q_PAD_ENET_RXD0__GPIO1_IO27  0x80000000
+				MX6Q_PAD_ENET_TXD1__GPIO1_IO29  0x80000000
+			>;
+		};
+	};
+};
+
+&fec {
+	pinctrl-names = "default";
+	pinctrl-0 = <&pinctrl_enet_3>;
+	phy-mode = "rgmii";
+	phy-reset-gpios = <&gpio3 23 0>;
+	status = "okay";
+};
+
+&uart4 {
+	pinctrl-names = "default";
+	pinctrl-0 = <&pinctrl_uart4_1>;
+	status = "okay";
+};
+
+&usdhc2 {
+	pinctrl-names = "default";
+	pinctrl-0 = <&pinctrl_usdhc2_2>;
+	cd-gpios = <&gpio1 4 0>;
+	wp-gpios = <&gpio1 2 0>;
+	status = "okay";
+};
+
+&usdhc3 {
+        pinctrl-names = "default";
+        pinctrl-0 = <&pinctrl_usdhc3_2
+		     &pinctrl_usdhc3_phyflex>;
+        cd-gpios = <&gpio1 27 0>;
+        wp-gpios = <&gpio1 29 0>;
+        status = "okay";
+};
+
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 1/2] ARM: dts: imx6q: Add pinctrl for usdhc2 and enet
  2013-05-29 21:06 ` [PATCH 1/2] ARM: dts: imx6q: Add pinctrl for usdhc2 and enet Christian Hemp
@ 2013-05-30  6:25   ` Shawn Guo
  0 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2013-05-30  6:25 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, May 29, 2013 at 11:06:48PM +0200, Christian Hemp wrote:
> Add a group to the usdhc2 and enet pinctrl.
> 
> Signed-off-by: Christian Hemp <c.hemp@phytec.de>
> ---
>  arch/arm/boot/dts/imx6q.dtsi |   33 +++++++++++++++++++++++++++++++++
>  1 file changed, 33 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi
> index ed11bcf..c0c8b7b 100644
> --- a/arch/arm/boot/dts/imx6q.dtsi
> +++ b/arch/arm/boot/dts/imx6q.dtsi
> @@ -157,6 +157,28 @@
>  							MX6Q_PAD_RGMII_RX_CTL__RGMII_RX_CTL 0x1b0b0
>  						>;
>  					};
> +
> +					pinctrl_enet_3: enetgrp-3 {
> +						fsl,pins = <
> +							MX6Q_PAD_ENET_MDIO__ENET_MDIO       0x1b0b0
> +							MX6Q_PAD_ENET_MDC__ENET_MDC         0x1b0b0
> +							MX6Q_PAD_RGMII_TXC__RGMII_TXC       0x1b0b0
> +							MX6Q_PAD_RGMII_TD0__RGMII_TD0       0x1b0b0
> +							MX6Q_PAD_RGMII_TD1__RGMII_TD1       0x1b0b0
> +							MX6Q_PAD_RGMII_TD2__RGMII_TD2       0x1b0b0
> +							MX6Q_PAD_RGMII_TD3__RGMII_TD3       0x1b0b0
> +							MX6Q_PAD_RGMII_TX_CTL__RGMII_TX_CTL 0x1b0b0
> +							MX6Q_PAD_ENET_REF_CLK__ENET_TX_CLK  0x1b0b0
> +							MX6Q_PAD_RGMII_RXC__RGMII_RXC       0x1b0b0
> +							MX6Q_PAD_RGMII_RD0__RGMII_RD0       0x1b0b0
> +							MX6Q_PAD_RGMII_RD1__RGMII_RD1       0x1b0b0
> +							MX6Q_PAD_RGMII_RD2__RGMII_RD2       0x1b0b0
> +							MX6Q_PAD_RGMII_RD3__RGMII_RD3       0x1b0b0
> +							MX6Q_PAD_RGMII_RX_CTL__RGMII_RX_CTL 0x1b0b0
> +							MX6Q_PAD_ENET_CRS_DV__SPDIF_EXT_CLK 0x1b0b0

Why do you need to set up SPDIF_EXT_CLK in ENET pin group?

Shawn

> +							MX6Q_PAD_ENET_TX_EN__ENET_TX_EN     0x1b0b0
> +						>;
> +					};
>  				};
>  
>  				gpmi-nand {
> @@ -266,6 +288,17 @@
>  							MX6Q_PAD_NANDF_D7__SD2_DATA7 0x17059
>  						>;
>  					};
> +
> +					pinctrl_usdhc2_2: usdhc2grp-2 {
> +						fsl,pins = <
> +							MX6Q_PAD_SD2_CMD__SD2_CMD    0x17059
> +							MX6Q_PAD_SD2_CLK__SD2_CLK    0x10059
> +							MX6Q_PAD_SD2_DAT0__SD2_DATA0 0x17059
> +							MX6Q_PAD_SD2_DAT1__SD2_DATA1 0x17059
> +							MX6Q_PAD_SD2_DAT2__SD2_DATA2 0x17059
> +							MX6Q_PAD_SD2_DAT3__SD2_DATA3 0x17059
> +						>;
> +					};
>  				};
>  
>  				usdhc3 {
> -- 
> 1.7.9.5
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 2/2] ARM: dts: Phytec phyFLEX-i.MX6 support
  2013-05-29 21:06 ` [PATCH 2/2] ARM: dts: Phytec phyFLEX-i.MX6 support Christian Hemp
@ 2013-05-30  6:31   ` Shawn Guo
  2013-05-31  9:56     ` Christian Hemp
  0 siblings, 1 reply; 6+ messages in thread
From: Shawn Guo @ 2013-05-30  6:31 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, May 29, 2013 at 11:06:49PM +0200, Christian Hemp wrote:
> Add support for Phytec phyFLEX-i.MX6 board

It's a board supporting all i.MX6 family?  Can we name it using SoC than
family name?

> 
> Signed-off-by: Christian Hemp <c.hemp@phytec.de>
> ---
>  arch/arm/boot/dts/Makefile                 |    1 +
>  arch/arm/boot/dts/imx6q-phytec-phyflex.dts |   76 ++++++++++++++++++++++++++++
>  2 files changed, 77 insertions(+)
>  create mode 100644 arch/arm/boot/dts/imx6q-phytec-phyflex.dts
> 
> diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> index 4c58951..6ffdaa1 100644
> --- a/arch/arm/boot/dts/Makefile
> +++ b/arch/arm/boot/dts/Makefile
> @@ -118,6 +118,7 @@ dtb-$(CONFIG_ARCH_MXC) += \
>  	imx6dl-sabresd.dtb \
>  	imx6dl-wandboard.dtb \
>  	imx6q-arm2.dtb \
> +	imx6q-phytec-phyflex.dtb \
>  	imx6q-sabreauto.dtb \
>  	imx6q-sabrelite.dtb \
>  	imx6q-sabresd.dtb \
> diff --git a/arch/arm/boot/dts/imx6q-phytec-phyflex.dts b/arch/arm/boot/dts/imx6q-phytec-phyflex.dts
> new file mode 100644
> index 0000000..9690691
> --- /dev/null
> +++ b/arch/arm/boot/dts/imx6q-phytec-phyflex.dts
> @@ -0,0 +1,76 @@
> +/*
> + * Copyright 2013 Christian Hemp, Phytec Messtechnik GmbH
> + *
> + * The code contained herein is licensed under the GNU General Public
> + * License. You may obtain a copy of the GNU General Public License
> + * Version 2 or later at the following locations:
> + *
> + * http://www.opensource.org/licenses/gpl-license.html
> + * http://www.gnu.org/copyleft/gpl.html
> + */
> +
> +/dts-v1/;
> +#include "imx6q.dtsi"
> +
> +/ {
> +	model = "Phytec phyFLEX-i.MX6";
> +	compatible = "phytec,phyflex-imx6", "fsl,imx6q";

ditto

Shawn

> +
> +	memory {
> +		reg = <0x10000000 0x80000000>;
> +	};
> +};
> +
> +&iomuxc {
> +	pinctrl-names = "default";
> +	pinctrl-0 = <&pinctrl_hog>;
> +
> +	hog {
> +                pinctrl_hog: hoggrp {
> +                        fsl,pins = <
> +				MX6Q_PAD_EIM_D23__GPIO3_IO23    0x80000000
> +			>;
> +		};
> +	};
> +
> +	phyflex {
> +		pinctrl_usdhc3_phyflex: usdhc3grp-phyflex {
> +			fsl,pins = <
> +				MX6Q_PAD_ENET_RXD0__GPIO1_IO27  0x80000000
> +				MX6Q_PAD_ENET_TXD1__GPIO1_IO29  0x80000000
> +			>;
> +		};
> +	};
> +};
> +
> +&fec {
> +	pinctrl-names = "default";
> +	pinctrl-0 = <&pinctrl_enet_3>;
> +	phy-mode = "rgmii";
> +	phy-reset-gpios = <&gpio3 23 0>;
> +	status = "okay";
> +};
> +
> +&uart4 {
> +	pinctrl-names = "default";
> +	pinctrl-0 = <&pinctrl_uart4_1>;
> +	status = "okay";
> +};
> +
> +&usdhc2 {
> +	pinctrl-names = "default";
> +	pinctrl-0 = <&pinctrl_usdhc2_2>;
> +	cd-gpios = <&gpio1 4 0>;
> +	wp-gpios = <&gpio1 2 0>;
> +	status = "okay";
> +};
> +
> +&usdhc3 {
> +        pinctrl-names = "default";
> +        pinctrl-0 = <&pinctrl_usdhc3_2
> +		     &pinctrl_usdhc3_phyflex>;
> +        cd-gpios = <&gpio1 27 0>;
> +        wp-gpios = <&gpio1 29 0>;
> +        status = "okay";
> +};
> +
> -- 
> 1.7.9.5
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 2/2] ARM: dts: Phytec phyFLEX-i.MX6 support
  2013-05-30  6:31   ` Shawn Guo
@ 2013-05-31  9:56     ` Christian Hemp
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Hemp @ 2013-05-31  9:56 UTC (permalink / raw)
  To: linux-arm-kernel

Hello Shawn,

Am Donnerstag, den 30.05.2013, 14:31 +0800 schrieb Shawn Guo:
> On Wed, May 29, 2013 at 11:06:49PM +0200, Christian Hemp wrote:
> > Add support for Phytec phyFLEX-i.MX6 board
> 
> It's a board supporting all i.MX6 family?

At the moment only i.MX6q but this will change.

>   Can we name it using SoC than
> family name?

Okay. 


Christian

> > 
> > Signed-off-by: Christian Hemp <c.hemp@phytec.de>
> > ---
> >  arch/arm/boot/dts/Makefile                 |    1 +
> >  arch/arm/boot/dts/imx6q-phytec-phyflex.dts |   76 ++++++++++++++++++++++++++++
> >  2 files changed, 77 insertions(+)
> >  create mode 100644 arch/arm/boot/dts/imx6q-phytec-phyflex.dts
> > 
> > diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> > index 4c58951..6ffdaa1 100644
> > --- a/arch/arm/boot/dts/Makefile
> > +++ b/arch/arm/boot/dts/Makefile
> > @@ -118,6 +118,7 @@ dtb-$(CONFIG_ARCH_MXC) += \
> >  	imx6dl-sabresd.dtb \
> >  	imx6dl-wandboard.dtb \
> >  	imx6q-arm2.dtb \
> > +	imx6q-phytec-phyflex.dtb \
> >  	imx6q-sabreauto.dtb \
> >  	imx6q-sabrelite.dtb \
> >  	imx6q-sabresd.dtb \
> > diff --git a/arch/arm/boot/dts/imx6q-phytec-phyflex.dts b/arch/arm/boot/dts/imx6q-phytec-phyflex.dts
> > new file mode 100644
> > index 0000000..9690691
> > --- /dev/null
> > +++ b/arch/arm/boot/dts/imx6q-phytec-phyflex.dts
> > @@ -0,0 +1,76 @@
> > +/*
> > + * Copyright 2013 Christian Hemp, Phytec Messtechnik GmbH
> > + *
> > + * The code contained herein is licensed under the GNU General Public
> > + * License. You may obtain a copy of the GNU General Public License
> > + * Version 2 or later at the following locations:
> > + *
> > + * http://www.opensource.org/licenses/gpl-license.html
> > + * http://www.gnu.org/copyleft/gpl.html
> > + */
> > +
> > +/dts-v1/;
> > +#include "imx6q.dtsi"
> > +
> > +/ {
> > +	model = "Phytec phyFLEX-i.MX6";
> > +	compatible = "phytec,phyflex-imx6", "fsl,imx6q";
> 
> ditto
> 
> Shawn
> 
> > +
> > +	memory {
> > +		reg = <0x10000000 0x80000000>;
> > +	};
> > +};
> > +
> > +&iomuxc {
> > +	pinctrl-names = "default";
> > +	pinctrl-0 = <&pinctrl_hog>;
> > +
> > +	hog {
> > +                pinctrl_hog: hoggrp {
> > +                        fsl,pins = <
> > +				MX6Q_PAD_EIM_D23__GPIO3_IO23    0x80000000
> > +			>;
> > +		};
> > +	};
> > +
> > +	phyflex {
> > +		pinctrl_usdhc3_phyflex: usdhc3grp-phyflex {
> > +			fsl,pins = <
> > +				MX6Q_PAD_ENET_RXD0__GPIO1_IO27  0x80000000
> > +				MX6Q_PAD_ENET_TXD1__GPIO1_IO29  0x80000000
> > +			>;
> > +		};
> > +	};
> > +};
> > +
> > +&fec {
> > +	pinctrl-names = "default";
> > +	pinctrl-0 = <&pinctrl_enet_3>;
> > +	phy-mode = "rgmii";
> > +	phy-reset-gpios = <&gpio3 23 0>;
> > +	status = "okay";
> > +};
> > +
> > +&uart4 {
> > +	pinctrl-names = "default";
> > +	pinctrl-0 = <&pinctrl_uart4_1>;
> > +	status = "okay";
> > +};
> > +
> > +&usdhc2 {
> > +	pinctrl-names = "default";
> > +	pinctrl-0 = <&pinctrl_usdhc2_2>;
> > +	cd-gpios = <&gpio1 4 0>;
> > +	wp-gpios = <&gpio1 2 0>;
> > +	status = "okay";
> > +};
> > +
> > +&usdhc3 {
> > +        pinctrl-names = "default";
> > +        pinctrl-0 = <&pinctrl_usdhc3_2
> > +		     &pinctrl_usdhc3_phyflex>;
> > +        cd-gpios = <&gpio1 27 0>;
> > +        wp-gpios = <&gpio1 29 0>;
> > +        status = "okay";
> > +};
> > +
> > -- 
> > 1.7.9.5
> > 
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-05-31  9:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-29 21:06 [PATCH 0/2] Add Phytec phyFLEX-i.MX6 board Christian Hemp
2013-05-29 21:06 ` [PATCH 1/2] ARM: dts: imx6q: Add pinctrl for usdhc2 and enet Christian Hemp
2013-05-30  6:25   ` Shawn Guo
2013-05-29 21:06 ` [PATCH 2/2] ARM: dts: Phytec phyFLEX-i.MX6 support Christian Hemp
2013-05-30  6:31   ` Shawn Guo
2013-05-31  9:56     ` Christian Hemp

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.