devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv4 0/4] Enable usbphy and hsotg for exynos4
@ 2014-05-02  4:26 Chanho Park
  2014-05-02  4:26 ` [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node Chanho Park
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Chanho Park @ 2014-05-02  4:26 UTC (permalink / raw)
  To: kgene.kim, linux-samsung-soc; +Cc: devicetree, t.figa, k.debski, Chanho Park

This patchset enables a exynos4 usbphy and hsotg DT node for exynos4. The usb
phy node uses generic exynos phy driver. The driver uses PMU syscon and SYSREG
syscon phandles.

Change from v3:
 - Place a status field at the end of the nodes for readability

Change from v2:
 - Split 4x12 compatibles to 4212 and 4412

Changes from v1: Applied Tomasz Figa's comments
 - Document PMU syscon compatibles for exynos4210/4x12
 - Use clock macro instead of raw clock number
 - Correct phy name to "usb2-phy"

Chanho Park (4):
  ARM: dts: exynos4: add PMU syscon node
  ARM: dts: exynos4: add exynos_usbphy node
  ARM: dts: exynos4: add hsotg device node
  ARM: dts: exynos4412-trats2: enable usb nodes

 .../devicetree/bindings/arm/samsung/pmu.txt        |  3 +++
 arch/arm/boot/dts/exynos4.dtsi                     | 26 ++++++++++++++++++++++
 arch/arm/boot/dts/exynos4412-trats2.dts            | 10 +++++++++
 arch/arm/boot/dts/exynos4x12.dtsi                  |  9 ++++++++
 4 files changed, 48 insertions(+)

-- 
1.8.3.2

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

* [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node
  2014-05-02  4:26 [PATCHv4 0/4] Enable usbphy and hsotg for exynos4 Chanho Park
@ 2014-05-02  4:26 ` Chanho Park
  2014-05-15 17:07   ` Tomasz Figa
  2014-05-02  4:26 ` [PATCHv4 2/4] ARM: dts: exynos4: add exynos_usbphy node Chanho Park
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Chanho Park @ 2014-05-02  4:26 UTC (permalink / raw)
  To: kgene.kim, linux-samsung-soc; +Cc: devicetree, t.figa, k.debski, Chanho Park

This patch adds a PMU(Power Management Unit) syscon node. This
should be required for USB Phy syscon regmap I/F.

Cc: Kamil Debski <k.debski@samsung.com>
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
Reviewed-by: Tomasz Figa <t.figa@samsung.com>
---
 Documentation/devicetree/bindings/arm/samsung/pmu.txt | 3 +++
 arch/arm/boot/dts/exynos4.dtsi                        | 5 +++++
 arch/arm/boot/dts/exynos4x12.dtsi                     | 4 ++++
 3 files changed, 12 insertions(+)

diff --git a/Documentation/devicetree/bindings/arm/samsung/pmu.txt b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
index f1f1552..b562634 100644
--- a/Documentation/devicetree/bindings/arm/samsung/pmu.txt
+++ b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
@@ -2,6 +2,9 @@ SAMSUNG Exynos SoC series PMU Registers
 
 Properties:
  - compatible : should contain two values. First value must be one from following list:
+		   - "samsung,exynos4210-pmu" - for Exynos4210 SoC,
+		   - "samsung,exynos4212-pmu" - for Exynos4212 SoC,
+		   - "samsung,exynos4412-pmu" - for Exynos4412 SoC,
 		   - "samsung,exynos5250-pmu" - for Exynos5250 SoC,
 		   - "samsung,exynos5420-pmu" - for Exynos5420 SoC.
 		second value must be always "syscon".
diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi
index 2f8bcd0..264066f 100644
--- a/arch/arm/boot/dts/exynos4.dtsi
+++ b/arch/arm/boot/dts/exynos4.dtsi
@@ -110,6 +110,11 @@
 		reg = <0x10010000 0x400>;
 	};
 
