devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kukjin Kim <kgene.kim@samsung.com>
To: Yuvaraj Kumar C D <yuvaraj.cd@gmail.com>
Cc: linux-samsung-soc@vger.kernel.org, kgene.kim@samsung.com,
	devicetree@vger.kernel.org, rob.herring@calxeda.com,
	pawel.moll@arm.com, mark.rutland@arm.com, swarren@wwwdotorg.org,
	ian.campbell@citrix.com, t.figa@samsung.com,
	dianders@chromium.org, cjb@laptop.org, thomas.abraham@linaro.org,
	ks.giri@samsung.com, Yuvaraj Kumar C D <yuvaraj.cd@samsung.com>
Subject: Re: [PATCH V4 1/4] ARM: dts: Move dwmmc nodes from exynos5.dtsi to exynos5250.dtsi
Date: Mon, 21 Oct 2013 05:50:06 +0900	[thread overview]
Message-ID: <526441FE.406@samsung.com> (raw)
In-Reply-To: <1378188264-22382-2-git-send-email-yuvaraj.cd@samsung.com>

On 09/03/13 15:04, Yuvaraj Kumar C D wrote:
> Exynos5 series SOC's 5250 and 5420 have different versions of
> DWMMC controller.So there is a new compatible string to distinguish
> between them.So these nodes should be moved out of Exynos5 series
> common device tree source to SOC specific device tree source.
>
> Changes since V3: none
>
> Changes since V2:
> 	1.remove from exynos5.dtsi and add in exynos5250.dtsi
> 	  in single patch.
>
> Changes since V1: none
>
BTW, above changes should be under '---' because the changes are not 
needed in git log. I modified when I applied.

Thanks,
Kukjin

> Signed-off-by: Yuvaraj Kumar C D<yuvaraj.cd@samsung.com>
> ---
>   arch/arm/boot/dts/exynos5.dtsi    |   21 ---------------------
>   arch/arm/boot/dts/exynos5250.dtsi |   12 ++++++++++++
>   2 files changed, 12 insertions(+), 21 deletions(-)
>
> diff --git a/arch/arm/boot/dts/exynos5.dtsi b/arch/arm/boot/dts/exynos5.dtsi
> index 074739d..e52b038 100644
> --- a/arch/arm/boot/dts/exynos5.dtsi
> +++ b/arch/arm/boot/dts/exynos5.dtsi
> @@ -50,27 +50,6 @@
>   		interrupts =<1 9 0xf04>;
>   	};
>
> -	dwmmc_0: dwmmc0@12200000 {
> -		compatible = "samsung,exynos5250-dw-mshc";
> -		interrupts =<0 75 0>;
> -		#address-cells =<1>;
> -		#size-cells =<0>;
> -	};
> -
> -	dwmmc_1: dwmmc1@12210000 {
> -		compatible = "samsung,exynos5250-dw-mshc";
> -		interrupts =<0 76 0>;
> -		#address-cells =<1>;
> -		#size-cells =<0>;
> -	};
> -
> -	dwmmc_2: dwmmc2@12220000 {
> -		compatible = "samsung,exynos5250-dw-mshc";
> -		interrupts =<0 77 0>;
> -		#address-cells =<1>;
> -		#size-cells =<0>;
> -	};
> -
>   	serial@12C00000 {
>   		compatible = "samsung,exynos4210-uart";
>   		reg =<0x12C00000 0x100>;
> diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts/exynos5250.dtsi
> index 864ae90..d42844b 100644
> --- a/arch/arm/boot/dts/exynos5250.dtsi
> +++ b/arch/arm/boot/dts/exynos5250.dtsi
> @@ -388,18 +388,30 @@
>   	};
>
>   	dwmmc_0: dwmmc0@12200000 {
> +		compatible = "samsung,exynos5250-dw-mshc";
> +		interrupts =<0 75 0>;
> +		#address-cells =<1>;
> +		#size-cells =<0>;
>   		reg =<0x12200000 0x1000>;
>   		clocks =<&clock 280>,<&clock 139>;
>   		clock-names = "biu", "ciu";
>   	};
>
>   	dwmmc_1: dwmmc1@12210000 {
> +		compatible = "samsung,exynos5250-dw-mshc";
> +		interrupts =<0 76 0>;
> +		#address-cells =<1>;
> +		#size-cells =<0>;
>   		reg =<0x12210000 0x1000>;
>   		clocks =<&clock 281>,<&clock 140>;
>   		clock-names = "biu", "ciu";
>   	};
>
>   	dwmmc_2: dwmmc2@12220000 {
> +		compatible = "samsung,exynos5250-dw-mshc";
> +		interrupts =<0 77 0>;
> +		#address-cells =<1>;
> +		#size-cells =<0>;
>   		reg =<0x12220000 0x1000>;
>   		clocks =<&clock 282>,<&clock 141>;
>   		clock-names = "biu", "ciu";

  reply	other threads:[~2013-10-20 20:50 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-03  6:04 [PATCH V4 0/4] exynos dwmmc device tree node cleanup Yuvaraj Kumar C D
2013-09-03  6:04 ` [PATCH V4 1/4] ARM: dts: Move dwmmc nodes from exynos5.dtsi to exynos5250.dtsi Yuvaraj Kumar C D
2013-10-20 20:50   ` Kukjin Kim [this message]
2013-09-03  6:04 ` [PATCH V4 2/4] ARM: dts: exynos: change status property of dwmmc nodes Yuvaraj Kumar C D
2013-09-03  6:04 ` [PATCH V4 3/4] ARM: dts: Move fifo-depth property from board dts Yuvaraj Kumar C D
2013-09-03  6:04 ` [PATCH V4 4/4] ARM: dts: rename mmc dts node for exynos5 series Yuvaraj Kumar C D
2013-09-03  8:11 ` [PATCH V4 0/4] exynos dwmmc device tree node cleanup Tomasz Figa
2013-09-26  5:21   ` Yuvaraj Cd
2013-10-18 11:07     ` Yuvaraj Kumar
2013-10-20 20:42       ` Kukjin Kim

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=526441FE.406@samsung.com \
    --to=kgene.kim@samsung.com \
    --cc=cjb@laptop.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dianders@chromium.org \
    --cc=ian.campbell@citrix.com \
    --cc=ks.giri@samsung.com \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=pawel.moll@arm.com \
    --cc=rob.herring@calxeda.com \
    --cc=swarren@wwwdotorg.org \
    --cc=t.figa@samsung.com \
    --cc=thomas.abraham@linaro.org \
    --cc=yuvaraj.cd@gmail.com \
    --cc=yuvaraj.cd@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).