linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: mx25pdk: Add device tree support
@ 2012-12-11 21:47 Fabio Estevam
  2012-12-11 21:47 ` [PATCH 2/2] ARM: imx_v4_v5_defconfig: Let MACH_IMX25_DT be built by default Fabio Estevam
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabio Estevam @ 2012-12-11 21:47 UTC (permalink / raw)
  To: linux-arm-kernel

From: Fabio Estevam <fabio.estevam@freescale.com>

Add basic device tree support for mx25pdk board.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 Documentation/devicetree/bindings/arm/fsl.txt |    4 +++
 arch/arm/boot/dts/Makefile                    |    3 +-
 arch/arm/boot/dts/imx25-pdk.dts               |   44 +++++++++++++++++++++++++
 3 files changed, 50 insertions(+), 1 deletion(-)
 create mode 100644 arch/arm/boot/dts/imx25-pdk.dts

diff --git a/Documentation/devicetree/bindings/arm/fsl.txt b/Documentation/devicetree/bindings/arm/fsl.txt
index f798187..b98530c 100644
--- a/Documentation/devicetree/bindings/arm/fsl.txt
+++ b/Documentation/devicetree/bindings/arm/fsl.txt
@@ -5,6 +5,10 @@ i.MX23 Evaluation Kit
 Required root node properties:
     - compatible = "fsl,imx23-evk", "fsl,imx23";
 
+i.MX25 Product Evaluation Kit
+Required root node properties:
+    - compatible = "fsl,imx25-pdk", "fsl,imx25";
+
 i.MX28 Evaluation Kit
 Required root node properties:
     - compatible = "fsl,imx28-evk", "fsl,imx28";
diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
index 2beab0c..b2df1e7 100644
--- a/arch/arm/boot/dts/Makefile
+++ b/arch/arm/boot/dts/Makefile
@@ -79,7 +79,8 @@ dtb-$(CONFIG_ARCH_MVEBU) += armada-370-db.dtb \
 	armada-370-mirabox.dtb \
 	armada-xp-db.dtb \
 	armada-xp-openblocks-ax3-4.dtb
-dtb-$(CONFIG_ARCH_MXC) += imx51-babbage.dtb \
+dtb-$(CONFIG_ARCH_MXC) += imx25-pdk.dtb \
+	imx51-babbage.dtb \
 	imx53-ard.dtb \
 	imx53-evk.dtb \
 	imx53-qsb.dtb \
diff --git a/arch/arm/boot/dts/imx25-pdk.dts b/arch/arm/boot/dts/imx25-pdk.dts
new file mode 100644
index 0000000..bcdd393
--- /dev/null
+++ b/arch/arm/boot/dts/imx25-pdk.dts
@@ -0,0 +1,44 @@
+/*
+ * Copyright 2012 Freescale Semiconductor, Inc.
+ *
+ * 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/ "imx25.dtsi"
+
+/ {
+	model = "Freescale i.MX25 Product Development Kit";
+	compatible = "freescale,imx25pdk", "fsl,imx25";
+
+	memory {
+		reg = <0x80000000 0x4000000>;
+	};
+
+	soc {
+		aips at 43f00000 {
+			uart1: serial at 43f90000 {
+				status = "okay";
+			};
+		};
+
+		spba at 50000000 {
+			fec: ethernet at 50038000 {
+				status = "okay";
+				phy-mode = "rmii";
+			};
+		};
+
+		emi at 80000000 {
+			nand at bb000000 {
+				nand-on-flash-bbt;
+				status = "okay";
+			};
+		};
+	};
+};
-- 
1.7.9.5

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

* [PATCH 2/2] ARM: imx_v4_v5_defconfig: Let MACH_IMX25_DT be built by default
  2012-12-11 21:47 [PATCH 1/2] ARM: mx25pdk: Add device tree support Fabio Estevam
@ 2012-12-11 21:47 ` Fabio Estevam
  2013-01-02 12:32 ` [PATCH 1/2] ARM: mx25pdk: Add device tree support Fabio Estevam
  2013-01-03  7:46 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2012-12-11 21:47 UTC (permalink / raw)
  To: linux-arm-kernel

From: Fabio Estevam <fabio.estevam@freescale.com>

Let MACH_IMX25_DT be built by default.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 arch/arm/configs/imx_v4_v5_defconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/imx_v4_v5_defconfig b/arch/arm/configs/imx_v4_v5_defconfig
index ebbfb27..e706a76 100644
--- a/arch/arm/configs/imx_v4_v5_defconfig
+++ b/arch/arm/configs/imx_v4_v5_defconfig
@@ -27,6 +27,7 @@ CONFIG_MACH_APF9328=y
 CONFIG_MACH_MX21ADS=y
 CONFIG_MACH_MX25_3DS=y
 CONFIG_MACH_EUKREA_CPUIMX25SD=y
+CONFIG_MACH_IMX25_DT=y
 CONFIG_MACH_MX27ADS=y
 CONFIG_MACH_PCM038=y
 CONFIG_MACH_CPUIMX27=y
-- 
1.7.9.5

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

* [PATCH 1/2] ARM: mx25pdk: Add device tree support
  2012-12-11 21:47 [PATCH 1/2] ARM: mx25pdk: Add device tree support Fabio Estevam
  2012-12-11 21:47 ` [PATCH 2/2] ARM: imx_v4_v5_defconfig: Let MACH_IMX25_DT be built by default Fabio Estevam