+	pmu_system_controller: system-controller@10020000 {
+		compatible = "samsung,exynos4210-pmu", "syscon";
+		reg = <0x10020000 0x4000>;
+	};
+
 	dsi_0: dsi@11C80000 {
 		compatible = "samsung,exynos4210-mipi-dsi";
 		reg = <0x11C80000 0x10000>;
diff --git a/arch/arm/boot/dts/exynos4x12.dtsi b/arch/arm/boot/dts/exynos4x12.dtsi
index c4a9306..7f767f7 100644
--- a/arch/arm/boot/dts/exynos4x12.dtsi
+++ b/arch/arm/boot/dts/exynos4x12.dtsi
@@ -119,6 +119,10 @@
 		interrupts = <0 72 0>;
 	};
 
+	pmu_system_controller: system-controller@10020000 {
+		compatible = "samsung,exynos4x12-pmu", "syscon";
+	};
+
 	g2d@10800000 {
 		compatible = "samsung,exynos4212-g2d";
 		reg = <0x10800000 0x1000>;
-- 
1.8.3.2

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

* [PATCHv4 2/4] ARM: dts: exynos4: add exynos_usbphy node
  2014-05-02  4:26 [PATCHv4 0/4] Enable usbphy and hsotg for exynos4 Chanho Park
  2014-05-02  4:26 ` [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node Chanho Park
@ 2014-05-02  4:26 ` Chanho Park
  2014-05-02  4:26 ` [PATCHv4 3/4] ARM: dts: exynos4: add hsotg device node Chanho Park
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 10+ messages in thread
From: Chanho Park @ 2014-05-02  4:26 UTC (permalink / raw)
  To: kgene.kim, linux-samsung-soc
  Cc: devicetree, t.figa, k.debski, Chanho Park, Sachin Kamat

This patch enables a exynos_usbphy node for exynos4 SoCs.
A exynos4x12 usb phy node is almost same with 4210's one
except compatible string and pmu syscon.

Cc: Tomasz Figa <t.figa@samsung.com>
Cc: Kamil Debski <k.debski@samsung.com>
Cc: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
---
 arch/arm/boot/dts/exynos4.dtsi    | 10 ++++++++++
 arch/arm/boot/dts/exynos4x12.dtsi |  5 +++++
 2 files changed, 15 insertions(+)

diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi
index 264066f..e72acb7 100644
--- a/arch/arm/boot/dts/exynos4.dtsi
+++ b/arch/arm/boot/dts/exynos4.dtsi
@@ -278,6 +278,16 @@
 		status = "disabled";
 	};
 
+	exynos_usbphy: exynos-usbphy@125B0000 {
+		compatible = "samsung,exynos4210-usb2-phy";
+		reg = <0x125B0000 0x100>;
+		samsung,pmureg-phandle = <&pmu_system_controller>;
+		clocks = <&clock CLK_USB_DEVICE>, <&clock CLK_XUSBXTI>;
+		clock-names = "phy", "ref";
+		#phy-cells = <1>;
+		status = "disabled";
+	};
+
 	ehci@12580000 {
 		compatible = "samsung,exynos4210-ehci";
 		reg = <0x12580000 0x100>;
diff --git a/arch/arm/boot/dts/exynos4x12.dtsi b/arch/arm/boot/dts/exynos4x12.dtsi
index 7f767f7..6d9a21a 100644
--- a/arch/arm/boot/dts/exynos4x12.dtsi
+++ b/arch/arm/boot/dts/exynos4x12.dtsi
@@ -247,4 +247,9 @@
 		clock-names = "biu", "ciu";
 		status = "disabled";
 	};
+
+	exynos-usbphy@125B0000 {
+		compatible = "samsung,exynos4x12-usb2-phy";
+		samsung,sysreg-phandle = <&sys_reg>;
+	};
 };
-- 
1.8.3.2

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

* [PATCHv4 3/4] ARM: dts: exynos4: add hsotg device node
  2014-05-02  4:26 [PATCHv4 0/4] Enable usbphy and hsotg for exynos4 Chanho Park
  2014-05-02  4:26 ` [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node Chanho Park
  2014-05-02  4:26 ` [PATCHv4 2/4] ARM: dts: exynos4: add exynos_usbphy node Chanho Park
@ 2014-05-02  4:26 ` Chanho Park
  2014-05-02  4:26 ` [PATCHv4 4/4] ARM: dts: exynos4412-trats2: enable usb nodes Chanho Park
  2014-05-02 18:21 ` [PATCHv4 0/4] Enable usbphy and hsotg for exynos4 Tomasz Figa
  4 siblings, 0 replies; 10+ messages in thread
From: Chanho Park @ 2014-05-02  4:26 UTC (permalink / raw)
  To: kgene.kim, linux-samsung-soc
  Cc: devicetree, t.figa, k.debski, Chanho Park, Marek Szyprowski

This patch adds a hsotg node for exynos4 USB2.0 device controller.

Cc: Tomasz Figa <t.figa@samsung.com>
Cc: Kamil Debski <k.debski@samsung.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
---
 arch/arm/boot/dts/exynos4.dtsi | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi
index e72acb7..206f519 100644
--- a/arch/arm/boot/dts/exynos4.dtsi
+++ b/arch/arm/boot/dts/exynos4.dtsi
@@ -288,6 +288,17 @@
 		status = "disabled";
 	};
 
+	hsotg@12480000 {
+		compatible = "samsung,s3c6400-hsotg";
+		reg = <0x12480000 0x20000>;
+		interrupts = <0 71 0>;
+		clocks = <&clock CLK_USB_DEVICE>;
+		clock-names = "otg";
+		phys = <&exynos_usbphy 0>;
+		phy-names = "usb2-phy";
+		status = "disabled";
+	};
+
 	ehci@12580000 {
 		compatible = "samsung,exynos4210-ehci";
 		reg = <0x12580000 0x100>;
-- 
1.8.3.2

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

* [PATCHv4 4/4] ARM: dts: exynos4412-trats2: enable usb nodes
  2014-05-02  4:26 [PATCHv4 0/4] Enable usbphy and hsotg for exynos4 Chanho Park
                   ` (2 preceding siblings ...)
  2014-05-02  4:26 ` [PATCHv4 3/4] ARM: dts: exynos4: add hsotg device node Chanho Park
@ 2014-05-02  4:26 ` Chanho Park
  2014-05-02 18:21 ` [PATCHv4 0/4] Enable usbphy and hsotg for exynos4 Tomasz Figa
  4 siblings, 0 replies; 10+ messages in thread
From: Chanho Park @ 2014-05-02  4:26 UTC (permalink / raw)
  To: kgene.kim, linux-samsung-soc
  Cc: devicetree, t.figa, k.debski, Chanho Park, Marek Szyprowski

This patch enables exynos_usbphy and hsotg device nodes.

Cc: Tomasz Figa <t.figa@samsung.com>
Cc: Kamil Debski <k.debski@samsung.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
---
 arch/arm/boot/dts/exynos4412-trats2.dts | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/arch/arm/boot/dts/exynos4412-trats2.dts b/arch/arm/boot/dts/exynos4412-trats2.dts
index 9583563..a16db6c 100644
--- a/arch/arm/boot/dts/exynos4412-trats2.dts
+++ b/arch/arm/boot/dts/exynos4412-trats2.dts
@@ -665,6 +665,16 @@
 		};
 	};
 
