devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] ARM: dts: Add NFC support for i.MX27 Phytec PCM038 module
@ 2013-04-07 15:29 Alexander Shiyan
       [not found] ` <1365348554-24345-1-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Alexander Shiyan @ 2013-04-07 15:29 UTC (permalink / raw)
  To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
  Cc: Alexander Shiyan, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
	Rob Herring, Sascha Hauer

Added NFC node to imx27-phytec-phycore DT file.

Signed-off-by: Alexander Shiyan <shc_work-JGs/UdohzUI@public.gmane.org>
---
 arch/arm/boot/dts/imx27-phytec-phycore.dtsp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm/boot/dts/imx27-phytec-phycore.dtsp b/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
index 924097a..7228153 100644
--- a/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
+++ b/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
@@ -71,3 +71,9 @@
 		#size-cells = <1>;
 	};
 };
+
+&nfc {
+	nand-bus-width = <8>;
+	nand-ecc-mode = "hw";
+	status = "okay";
+};
-- 
1.8.1.5

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

* [PATCH 2/3] ARM: dts: Add SPI support for i.MX27 Phytec PCM038 module
       [not found] ` <1365348554-24345-1-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
@ 2013-04-07 15:29   ` Alexander Shiyan
       [not found]     ` <1365348554-24345-2-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
  2013-04-07 15:29   ` [PATCH 3/3] ARM: dts: Add missing imx27-phytec-phycore dtb target Alexander Shiyan
  2013-04-08  6:33   ` [PATCH 1/3] ARM: dts: Add NFC support for i.MX27 Phytec PCM038 module Shawn Guo
  2 siblings, 1 reply; 6+ messages in thread
From: Alexander Shiyan @ 2013-04-07 15:29 UTC (permalink / raw)
  To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
  Cc: Alexander Shiyan, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
	Rob Herring, Sascha Hauer

Added SPI node to imx27-phytec-phycore DT file.

Signed-off-by: Alexander Shiyan <shc_work-JGs/UdohzUI@public.gmane.org>
---
 arch/arm/boot/dts/imx27-phytec-phycore.dtsp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm/boot/dts/imx27-phytec-phycore.dtsp b/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
index 7228153..354dc77 100644
--- a/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
+++ b/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
@@ -77,3 +77,9 @@
 	nand-ecc-mode = "hw";
 	status = "okay";
 };
+
+&cspi1 {
+	fsl,spi-num-chipselects = <1>;
+	cs-gpios = <&gpio4 28 0>;
+	status = "okay";
+};
-- 
1.8.1.5

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

* [PATCH 3/3] ARM: dts: Add missing imx27-phytec-phycore dtb target
       [not found] ` <1365348554-24345-1-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
  2013-04-07 15:29   ` [PATCH 2/3] ARM: dts: Add SPI " Alexander Shiyan
@ 2013-04-07 15:29   ` Alexander Shiyan
       [not found]     ` <1365348554-24345-3-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
  2013-04-08  6:33   ` [PATCH 1/3] ARM: dts: Add NFC support for i.MX27 Phytec PCM038 module Shawn Guo
  2 siblings, 1 reply; 6+ messages in thread
From: Alexander Shiyan @ 2013-04-07 15:29 UTC (permalink / raw)
  To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
  Cc: Alexander Shiyan, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
	Rob Herring, Sascha Hauer

The patch adds missing imx27-phytec-phycore dtb target into Makefile.

Signed-off-by: Alexander Shiyan <shc_work-JGs/UdohzUI@public.gmane.org>
---
 arch/arm/boot/dts/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
index 35976f0..a06d9f1 100644
--- a/arch/arm/boot/dts/Makefile
+++ b/arch/arm/boot/dts/Makefile
@@ -98,6 +98,7 @@ dtb-$(CONFIG_ARCH_MXC) += \
 	imx27-apf27.dtb \
 	imx27-apf27dev.dtb \
 	imx27-pdk.dtb \
+	imx27-phytec-phycore.dtb \
 	imx31-bug.dtb \
 	imx51-apf51.dtb \
 	imx51-apf51dev.dtb \
-- 
1.8.1.5

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

* Re: [PATCH 1/3] ARM: dts: Add NFC support for i.MX27 Phytec PCM038 module
       [not found] ` <1365348554-24345-1-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
  2013-04-07 15:29   ` [PATCH 2/3] ARM: dts: Add SPI " Alexander Shiyan
  2013-04-07 15:29   ` [PATCH 3/3] ARM: dts: Add missing imx27-phytec-phycore dtb target Alexander Shiyan
