linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: Add pmu sysreg node to Exynos3250
@ 2014-05-26  6:29 Chanwoo Choi
  2014-05-30 11:49 ` Chanwoo Choi
  2014-05-30 11:52 ` Tomasz Figa
  0 siblings, 2 replies; 5+ messages in thread
From: Chanwoo Choi @ 2014-05-26  6:29 UTC (permalink / raw)
  To: kgene.kim
  Cc: t.figa, robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak,
	rdunlap, ben-linux, linux, l.krishna, chanho61.park,
	kyungmin.park, cw00.choi, devicetree, linux-doc, linux-kernel,
	linux-arm-kernel, linux-samsung-soc

This patch add pmusysreg node for Exynos3250 to access PMU (Power Management Unit)
register in a centralized way using syscon driver.

Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 Documentation/devicetree/bindings/arm/samsung/pmu.txt | 1 +
 arch/arm/boot/dts/exynos3250.dtsi                     | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/Documentation/devicetree/bindings/arm/samsung/pmu.txt b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
index b562634..2a4ab04 100644
--- a/Documentation/devicetree/bindings/arm/samsung/pmu.txt
+++ b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
@@ -2,6 +2,7 @@ SAMSUNG Exynos SoC series PMU Registers
 
 Properties:
  - compatible : should contain two values. First value must be one from following list:
+		   - "samsung,exynos3250-pmu" - for Exynos3250 SoC,
 		   - "samsung,exynos4210-pmu" - for Exynos4210 SoC,
 		   - "samsung,exynos4212-pmu" - for Exynos4212 SoC,
 		   - "samsung,exynos4412-pmu" - for Exynos4412 SoC,
diff --git a/arch/arm/boot/dts/exynos3250.dtsi b/arch/arm/boot/dts/exynos3250.dtsi
index ca28eac..3e678fa 100644
--- a/arch/arm/boot/dts/exynos3250.dtsi
+++ b/arch/arm/boot/dts/exynos3250.dtsi
@@ -125,6 +125,11 @@
 			reg = <0x10010000 0x400>;
 		};
 
