[PATCH v2 2/2] arm: dt: Exynos5420: populate cpu node enteries to 8 cpus

2013-09-05 Thread Chander Kashyap
Exynos5420 is octacore SoC from samsung.
Hence populate all the cpu node enteries.

Signed-off-by: Chander Kashyap chander.kash...@linaro.org
---
 arch/arm/boot/dts/exynos5420.dtsi |   28 
 1 file changed, 28 insertions(+)

diff --git a/arch/arm/boot/dts/exynos5420.dtsi 
b/arch/arm/boot/dts/exynos5420.dtsi
index e97c87b..0bd1a40 100644
--- a/arch/arm/boot/dts/exynos5420.dtsi
+++ b/arch/arm/boot/dts/exynos5420.dtsi
@@ -57,6 +57,34 @@
reg = 0x3;
clock-frequency = 18;
};
+
+   cpu4: cpu@0x100 {
+   device_type = cpu;
+   compatible = arm,cortex-a7;
+   reg = 0x100;
+   clock-frequency = 10;
+   };
+
+   cpu5: cpu@0x101 {
+   device_type = cpu;
+   compatible = arm,cortex-a7;
+   reg = 0x101;
+   clock-frequency = 10;
+   };
+
+   cpu6: cpu@0x102 {
+   device_type = cpu;
+   compatible = arm,cortex-a7;
+   reg = 0x102;
+   clock-frequency = 10;
+   };
+
+   cpu7: cpu@0x103 {
+   device_type = cpu;
+   compatible = arm,cortex-a7;
+   reg = 0x103;
+   clock-frequency = 10;
+   };
};
 
clock: clock-controller@0x1001 {
-- 
1.7.9.5

--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 2/2] arm: dt: Exynos5420: populate cpu node enteries to 8 cpus

2013-09-05 Thread Vikas Sajjan
Hi Chander,

On Thu, Sep 5, 2013 at 3:52 PM, Chander Kashyap
chander.kash...@linaro.org wrote:
 Exynos5420 is octacore SoC from samsung.
 Hence populate all the cpu node enteries.

 Signed-off-by: Chander Kashyap chander.kash...@linaro.org
 ---
  arch/arm/boot/dts/exynos5420.dtsi |   28 
  1 file changed, 28 insertions(+)

 diff --git a/arch/arm/boot/dts/exynos5420.dtsi 
 b/arch/arm/boot/dts/exynos5420.dtsi
 index e97c87b..0bd1a40 100644
 --- a/arch/arm/boot/dts/exynos5420.dtsi
 +++ b/arch/arm/boot/dts/exynos5420.dtsi
 @@ -57,6 +57,34 @@
 reg = 0x3;
 clock-frequency = 18;
 };
 +
 +   cpu4: cpu@0x100 {


you are NOT suppose to use '0x' in dt node name.
it should be  cpu4: cpu@100 {


 +   device_type = cpu;
 +   compatible = arm,cortex-a7;
 +   reg = 0x100;
 +   clock-frequency = 10;
 +   };
 +
 +   cpu5: cpu@0x101 {

ditto.


 +   device_type = cpu;
 +   compatible = arm,cortex-a7;
 +   reg = 0x101;
 +   clock-frequency = 10;
 +   };
 +
 +   cpu6: cpu@0x102 {

ditto.

 +   device_type = cpu;
 +   compatible = arm,cortex-a7;
 +   reg = 0x102;
 +   clock-frequency = 10;
 +   };
 +
 +   cpu7: cpu@0x103 {

ditto.

 +   device_type = cpu;
 +   compatible = arm,cortex-a7;
 +   reg = 0x103;
 +   clock-frequency = 10;
 +   };
 };

 clock: clock-controller@0x1001 {
 --
 1.7.9.5

 --
 To unsubscribe from this list: send the line unsubscribe linux-samsung-soc 
 in
 the body of a message to majord...@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 2/2] arm: dt: Exynos5420: populate cpu node enteries to 8 cpus

2013-09-05 Thread Chander Kashyap
Hi Vikas,

On 5 September 2013 16:09, Vikas Sajjan sajjan.li...@gmail.com wrote:
 Hi Chander,

 On Thu, Sep 5, 2013 at 3:52 PM, Chander Kashyap
 chander.kash...@linaro.org wrote:
 Exynos5420 is octacore SoC from samsung.
 Hence populate all the cpu node enteries.

 Signed-off-by: Chander Kashyap chander.kash...@linaro.org
 ---
  arch/arm/boot/dts/exynos5420.dtsi |   28 
  1 file changed, 28 insertions(+)

 diff --git a/arch/arm/boot/dts/exynos5420.dtsi 
 b/arch/arm/boot/dts/exynos5420.dtsi
 index e97c87b..0bd1a40 100644
 --- a/arch/arm/boot/dts/exynos5420.dtsi
 +++ b/arch/arm/boot/dts/exynos5420.dtsi
 @@ -57,6 +57,34 @@
 reg = 0x3;
 clock-frequency = 18;
 };
 +
 +   cpu4: cpu@0x100 {


 you are NOT suppose to use '0x' in dt node name.
 it should be  cpu4: cpu@100 {

Ok, I will fix it.



 +   device_type = cpu;
 +   compatible = arm,cortex-a7;
 +   reg = 0x100;
 +   clock-frequency = 10;
 +   };
 +
 +   cpu5: cpu@0x101 {

 ditto.


 +   device_type = cpu;
 +   compatible = arm,cortex-a7;
 +   reg = 0x101;
 +   clock-frequency = 10;
 +   };
 +
 +   cpu6: cpu@0x102 {

 ditto.

 +   device_type = cpu;
 +   compatible = arm,cortex-a7;
 +   reg = 0x102;
 +   clock-frequency = 10;
 +   };
 +
 +   cpu7: cpu@0x103 {

 ditto.

 +   device_type = cpu;
 +   compatible = arm,cortex-a7;
 +   reg = 0x103;
 +   clock-frequency = 10;
 +   };
 };

 clock: clock-controller@0x1001 {
 --
 1.7.9.5

 --
 To unsubscribe from this list: send the line unsubscribe linux-samsung-soc 
 in
 the body of a message to majord...@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
with warm regards,
Chander Kashyap
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html