linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] ARM: dts: imx27-3ds: Rename it to imx27-pdk
@ 2012-12-25 11:10 Fabio Estevam
  2012-12-25 11:10 ` [PATCH v2 2/2] ARM: boot: dts: Add an entry for imx27-pdk.dtb Fabio Estevam
  2012-12-25 12:05 ` [PATCH v2 1/2] ARM: dts: imx27-3ds: Rename it to imx27-pdk Shawn Guo
  0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2012-12-25 11:10 UTC (permalink / raw)
  To: linux-arm-kernel

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

imx27-pdk is the name found on Freescale website, so use it instead of 3ds.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v1:
- Use 'fsl' instead of 'freescale' in the compatible field.

 arch/arm/boot/dts/{imx27-3ds.dts => imx27-pdk.dts} |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename arch/arm/boot/dts/{imx27-3ds.dts => imx27-pdk.dts} (85%)

diff --git a/arch/arm/boot/dts/imx27-3ds.dts b/arch/arm/boot/dts/imx27-pdk.dts
similarity index 85%
rename from arch/arm/boot/dts/imx27-3ds.dts
rename to arch/arm/boot/dts/imx27-pdk.dts
index fa04c7b..860b6f2 100644
--- a/arch/arm/boot/dts/imx27-3ds.dts
+++ b/arch/arm/boot/dts/imx27-pdk.dts
@@ -13,8 +13,8 @@
 /include/ "imx27.dtsi"
 
 / {
-	model = "mx27_3ds";
-	compatible = "freescale,imx27-3ds", "fsl,imx27";
+	model = "Freescale i.MX27 Product Development Kit";
+	compatible = "fsl,imx27-pdk", "fsl,imx27";
 
 	memory {
 		reg = <0x0 0x0>;
-- 
1.7.9.5

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

* [PATCH v2 2/2] ARM: boot: dts: Add an entry for imx27-pdk.dtb
  2012-12-25 11:10 [PATCH v2 1/2] ARM: dts: imx27-3ds: Rename it to imx27-pdk Fabio Estevam
@ 2012-12-25 11:10 ` Fabio Estevam
  2012-12-25 12:05 ` [PATCH v2 1/2] ARM: dts: imx27-3ds: Rename it to imx27-pdk Shawn Guo
  1 sibling, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2012-12-25 11:10 UTC (permalink / raw)
  To: linux-arm-kernel

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

Add an entry for imx27-pdk.dtb, so that it can be generated by default.

Also, add an entry into Documentation/devicetree/bindings/arm/fsl.txt.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v2:
- No changes
 Documentation/devicetree/bindings/arm/fsl.txt |    4 ++++
 arch/arm/boot/dts/Makefile                    |    3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/arm/fsl.txt b/Documentation/devicetree/bindings/arm/fsl.txt
index f798187..4c25c98 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.MX27 Product Development Kit
+Required root node properties:
+    - compatible = "fsl,imx27-pdk", "fsl,imx27";
+
 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 d077ef8..a48b511 100644
--- a/arch/arm/boot/dts/Makefile
+++ b/arch/arm/boot/dts/Makefile
@@ -80,7 +80,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) += imx27-pdk.dtb \
+	imx51-babbage.dtb \
 	imx53-ard.dtb \
 	imx53-evk.dtb \
 	imx53-qsb.dtb \
-- 
1.7.9.5

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

* [PATCH v2 1/2] ARM: dts: imx27-3ds: Rename it to imx27-pdk
  2012-12-25 11:10 [PATCH v2 1/2] ARM: dts: imx27-3ds: Rename it to imx27-pdk Fabio Estevam
  2012-12-25 11:10 ` [PATCH v2 2/2] ARM: boot: dts: Add an entry for imx27-pdk.dtb Fabio Estevam
@ 2012-12-25 12:05 ` Shawn Guo
  2012-12-31  2:38   ` Shawn Guo
  1 sibling, 1 reply; 4+ messages in thread
From: Shawn Guo @ 2012-12-25 12:05 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Dec 25, 2012 at 09:10:51AM -0200, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> imx27-pdk is the name found on Freescale website, so use it instead of 3ds.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
> Changes since v1:
> - Use 'fsl' instead of 'freescale' in the compatible field.

I assume Sascha will pick them up, so for both:

Acked-by: Shawn Guo <shawn.guo@linaro.org>

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

* [PATCH v2 1/2] ARM: dts: imx27-3ds: Rename it to imx27-pdk
  2012-12-25 12:05 ` [PATCH v2 1/2] ARM: dts: imx27-3ds: Rename it to imx27-pdk Shawn Guo
@ 2012-12-31  2:38   ` Shawn Guo
  0 siblings, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2012-12-31  2:38 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Dec 25, 2012 at 08:05:38PM +0800, Shawn Guo wrote:
> On Tue, Dec 25, 2012 at 09:10:51AM -0200, Fabio Estevam wrote:
> > From: Fabio Estevam <fabio.estevam@freescale.com>
> > 
> > imx27-pdk is the name found on Freescale website, so use it instead of 3ds.
> > 
> > Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> > ---
> > Changes since v1:
> > - Use 'fsl' instead of 'freescale' in the compatible field.
> 
> I assume Sascha will pick them up, so for both:
> 
I just picked them up to ease the global imx dts cleanup that I'm doing
right now.

Shawn

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

end of thread, other threads:[~2012-12-31  2:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-25 11:10 [PATCH v2 1/2] ARM: dts: imx27-3ds: Rename it to imx27-pdk Fabio Estevam
2012-12-25 11:10 ` [PATCH v2 2/2] ARM: boot: dts: Add an entry for imx27-pdk.dtb Fabio Estevam
2012-12-25 12:05 ` [PATCH v2 1/2] ARM: dts: imx27-3ds: Rename it to imx27-pdk Shawn Guo
2012-12-31  2:38   ` 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).