All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eduardo Valentin <edubezval@gmail.com>
To: Chanwoo Choi <cw00.choi@samsung.com>
Cc: kgene.kim@samsung.com, t.figa@samsung.com, ben-linux@fluff.org,
	linux@arm.linux.org.uk, kyungmin.park@samsung.com,
	devicetree@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org
Subject: Re: [PATCH 1/3] ARM: dts: Add TMU dt node to monitor the temperature for Exynos3250
Date: Tue, 29 Jul 2014 09:37:16 -0400	[thread overview]
Message-ID: <20140729133716.GB3336@developer> (raw)
In-Reply-To: <1406600232-31033-2-git-send-email-cw00.choi@samsung.com>

On Tue, Jul 29, 2014 at 11:17:10AM +0900, Chanwoo Choi wrote:
> This patch add TMU (Thermal Management Unit) dt node to monitor the high
> temperature for Exynos3250.
> 
> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>

Acked-by: Eduardo Valentin <edubezval@gmail.com>

> ---
> This patch has a dependency on following patch [1] which supporting the TMU
> of Exynos3250:
>  [1] https://git.kernel.org/cgit/linux/kernel/git/rzhang/linux.git/commit/?h=next&id=1fe56dc16a3dab400206443f70ae158c8f595c42
> 
> Changes from v1:
> - Remove duplicate 'interrupt-parent' property.
> 
>  arch/arm/boot/dts/exynos3250.dtsi | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/exynos3250.dtsi b/arch/arm/boot/dts/exynos3250.dtsi
> index 77a06df..41a260a 100644
> --- a/arch/arm/boot/dts/exynos3250.dtsi
> +++ b/arch/arm/boot/dts/exynos3250.dtsi
> @@ -168,6 +168,15 @@
>  			status = "disabled";
>  		};
>  
> +		tmu: tmu@100C0000 {
> +			compatible = "samsung,exynos3250-tmu";
> +			reg = <0x100C0000 0x100>;
> +			interrupts = <0 216 0>;
> +			clocks = <&cmu CLK_TMU_APBIF>;
> +			clock-names = "tmu_apbif";
> +			status = "disabled";
> +		};
> +
>  		gic: interrupt-controller@10481000 {
>  			compatible = "arm,cortex-a15-gic";
>  			#interrupt-cells = <3>;
> -- 
> 1.8.0
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

WARNING: multiple messages have this Message-ID (diff)
From: edubezval@gmail.com (Eduardo Valentin)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] ARM: dts: Add TMU dt node to monitor the temperature for Exynos3250
Date: Tue, 29 Jul 2014 09:37:16 -0400	[thread overview]
Message-ID: <20140729133716.GB3336@developer> (raw)
In-Reply-To: <1406600232-31033-2-git-send-email-cw00.choi@samsung.com>

On Tue, Jul 29, 2014 at 11:17:10AM +0900, Chanwoo Choi wrote:
> This patch add TMU (Thermal Management Unit) dt node to monitor the high
> temperature for Exynos3250.
> 
> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>

Acked-by: Eduardo Valentin <edubezval@gmail.com>

> ---
> This patch has a dependency on following patch [1] which supporting the TMU
> of Exynos3250:
>  [1] https://git.kernel.org/cgit/linux/kernel/git/rzhang/linux.git/commit/?h=next&id=1fe56dc16a3dab400206443f70ae158c8f595c42
> 
> Changes from v1:
> - Remove duplicate 'interrupt-parent' property.
> 
>  arch/arm/boot/dts/exynos3250.dtsi | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/exynos3250.dtsi b/arch/arm/boot/dts/exynos3250.dtsi
> index 77a06df..41a260a 100644
> --- a/arch/arm/boot/dts/exynos3250.dtsi
> +++ b/arch/arm/boot/dts/exynos3250.dtsi
> @@ -168,6 +168,15 @@
>  			status = "disabled";
>  		};
>  
> +		tmu: tmu at 100C0000 {
> +			compatible = "samsung,exynos3250-tmu";
> +			reg = <0x100C0000 0x100>;
> +			interrupts = <0 216 0>;
> +			clocks = <&cmu CLK_TMU_APBIF>;
> +			clock-names = "tmu_apbif";
> +			status = "disabled";
> +		};
> +
>  		gic: interrupt-controller at 10481000 {
>  			compatible = "arm,cortex-a15-gic";
>  			#interrupt-cells = <3>;
> -- 
> 1.8.0
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

  reply	other threads:[~2014-07-29 13:37 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-29  2:17 [PATCH 0/3] ARM: dts: Add TMU dt node and missing data for Exynos3250 Chanwoo Choi
2014-07-29  2:17 ` Chanwoo Choi
2014-07-29  2:17 ` [PATCH 1/3] ARM: dts: Add TMU dt node to monitor the temperature " Chanwoo Choi
2014-07-29  2:17   ` Chanwoo Choi
2014-07-29 13:37   ` Eduardo Valentin [this message]
2014-07-29 13:37     ` Eduardo Valentin
2014-07-29  2:17 ` [PATCH 2/3] ARM: dts: Remove duplicate 'interrput-parent' property " Chanwoo Choi
2014-07-29  2:17   ` Chanwoo Choi
2014-07-29  2:17   ` Chanwoo Choi
2014-07-29  2:17 ` [PATCH 3/3] ARM: dts: Add missing pinctrl for uart0/1 " Chanwoo Choi
2014-07-29  2:17   ` Chanwoo Choi
2014-07-29 23:02 ` [PATCH 0/3] ARM: dts: Add TMU dt node and missing data " Kukjin Kim
2014-07-29 23:02   ` 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=20140729133716.GB3336@developer \
    --to=edubezval@gmail.com \
    --cc=ben-linux@fluff.org \
    --cc=cw00.choi@samsung.com \
    --cc=devicetree@vger.kernel.org \
    --cc=kgene.kim@samsung.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=t.figa@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 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.