+		pmu_system_controller: system-controller@10020000 {
+			compatible = "samsung,exynos3250-pmu", "syscon";
+			reg = <0x10020000 0x4000>;
+		};
+
 		pd_cam: cam-power-domain@10023C00 {
 			compatible = "samsung,exynos4210-pd";
 			reg = <0x10023C00 0x20>;
-- 
1.8.0


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

* Re: [PATCH] ARM: dts: Add pmu sysreg node to Exynos3250
  2014-05-26  6:29 [PATCH] ARM: dts: Add pmu sysreg node to Exynos3250 Chanwoo Choi
@ 2014-05-30 11:49 ` Chanwoo Choi
  2014-05-30 11:52 ` Tomasz Figa
  1 sibling, 0 replies; 5+ messages in thread
From: Chanwoo Choi @ 2014-05-30 11:49 UTC (permalink / raw)
  To: Chanwoo Choi, kgene.kim, t.figa
  Cc: robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak,
	rdunlap, ben-linux, linux, l.krishna, chanho61.park,
	kyungmin.park, devicetree, linux-doc, linux-kernel,
	linux-arm-kernel, linux-samsung-soc

Ping,

Could you review this patch?

Thanks,
Chanwoo Choi

On 05/26/2014 03:29 PM, Chanwoo Choi wrote:
> This patch add pmusysreg node for Exynos3250 to access PMU (Power Management Unit)
> register in a centralized way using syscon driver.
> 
> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
>  Documentation/devicetree/bindings/arm/samsung/pmu.txt | 1 +
>  arch/arm/boot/dts/exynos3250.dtsi                     | 5 +++++
>  2 files changed, 6 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/arm/samsung/pmu.txt b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> index b562634..2a4ab04 100644
> --- a/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> +++ b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> @@ -2,6 +2,7 @@ SAMSUNG Exynos SoC series PMU Registers
>  
>  Properties:
>   - compatible : should contain two values. First value must be one from following list:
> +		   - "samsung,exynos3250-pmu" - for Exynos3250 SoC,
>  		   - "samsung,exynos4210-pmu" - for Exynos4210 SoC,
>  		   - "samsung,exynos4212-pmu" - for Exynos4212 SoC,
>  		   - "samsung,exynos4412-pmu" - for Exynos4412 SoC,
> diff --git a/arch/arm/boot/dts/exynos3250.dtsi b/arch/arm/boot/dts/exynos3250.dtsi
> index ca28eac..3e678fa 100644
> --- a/arch/arm/boot/dts/exynos3250.dtsi
> +++ b/arch/arm/boot/dts/exynos3250.dtsi
> @@ -125,6 +125,11 @@
>  			reg = <0x10010000 0x400>;
>  		};
>  
> +		pmu_system_controller: system-controller@10020000 {
> +			compatible = "samsung,exynos3250-pmu", "syscon";
> +			reg = <0x10020000 0x4000>;
> +		};
> +
>  		pd_cam: cam-power-domain@10023C00 {
>  			compatible = "samsung,exynos4210-pd";
>  			reg = <0x10023C00 0x20>;
> 


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

* Re: [PATCH] ARM: dts: Add pmu sysreg node to Exynos3250
  2014-05-26  6:29 [PATCH] ARM: dts: Add pmu sysreg node to Exynos3250 Chanwoo Choi
  2014-05-30 11:49 ` Chanwoo Choi
@ 2014-05-30 11:52 ` Tomasz Figa
  2014-05-30 11:55   ` Chanwoo Choi
  2014-05-30 18:08   ` Kukjin Kim
  1 sibling, 2 replies; 5+ messages in thread
From: Tomasz Figa @ 2014-05-30 11:52 UTC (permalink / raw)
  To: Chanwoo Choi, kgene.kim
  Cc: t.figa, robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak,
	rdunlap, ben-linux, linux, l.krishna, chanho61.park,
	kyungmin.park, devicetree, linux-doc, linux-kernel,
	linux-arm-kernel, linux-samsung-soc

On 26.05.2014 08:29, Chanwoo Choi wrote:
> This patch add pmusysreg node for Exynos3250 to access PMU (Power Management Unit)
> register in a centralized way using syscon driver.
> 
> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
>  Documentation/devicetree/bindings/arm/samsung/pmu.txt | 1 +
>  arch/arm/boot/dts/exynos3250.dtsi                     | 5 +++++
>  2 files changed, 6 insertions(+)

Reviewed-by: Tomasz Figa <t.figa@samsung.com>

Best regards,
Tomasz

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

* Re: [PATCH] ARM: dts: Add pmu sysreg node to Exynos3250
  2014-05-30 11:52 ` Tomasz Figa
@ 2014-05-30 11:55   ` Chanwoo Choi
  2014-05-30 18:08   ` Kukjin Kim
  1 sibling, 0 replies; 5+ messages in thread
From: Chanwoo Choi @ 2014-05-30 11:55 UTC (permalink / raw)
  To: Tomasz Figa
  Cc: kgene.kim, t.figa, robh+dt, pawel.moll, mark.rutland,
	ijc+devicetree, galak, rdunlap, ben-linux, linux, l.krishna,
	chanho61.park, kyungmin.park, devicetree, linux-doc,
	linux-kernel, linux-arm-kernel, linux-samsung-soc

On 05/30/2014 08:52 PM, Tomasz Figa wrote:
> On 26.05.2014 08:29, Chanwoo Choi wrote:
>> This patch add pmusysreg node for Exynos3250 to access PMU (Power Management Unit)
>> register in a centralized way using syscon driver.
>>
>> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
>> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
>> ---
>>  Documentation/devicetree/bindings/arm/samsung/pmu.txt | 1 +
>>  arch/arm/boot/dts/exynos3250.dtsi                     | 5 +++++
>>  2 files changed, 6 insertions(+)
> 
> Reviewed-by: Tomasz Figa <t.figa@samsung.com>
> 

Thanks for your review.

Best Regards,
Chanwoo Choi


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

* Re: [PATCH] ARM: dts: Add pmu sysreg node to Exynos3250
  2014-05-30 11:52 ` Tomasz Figa
  2014-05-30 11:55   ` Chanwoo Choi
@ 2014-05-30 18:08   ` Kukjin Kim
  1 sibling, 0 replies; 5+ messages in thread
From: Kukjin Kim @ 2014-05-30 18:08 UTC (permalink / raw)
  To: Tomasz Figa
  Cc: Chanwoo Choi, kgene.kim, t.figa, robh+dt, pawel.moll,
	mark.rutland, ijc+devicetree, galak, rdunlap, ben-linux, linux,
	l.krishna, chanho61.park, kyungmin.park, devicetree, linux-doc,
	linux-kernel, linux-arm-kernel, linux-samsung-soc

On 05/30/14 20:52, Tomasz Figa wrote:
> On 26.05.2014 08:29, Chanwoo Choi wrote:
>> This patch add pmusysreg node for Exynos3250 to access PMU (Power Management Unit)
>> register in a centralized way using syscon driver.
>>
>> Signed-off-by: Chanwoo Choi<cw00.choi@samsung.com>
>> Acked-by: Kyungmin Park<kyungmin.park@samsung.com>
>> ---
>>   Documentation/devicetree/bindings/arm/samsung/pmu.txt | 1 +
>>   arch/arm/boot/dts/exynos3250.dtsi                     | 5 +++++
>>   2 files changed, 6 insertions(+)
>
> Reviewed-by: Tomasz Figa<t.figa@samsung.com>
>
Applied, thanks.

- Kukjin

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

end of thread, other threads:[~2014-05-30 18:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-26  6:29 [PATCH] ARM: dts: Add pmu sysreg node to Exynos3250 Chanwoo Choi
2014-05-30 11:49 ` Chanwoo Choi
2014-05-30 11:52 ` Tomasz Figa
2014-05-30 11:55   ` Chanwoo Choi
2014-05-30 18:08   ` Kukjin Kim

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).