@ 2013-04-08  6:33   ` Shawn Guo
  2 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2013-04-08  6:33 UTC (permalink / raw)
  To: Alexander Shiyan
  Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, Sascha Hauer,
	Rob Herring, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Sun, Apr 07, 2013 at 07:29:12PM +0400, Alexander Shiyan wrote:
> Added NFC node to imx27-phytec-phycore DT file.
> 
> Signed-off-by: Alexander Shiyan <shc_work-JGs/UdohzUI@public.gmane.org>

Applied, thanks.

> ---
>  arch/arm/boot/dts/imx27-phytec-phycore.dtsp | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/imx27-phytec-phycore.dtsp b/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
> index 924097a..7228153 100644
> --- a/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
> +++ b/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
> @@ -71,3 +71,9 @@
>  		#size-cells = <1>;
>  	};
>  };
> +
> +&nfc {
> +	nand-bus-width = <8>;
> +	nand-ecc-mode = "hw";
> +	status = "okay";
> +};
> -- 
> 1.8.1.5
> 
> _______________________________________________
> devicetree-discuss mailing list
> devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
> https://lists.ozlabs.org/listinfo/devicetree-discuss

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

* Re: [PATCH 2/3] ARM: dts: Add SPI support for i.MX27 Phytec PCM038 module
       [not found]     ` <1365348554-24345-2-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
@ 2013-04-08  6:35       ` Shawn Guo
  0 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2013-04-08  6:35 UTC (permalink / raw)
  To: Alexander Shiyan
  Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, Sascha Hauer,
	Rob Herring, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Sun, Apr 07, 2013 at 07:29:13PM +0400, Alexander Shiyan wrote:
> Added SPI node to imx27-phytec-phycore DT file.
> 
> Signed-off-by: Alexander Shiyan <shc_work-JGs/UdohzUI@public.gmane.org>
> ---
>  arch/arm/boot/dts/imx27-phytec-phycore.dtsp | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/imx27-phytec-phycore.dtsp b/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
> index 7228153..354dc77 100644
> --- a/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
> +++ b/arch/arm/boot/dts/imx27-phytec-phycore.dtsp
> @@ -77,3 +77,9 @@
>  	nand-ecc-mode = "hw";
>  	status = "okay";
>  };
> +
> +&cspi1 {
> +	fsl,spi-num-chipselects = <1>;
> +	cs-gpios = <&gpio4 28 0>;
> +	status = "okay";
> +};

I would suggest these codes be sorted in alphabet order of label name.
IOW, &cspi1 should be put before &nfc. 

Shawn

> -- 
> 1.8.1.5
> 
> _______________________________________________
> devicetree-discuss mailing list
> devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
> https://lists.ozlabs.org/listinfo/devicetree-discuss

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

* Re: [PATCH 3/3] ARM: dts: Add missing imx27-phytec-phycore dtb target
       [not found]     ` <1365348554-24345-3-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
@ 2013-04-08  6:36       ` Shawn Guo
  0 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2013-04-08  6:36 UTC (permalink / raw)
  To: Alexander Shiyan
  Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, Sascha Hauer,
	Rob Herring, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Sun, Apr 07, 2013 at 07:29:14PM +0400, Alexander Shiyan wrote:
> The patch adds missing imx27-phytec-phycore dtb target into Makefile.
> 
> Signed-off-by: Alexander Shiyan <shc_work-JGs/UdohzUI@public.gmane.org>

Applied, thanks.

> ---
>  arch/arm/boot/dts/Makefile | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> index 35976f0..a06d9f1 100644
> --- a/arch/arm/boot/dts/Makefile
> +++ b/arch/arm/boot/dts/Makefile
> @@ -98,6 +98,7 @@ dtb-$(CONFIG_ARCH_MXC) += \
>  	imx27-apf27.dtb \
>  	imx27-apf27dev.dtb \
>  	imx27-pdk.dtb \
> +	imx27-phytec-phycore.dtb \
>  	imx31-bug.dtb \
>  	imx51-apf51.dtb \
>  	imx51-apf51dev.dtb \
> -- 
> 1.8.1.5
> 
> _______________________________________________
> devicetree-discuss mailing list
> devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
> https://lists.ozlabs.org/listinfo/devicetree-discuss

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

end of thread, other threads:[~2013-04-08  6:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-07 15:29 [PATCH 1/3] ARM: dts: Add NFC support for i.MX27 Phytec PCM038 module Alexander Shiyan
     [not found] ` <1365348554-24345-1-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
2013-04-07 15:29   ` [PATCH 2/3] ARM: dts: Add SPI " Alexander Shiyan
     [not found]     ` <1365348554-24345-2-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
2013-04-08  6:35       ` Shawn Guo
2013-04-07 15:29   ` [PATCH 3/3] ARM: dts: Add missing imx27-phytec-phycore dtb target Alexander Shiyan
     [not found]     ` <1365348554-24345-3-git-send-email-shc_work-JGs/UdohzUI@public.gmane.org>
2013-04-08  6:36       ` Shawn Guo
2013-04-08  6:33   ` [PATCH 1/3] ARM: dts: Add NFC support for i.MX27 Phytec PCM038 module 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).