@ 2013-01-02 12:32 ` Fabio Estevam
  2013-01-03  7:46 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2013-01-02 12:32 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Sascha,

On Tue, Dec 11, 2012 at 7:47 PM, Fabio Estevam <festevam@gmail.com> wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
>
> Add basic device tree support for mx25pdk board.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Any comments about this one?

Regards,

Fabio Estevam

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

* [PATCH 1/2] ARM: mx25pdk: Add device tree support
  2012-12-11 21:47 [PATCH 1/2] ARM: mx25pdk: Add device tree support Fabio Estevam
  2012-12-11 21:47 ` [PATCH 2/2] ARM: imx_v4_v5_defconfig: Let MACH_IMX25_DT be built by default Fabio Estevam
  2013-01-02 12:32 ` [PATCH 1/2] ARM: mx25pdk: Add device tree support Fabio Estevam
@ 2013-01-03  7:46 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2013-01-03  7:46 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Dec 11, 2012 at 07:47:43PM -0200, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> Add basic device tree support for mx25pdk board.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  Documentation/devicetree/bindings/arm/fsl.txt |    4 +++
>  arch/arm/boot/dts/Makefile                    |    3 +-
>  arch/arm/boot/dts/imx25-pdk.dts               |   44 +++++++++++++++++++++++++

Please follow how patch "ARM: dts: imx: use nodes label in board dts"
does to create board level dts.  To rebase your patch on my imx/dt
branch will be reasonable.

>  3 files changed, 50 insertions(+), 1 deletion(-)
>  create mode 100644 arch/arm/boot/dts/imx25-pdk.dts
> 
> diff --git a/Documentation/devicetree/bindings/arm/fsl.txt b/Documentation/devicetree/bindings/arm/fsl.txt
> index f798187..b98530c 100644
> --- a/Documentation/devicetree/bindings/arm/fsl.txt
> +++ b/Documentation/devicetree/bindings/arm/fsl.txt
> @@ -5,6 +5,10 @@ i.MX23 Evaluation Kit
>  Required root node properties:
>      - compatible = "fsl,imx23-evk", "fsl,imx23";
>  
> +i.MX25 Product Evaluation Kit
> +Required root node properties:
> +    - compatible = "fsl,imx25-pdk", "fsl,imx25";
> +
>  i.MX28 Evaluation Kit
>  Required root node properties:
>      - compatible = "fsl,imx28-evk", "fsl,imx28";
> diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> index 2beab0c..b2df1e7 100644
> --- a/arch/arm/boot/dts/Makefile
> +++ b/arch/arm/boot/dts/Makefile
> @@ -79,7 +79,8 @@ dtb-$(CONFIG_ARCH_MVEBU) += armada-370-db.dtb \
>  	armada-370-mirabox.dtb \
>  	armada-xp-db.dtb \
>  	armada-xp-openblocks-ax3-4.dtb
> -dtb-$(CONFIG_ARCH_MXC) += imx51-babbage.dtb \
> +dtb-$(CONFIG_ARCH_MXC) += imx25-pdk.dtb \
> +	imx51-babbage.dtb \
>  	imx53-ard.dtb \
>  	imx53-evk.dtb \
>  	imx53-qsb.dtb \
> diff --git a/arch/arm/boot/dts/imx25-pdk.dts b/arch/arm/boot/dts/imx25-pdk.dts
> new file mode 100644
> index 0000000..bcdd393
> --- /dev/null
> +++ b/arch/arm/boot/dts/imx25-pdk.dts
> @@ -0,0 +1,44 @@
> +/*
> + * Copyright 2012 Freescale Semiconductor, Inc.
> + *
> + * 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/ "imx25.dtsi"
> +
> +/ {
> +	model = "Freescale i.MX25 Product Development Kit";
> +	compatible = "freescale,imx25pdk", "fsl,imx25";

s/freescale,imx25pdk/fsl,imx25-pdk

> +
> +	memory {
> +		reg = <0x80000000 0x4000000>;
> +	};
> +
> +	soc {
> +		aips at 43f00000 {
> +			uart1: serial at 43f90000 {
> +				status = "okay";
> +			};
> +		};
> +
> +		spba at 50000000 {
> +			fec: ethernet at 50038000 {
> +				status = "okay";

Let "status" be the last one.

Shawn

> +				phy-mode = "rmii";
> +			};
> +		};
> +
> +		emi at 80000000 {
> +			nand at bb000000 {
> +				nand-on-flash-bbt;
> +				status = "okay";
> +			};
> +		};
> +	};
> +};
> -- 
> 1.7.9.5
> 

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

end of thread, other threads:[~2013-01-03  7:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-11 21:47 [PATCH 1/2] ARM: mx25pdk: Add device tree support Fabio Estevam
2012-12-11 21:47 ` [PATCH 2/2] ARM: imx_v4_v5_defconfig: Let MACH_IMX25_DT be built by default Fabio Estevam
2013-01-02 12:32 ` [PATCH 1/2] ARM: mx25pdk: Add device tree support Fabio Estevam
2013-01-03  7:46 ` Shawn Guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).