+	exynos-usbphy@125B0000 {
+		status = "okay";
+	};
+
+	hsotg@12480000 {
+		vusb_d-supply = <&ldo15_reg>;
+		vusb_a-supply = <&ldo12_reg>;
+		status = "okay";
+	};
+
 	thermistor-ap@0 {
 		compatible = "ntc,ncp15wb473";
 		pullup-uv = <1800000>;	 /* VCC_1.8V_AP */
-- 
1.8.3.2

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

* Re: [PATCHv4 0/4] Enable usbphy and hsotg for exynos4
  2014-05-02  4:26 [PATCHv4 0/4] Enable usbphy and hsotg for exynos4 Chanho Park
                   ` (3 preceding siblings ...)
  2014-05-02  4:26 ` [PATCHv4 4/4] ARM: dts: exynos4412-trats2: enable usb nodes Chanho Park
@ 2014-05-02 18:21 ` Tomasz Figa
  4 siblings, 0 replies; 10+ messages in thread
From: Tomasz Figa @ 2014-05-02 18:21 UTC (permalink / raw)
  To: Chanho Park, kgene.kim, linux-samsung-soc; +Cc: devicetree, t.figa, k.debski

Hi Chanho,

On 02.05.2014 06:26, Chanho Park wrote:
> This patchset enables a exynos4 usbphy and hsotg DT node for exynos4. The usb
> phy node uses generic exynos phy driver. The driver uses PMU syscon and SYSREG
> syscon phandles.
>
> Change from v3:
>   - Place a status field at the end of the nodes for readability
>
> Change from v2:
>   - Split 4x12 compatibles to 4212 and 4412
>
> Changes from v1: Applied Tomasz Figa's comments
>   - Document PMU syscon compatibles for exynos4210/4x12
>   - Use clock macro instead of raw clock number
>   - Correct phy name to "usb2-phy"
>
> Chanho Park (4):
>    ARM: dts: exynos4: add PMU syscon node
>    ARM: dts: exynos4: add exynos_usbphy node
>    ARM: dts: exynos4: add hsotg device node
>    ARM: dts: exynos4412-trats2: enable usb nodes
>
>   .../devicetree/bindings/arm/samsung/pmu.txt        |  3 +++
>   arch/arm/boot/dts/exynos4.dtsi                     | 26 ++++++++++++++++++++++
>   arch/arm/boot/dts/exynos4412-trats2.dts            | 10 +++++++++
>   arch/arm/boot/dts/exynos4x12.dtsi                  |  9 ++++++++
>   4 files changed, 48 insertions(+)
>

Looks good. Feel free to add

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

Best regards,
Tomasz

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

* Re: [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node
  2014-05-02  4:26 ` [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node Chanho Park
@ 2014-05-15 17:07   ` Tomasz Figa
  2014-05-19 16:23     ` Kukjin Kim
  2014-05-20  2:01     ` Chanho Park
  0 siblings, 2 replies; 10+ messages in thread
From: Tomasz Figa @ 2014-05-15 17:07 UTC (permalink / raw)
  To: Chanho Park, kgene.kim, linux-samsung-soc; +Cc: devicetree, k.debski

Hi Chanho,

When testing some other patches with this series applied I found one
more issue. Please see below.

On 02.05.2014 06:26, Chanho Park wrote:
> This patch adds a PMU(Power Management Unit) syscon node. This
> should be required for USB Phy syscon regmap I/F.
> 
> Cc: Kamil Debski <k.debski@samsung.com>
> Signed-off-by: Chanho Park <chanho61.park@samsung.com>
> Reviewed-by: Tomasz Figa <t.figa@samsung.com>
> ---
>  Documentation/devicetree/bindings/arm/samsung/pmu.txt | 3 +++
>  arch/arm/boot/dts/exynos4.dtsi                        | 5 +++++
>  arch/arm/boot/dts/exynos4x12.dtsi                     | 4 ++++
>  3 files changed, 12 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/arm/samsung/pmu.txt b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> index f1f1552..b562634 100644
> --- a/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> +++ b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> @@ -2,6 +2,9 @@ SAMSUNG Exynos SoC series PMU Registers
>  
>  Properties:
>   - compatible : should contain two values. First value must be one from following list:
> +		   - "samsung,exynos4210-pmu" - for Exynos4210 SoC,
> +		   - "samsung,exynos4212-pmu" - for Exynos4212 SoC,
> +		   - "samsung,exynos4412-pmu" - for Exynos4412 SoC,

Here two compatible strings are specified, one for each SoC in 4x12
family, but...

>  		   - "samsung,exynos5250-pmu" - for Exynos5250 SoC,
>  		   - "samsung,exynos5420-pmu" - for Exynos5420 SoC.
>  		second value must be always "syscon".
> diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi
> index 2f8bcd0..264066f 100644
> --- a/arch/arm/boot/dts/exynos4.dtsi
> +++ b/arch/arm/boot/dts/exynos4.dtsi
> @@ -110,6 +110,11 @@
>  		reg = <0x10010000 0x400>;
>  	};
>  
> +	pmu_system_controller: system-controller@10020000 {
> +		compatible = "samsung,exynos4210-pmu", "syscon";
> +		reg = <0x10020000 0x4000>;
> +	};
> +
>  	dsi_0: dsi@11C80000 {
>  		compatible = "samsung,exynos4210-mipi-dsi";
>  		reg = <0x11C80000 0x10000>;
> diff --git a/arch/arm/boot/dts/exynos4x12.dtsi b/arch/arm/boot/dts/exynos4x12.dtsi
> index c4a9306..7f767f7 100644
> --- a/arch/arm/boot/dts/exynos4x12.dtsi
> +++ b/arch/arm/boot/dts/exynos4x12.dtsi
> @@ -119,6 +119,10 @@
>  		interrupts = <0 72 0>;
>  	};
>  
> +	pmu_system_controller: system-controller@10020000 {
> +		compatible = "samsung,exynos4x12-pmu", "syscon";

Here one node is added for both using an undocumented compatible string.
Please fix this according to documentation.

Best regards,
Tomasz

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

* Re: [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node
  2014-05-15 17:07   ` Tomasz Figa
@ 2014-05-19 16:23     ` Kukjin Kim
       [not found]       ` <537A2FEA.6070208-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
  2014-05-20  2:01     ` Chanho Park
  1 sibling, 1 reply; 10+ messages in thread
From: Kukjin Kim @ 2014-05-19 16:23 UTC (permalink / raw)
  To: Tomasz Figa
  Cc: Chanho Park, kgene.kim, linux-samsung-soc, devicetree, k.debski

On 05/16/14 02:07, Tomasz Figa wrote:
> Hi Chanho,
>
Hi,

> When testing some other patches with this series applied I found one
> more issue. Please see below.
>
> On 02.05.2014 06:26, Chanho Park wrote:
>> This patch adds a PMU(Power Management Unit) syscon node. This
>> should be required for USB Phy syscon regmap I/F.
>>
>> Cc: Kamil Debski<k.debski@samsung.com>
>> Signed-off-by: Chanho Park<chanho61.park@samsung.com>
>> Reviewed-by: Tomasz Figa<t.figa@samsung.com>
>> ---
>>   Documentation/devicetree/bindings/arm/samsung/pmu.txt | 3 +++
>>   arch/arm/boot/dts/exynos4.dtsi                        | 5 +++++
>>   arch/arm/boot/dts/exynos4x12.dtsi                     | 4 ++++
>>   3 files changed, 12 insertions(+)
>>
>> diff --git a/Documentation/devicetree/bindings/arm/samsung/pmu.txt b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
>> index f1f1552..b562634 100644
>> --- a/Documentation/devicetree/bindings/arm/samsung/pmu.txt
>> +++ b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
>> @@ -2,6 +2,9 @@ SAMSUNG Exynos SoC series PMU Registers
>>
>>   Properties:
>>    - compatible : should contain two values. First value must be one from following list:
>> +		   - "samsung,exynos4210-pmu" - for Exynos4210 SoC,
>> +		   - "samsung,exynos4212-pmu" - for Exynos4212 SoC,
>> +		   - "samsung,exynos4412-pmu" - for Exynos4412 SoC,
>
> Here two compatible strings are specified, one for each SoC in 4x12
> family, but...
>
>>   		- "samsung,exynos5250-pmu" - for Exynos5250 SoC,
>>   		   - "samsung,exynos5420-pmu" - for Exynos5420 SoC.
>>   		second value must be always "syscon".
>> diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi
>> index 2f8bcd0..264066f 100644
>> --- a/arch/arm/boot/dts/exynos4.dtsi
>> +++ b/arch/arm/boot/dts/exynos4.dtsi
>> @@ -110,6 +110,11 @@
>>   		reg =<0x10010000 0x400>;
>>   	};
>>
>> +	pmu_system_controller: system-controller@10020000 {
>> +		compatible = "samsung,exynos4210-pmu", "syscon";
>> +		reg =<0x10020000 0x4000>;
>> +	};
>> +
>>   	dsi_0: dsi@11C80000 {
>>   		compatible = "samsung,exynos4210-mipi-dsi";
>>   		reg =<0x11C80000 0x10000>;
>> diff --git a/arch/arm/boot/dts/exynos4x12.dtsi b/arch/arm/boot/dts/exynos4x12.dtsi
>> index c4a9306..7f767f7 100644
>> --- a/arch/arm/boot/dts/exynos4x12.dtsi
>> +++ b/arch/arm/boot/dts/exynos4x12.dtsi
>> @@ -119,6 +119,10 @@
>>   		interrupts =<0 72 0>;
>>   	};
>>
>> +	pmu_system_controller: system-controller@10020000 {
>> +		compatible = "samsung,exynos4x12-pmu", "syscon";
>
> Here one node is added for both using an undocumented compatible string.
> Please fix this according to documentation.
>

Chanho, updated patch?

- Kukjin

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

* RE: [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node
  2014-05-15 17:07   ` Tomasz Figa
  2014-05-19 16:23     ` Kukjin Kim
@ 2014-05-20  2:01     ` Chanho Park
  1 sibling, 0 replies; 10+ messages in thread
From: Chanho Park @ 2014-05-20  2:01 UTC (permalink / raw)
  To: 'Tomasz Figa', kgene.kim, linux-samsung-soc; +Cc: devicetree, k.debski

Hi Tomasz,

> -----Original Message-----
> From: Tomasz Figa [mailto:t.figa@samsung.com]
> Sent: Friday, May 16, 2014 2:07 AM
> To: Chanho Park; kgene.kim@samsung.com; linux-samsung-
> soc@vger.kernel.org
> Cc: devicetree@vger.kernel.org; k.debski@samsung.com
> Subject: Re: [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node
> 
> Hi Chanho,
> 
> When testing some other patches with this series applied I found one
> more issue. Please see below.
> 
> On 02.05.2014 06:26, Chanho Park wrote:
> > This patch adds a PMU(Power Management Unit) syscon node. This
> > should be required for USB Phy syscon regmap I/F.
> >
> > Cc: Kamil Debski <k.debski@samsung.com>
> > Signed-off-by: Chanho Park <chanho61.park@samsung.com>
> > Reviewed-by: Tomasz Figa <t.figa@samsung.com>
> > ---
> >  Documentation/devicetree/bindings/arm/samsung/pmu.txt | 3 +++
> >  arch/arm/boot/dts/exynos4.dtsi                        | 5 +++++
> >  arch/arm/boot/dts/exynos4x12.dtsi                     | 4 ++++
> >  3 files changed, 12 insertions(+)
> >
> > diff --git a/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> > index f1f1552..b562634 100644
> > --- a/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> > +++ b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> > @@ -2,6 +2,9 @@ SAMSUNG Exynos SoC series PMU Registers
> >
> >  Properties:
> >   - compatible : should contain two values. First value must be one
> from following list:
> > +		   - "samsung,exynos4210-pmu" - for Exynos4210 SoC,
> > +		   - "samsung,exynos4212-pmu" - for Exynos4212 SoC,
> > +		   - "samsung,exynos4412-pmu" - for Exynos4412 SoC,
> 
> Here two compatible strings are specified, one for each SoC in 4x12
> family, but...
> 
> >  		   - "samsung,exynos5250-pmu" - for Exynos5250 SoC,
> >  		   - "samsung,exynos5420-pmu" - for Exynos5420 SoC.
> >  		second value must be always "syscon".
> > diff --git a/arch/arm/boot/dts/exynos4.dtsi
> b/arch/arm/boot/dts/exynos4.dtsi
> > index 2f8bcd0..264066f 100644
> > --- a/arch/arm/boot/dts/exynos4.dtsi
> > +++ b/arch/arm/boot/dts/exynos4.dtsi
> > @@ -110,6 +110,11 @@
> >  		reg = <0x10010000 0x400>;
> >  	};
> >
> > +	pmu_system_controller: system-controller@10020000 {
> > +		compatible = "samsung,exynos4210-pmu", "syscon";
> > +		reg = <0x10020000 0x4000>;
> > +	};
> > +
> >  	dsi_0: dsi@11C80000 {
> >  		compatible = "samsung,exynos4210-mipi-dsi";
> >  		reg = <0x11C80000 0x10000>;
> > diff --git a/arch/arm/boot/dts/exynos4x12.dtsi
> b/arch/arm/boot/dts/exynos4x12.dtsi
> > index c4a9306..7f767f7 100644
> > --- a/arch/arm/boot/dts/exynos4x12.dtsi
> > +++ b/arch/arm/boot/dts/exynos4x12.dtsi
> > @@ -119,6 +119,10 @@
> >  		interrupts = <0 72 0>;
> >  	};
> >
> > +	pmu_system_controller: system-controller@10020000 {
> > +		compatible = "samsung,exynos4x12-pmu", "syscon";
> 
> Here one node is added for both using an undocumented compatible string.
> Please fix this according to documentation.

OK. I forgot to change it. I'll update it.
Thanks.

Best Regards,
Chanho Park

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

* RE: [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node
       [not found]       ` <537A2FEA.6070208-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
@ 2014-05-20  2:01         ` Chanho Park
  0 siblings, 0 replies; 10+ messages in thread
From: Chanho Park @ 2014-05-20  2:01 UTC (permalink / raw)
  To: 'Kukjin Kim', 'Tomasz Figa'
  Cc: linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	k.debski-Sze3O3UU22JBDgjK7y7TUQ

Hi Kukjin,

> -----Original Message-----
> From: Kukjin Kim [mailto:kgene.kim-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org] On Behalf Of Kukjin Kim
> Sent: Tuesday, May 20, 2014 1:23 AM
> To: Tomasz Figa
> Cc: Chanho Park; kgene.kim-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org; linux-samsung-
> soc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; k.debski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org
> Subject: Re: [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node
> 
> On 05/16/14 02:07, Tomasz Figa wrote:
> > Hi Chanho,
> >
> Hi,
> 
> > When testing some other patches with this series applied I found one
> > more issue. Please see below.
> >
> > On 02.05.2014 06:26, Chanho Park wrote:
> >> This patch adds a PMU(Power Management Unit) syscon node. This
> >> should be required for USB Phy syscon regmap I/F.
> >>
> >> Cc: Kamil Debski<k.debski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
> >> Signed-off-by: Chanho Park<chanho61.park-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
> >> Reviewed-by: Tomasz Figa<t.figa-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
> >> ---
> >>   Documentation/devicetree/bindings/arm/samsung/pmu.txt | 3 +++
> >>   arch/arm/boot/dts/exynos4.dtsi                        | 5 +++++
> >>   arch/arm/boot/dts/exynos4x12.dtsi                     | 4 ++++
> >>   3 files changed, 12 insertions(+)
> >>
> >> diff --git a/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> >> index f1f1552..b562634 100644
> >> --- a/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> >> +++ b/Documentation/devicetree/bindings/arm/samsung/pmu.txt
> >> @@ -2,6 +2,9 @@ SAMSUNG Exynos SoC series PMU Registers
> >>
> >>   Properties:
> >>    - compatible : should contain two values. First value must be one
> from following list:
> >> +		   - "samsung,exynos4210-pmu" - for Exynos4210 SoC,
> >> +		   - "samsung,exynos4212-pmu" - for Exynos4212 SoC,
> >> +		   - "samsung,exynos4412-pmu" - for Exynos4412 SoC,
> >
> > Here two compatible strings are specified, one for each SoC in 4x12
> > family, but...
> >
> >>   		- "samsung,exynos5250-pmu" - for Exynos5250 SoC,
> >>   		   - "samsung,exynos5420-pmu" - for Exynos5420 SoC.
> >>   		second value must be always "syscon".
> >> diff --git a/arch/arm/boot/dts/exynos4.dtsi
> b/arch/arm/boot/dts/exynos4.dtsi
> >> index 2f8bcd0..264066f 100644
> >> --- a/arch/arm/boot/dts/exynos4.dtsi
> >> +++ b/arch/arm/boot/dts/exynos4.dtsi
> >> @@ -110,6 +110,11 @@
> >>   		reg =<0x10010000 0x400>;
> >>   	};
> >>
> >> +	pmu_system_controller: system-controller@10020000 {
> >> +		compatible = "samsung,exynos4210-pmu", "syscon";
> >> +		reg =<0x10020000 0x4000>;
> >> +	};
> >> +
> >>   	dsi_0: dsi@11C80000 {
> >>   		compatible = "samsung,exynos4210-mipi-dsi";
> >>   		reg =<0x11C80000 0x10000>;
> >> diff --git a/arch/arm/boot/dts/exynos4x12.dtsi
> b/arch/arm/boot/dts/exynos4x12.dtsi
> >> index c4a9306..7f767f7 100644
> >> --- a/arch/arm/boot/dts/exynos4x12.dtsi
> >> +++ b/arch/arm/boot/dts/exynos4x12.dtsi
> >> @@ -119,6 +119,10 @@
> >>   		interrupts =<0 72 0>;
> >>   	};
> >>
> >> +	pmu_system_controller: system-controller@10020000 {
> >> +		compatible = "samsung,exynos4x12-pmu", "syscon";
> >
> > Here one node is added for both using an undocumented compatible
> string.
> > Please fix this according to documentation.
> >
> 
> Chanho, updated patch?

I'll re-send the patchset soon.
Thanks.

Best Regards,
Chanho Park

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2014-05-20  2:01 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-02  4:26 [PATCHv4 0/4] Enable usbphy and hsotg for exynos4 Chanho Park
2014-05-02  4:26 ` [PATCHv4 1/4] ARM: dts: exynos4: add PMU syscon node Chanho Park
2014-05-15 17:07   ` Tomasz Figa
2014-05-19 16:23     ` Kukjin Kim
     [not found]       ` <537A2FEA.6070208-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-05-20  2:01         ` Chanho Park
2014-05-20  2:01     ` Chanho Park
2014-05-02  4:26 ` [PATCHv4 2/4] ARM: dts: exynos4: add exynos_usbphy node Chanho Park
2014-05-02  4:26 ` [PATCHv4 3/4] ARM: dts: exynos4: add hsotg device node Chanho Park
2014-05-02  4:26 ` [PATCHv4 4/4] ARM: dts: exynos4412-trats2: enable usb nodes Chanho Park
2014-05-02 18:21 ` [PATCHv4 0/4] Enable usbphy and hsotg for exynos4 Tomasz Figa

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