Re: [PATCH] ARM: dts: Add l2x0 device node for Exynos4-based boards

2014-02-12 Thread Tomasz Figa

On 12.02.2014 10:33, Tushar Behera wrote:

On 24 January 2014 17:18, Tomasz Figa  wrote:



On 24.01.2014 05:44, Tushar Behera wrote:


On 23 January 2014 23:45, Tomasz Figa  wrote:


Hi,


On 07.01.2014 09:53, Tushar Behera wrote:



For Exynos4 platform, L2 cache initialization is done only if
a device node for l2x0 device exists.

L2 cache initialization path is different when a board boots with
secure firmware. Since there are many Exynos4 based SoCs that boot
in secure mode, enabling this only for boards that don't boot with
secure firmware.

Signed-off-by: Tushar Behera 
---

Tested on Exynos4210-Origen board.

arch/arm/boot/dts/exynos4.dtsi  |8 
arch/arm/boot/dts/exynos4210-origen.dts |4 
arch/arm/boot/dts/exynos4210-smdkv310.dts   |4 
arch/arm/boot/dts/exynos4210-trats.dts  |4 
arch/arm/boot/dts/exynos4210-universal_c210.dts |4 
arch/arm/boot/dts/exynos4412-odroidx.dts|4 
arch/arm/boot/dts/exynos4412-smdk4412.dts   |4 
arch/arm/boot/dts/exynos4412-tiny4412.dts   |4 
8 files changed, 36 insertions(+)




Looks good. Unfortunately this is still going to break secure firmware
enabled boards, because l2x0_of_init() does not check if the node is
enabled.



Is the following check in l2x0_of_init() not enough?

1002 |---np = of_find_matching_node(NULL, l2x0_ids);
1003 |---if (!np)
1004 |---|---return -ENODEV;



It only looks for a matching node without checking its status property.



Hmm ... so in that case, will this work?

diff --git a/arch/arm/mm/cache-l2x0.c b/arch/arm/mm/cache-l2x0.c
index 7abde2ce..ebcab01 100644
--- a/arch/arm/mm/cache-l2x0.c
+++ b/arch/arm/mm/cache-l2x0.c
@@ -973,11 +973,17 @@ int __init l2x0_of_init(u32 aux_val, u32 aux_mask)
 struct device_node *np;
 const struct l2x0_of_data *data;
 struct resource res;
+   const char *status;

 np = of_find_matching_node(NULL, l2x0_ids);
 if (!np)
 return -ENODEV;

+   status = of_get_property(np, "status", NULL);
+   if (status)
+   if (strcmp(status, "okay"))
+   return -ENODEV;
+
 if (of_address_to_resource(np, 0, &res))
 return -ENODEV;


Yes, this would work, but there is already

int of_device_is_available(const struct device_node *device)

which can be used instead of open coding this.

Best regards,
Tomasz
--
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] ARM: dts: Add l2x0 device node for Exynos4-based boards

2014-02-12 Thread Tushar Behera
On 24 January 2014 17:18, Tomasz Figa  wrote:
>
>
> On 24.01.2014 05:44, Tushar Behera wrote:
>>
>> On 23 January 2014 23:45, Tomasz Figa  wrote:
>>>
>>> Hi,
>>>
>>>
>>> On 07.01.2014 09:53, Tushar Behera wrote:


 For Exynos4 platform, L2 cache initialization is done only if
 a device node for l2x0 device exists.

 L2 cache initialization path is different when a board boots with
 secure firmware. Since there are many Exynos4 based SoCs that boot
 in secure mode, enabling this only for boards that don't boot with
 secure firmware.

 Signed-off-by: Tushar Behera 
 ---

 Tested on Exynos4210-Origen board.

arch/arm/boot/dts/exynos4.dtsi  |8 
arch/arm/boot/dts/exynos4210-origen.dts |4 
arch/arm/boot/dts/exynos4210-smdkv310.dts   |4 
arch/arm/boot/dts/exynos4210-trats.dts  |4 
arch/arm/boot/dts/exynos4210-universal_c210.dts |4 
arch/arm/boot/dts/exynos4412-odroidx.dts|4 
arch/arm/boot/dts/exynos4412-smdk4412.dts   |4 
arch/arm/boot/dts/exynos4412-tiny4412.dts   |4 
8 files changed, 36 insertions(+)
>>>
>>>
>>>
>>> Looks good. Unfortunately this is still going to break secure firmware
>>> enabled boards, because l2x0_of_init() does not check if the node is
>>> enabled.
>>>
>>
>> Is the following check in l2x0_of_init() not enough?
>>
>> 1002 |---np = of_find_matching_node(NULL, l2x0_ids);
>> 1003 |---if (!np)
>> 1004 |---|---return -ENODEV;
>
>
> It only looks for a matching node without checking its status property.
>

Hmm ... so in that case, will this work?

diff --git a/arch/arm/mm/cache-l2x0.c b/arch/arm/mm/cache-l2x0.c
index 7abde2ce..ebcab01 100644
--- a/arch/arm/mm/cache-l2x0.c
+++ b/arch/arm/mm/cache-l2x0.c
@@ -973,11 +973,17 @@ int __init l2x0_of_init(u32 aux_val, u32 aux_mask)
struct device_node *np;
const struct l2x0_of_data *data;
struct resource res;
+   const char *status;

np = of_find_matching_node(NULL, l2x0_ids);
if (!np)
return -ENODEV;

+   status = of_get_property(np, "status", NULL);
+   if (status)
+   if (strcmp(status, "okay"))
+   return -ENODEV;
+
if (of_address_to_resource(np, 0, &res))
return -ENODEV;



-- 
Tushar Behera
--
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] ARM: dts: Add l2x0 device node for Exynos4-based boards

2014-01-24 Thread Tomasz Figa



On 24.01.2014 05:44, Tushar Behera wrote:

On 23 January 2014 23:45, Tomasz Figa  wrote:

Hi,


On 07.01.2014 09:53, Tushar Behera wrote:


For Exynos4 platform, L2 cache initialization is done only if
a device node for l2x0 device exists.

L2 cache initialization path is different when a board boots with
secure firmware. Since there are many Exynos4 based SoCs that boot
in secure mode, enabling this only for boards that don't boot with
secure firmware.

Signed-off-by: Tushar Behera 
---

Tested on Exynos4210-Origen board.

   arch/arm/boot/dts/exynos4.dtsi  |8 
   arch/arm/boot/dts/exynos4210-origen.dts |4 
   arch/arm/boot/dts/exynos4210-smdkv310.dts   |4 
   arch/arm/boot/dts/exynos4210-trats.dts  |4 
   arch/arm/boot/dts/exynos4210-universal_c210.dts |4 
   arch/arm/boot/dts/exynos4412-odroidx.dts|4 
   arch/arm/boot/dts/exynos4412-smdk4412.dts   |4 
   arch/arm/boot/dts/exynos4412-tiny4412.dts   |4 
   8 files changed, 36 insertions(+)



Looks good. Unfortunately this is still going to break secure firmware
enabled boards, because l2x0_of_init() does not check if the node is
enabled.



Is the following check in l2x0_of_init() not enough?

1002 |---np = of_find_matching_node(NULL, l2x0_ids);
1003 |---if (!np)
1004 |---|---return -ENODEV;


It only looks for a matching node without checking its status property.

Best regards,
Tomasz
--
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] ARM: dts: Add l2x0 device node for Exynos4-based boards

2014-01-23 Thread Tushar Behera
On 23 January 2014 23:45, Tomasz Figa  wrote:
> Hi,
>
>
> On 07.01.2014 09:53, Tushar Behera wrote:
>>
>> For Exynos4 platform, L2 cache initialization is done only if
>> a device node for l2x0 device exists.
>>
>> L2 cache initialization path is different when a board boots with
>> secure firmware. Since there are many Exynos4 based SoCs that boot
>> in secure mode, enabling this only for boards that don't boot with
>> secure firmware.
>>
>> Signed-off-by: Tushar Behera 
>> ---
>>
>> Tested on Exynos4210-Origen board.
>>
>>   arch/arm/boot/dts/exynos4.dtsi  |8 
>>   arch/arm/boot/dts/exynos4210-origen.dts |4 
>>   arch/arm/boot/dts/exynos4210-smdkv310.dts   |4 
>>   arch/arm/boot/dts/exynos4210-trats.dts  |4 
>>   arch/arm/boot/dts/exynos4210-universal_c210.dts |4 
>>   arch/arm/boot/dts/exynos4412-odroidx.dts|4 
>>   arch/arm/boot/dts/exynos4412-smdk4412.dts   |4 
>>   arch/arm/boot/dts/exynos4412-tiny4412.dts   |4 
>>   8 files changed, 36 insertions(+)
>
>
> Looks good. Unfortunately this is still going to break secure firmware
> enabled boards, because l2x0_of_init() does not check if the node is
> enabled.
>

Is the following check in l2x0_of_init() not enough?

1002 |---np = of_find_matching_node(NULL, l2x0_ids);
1003 |---if (!np)
1004 |---|---return -ENODEV;

> Best regards,
> Tomasz

-- 
Tushar Behera
--
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] ARM: dts: Add l2x0 device node for Exynos4-based boards

2014-01-23 Thread Tomasz Figa

Hi,

On 07.01.2014 09:53, Tushar Behera wrote:

For Exynos4 platform, L2 cache initialization is done only if
a device node for l2x0 device exists.

L2 cache initialization path is different when a board boots with
secure firmware. Since there are many Exynos4 based SoCs that boot
in secure mode, enabling this only for boards that don't boot with
secure firmware.

Signed-off-by: Tushar Behera 
---

Tested on Exynos4210-Origen board.

  arch/arm/boot/dts/exynos4.dtsi  |8 
  arch/arm/boot/dts/exynos4210-origen.dts |4 
  arch/arm/boot/dts/exynos4210-smdkv310.dts   |4 
  arch/arm/boot/dts/exynos4210-trats.dts  |4 
  arch/arm/boot/dts/exynos4210-universal_c210.dts |4 
  arch/arm/boot/dts/exynos4412-odroidx.dts|4 
  arch/arm/boot/dts/exynos4412-smdk4412.dts   |4 
  arch/arm/boot/dts/exynos4412-tiny4412.dts   |4 
  8 files changed, 36 insertions(+)


Looks good. Unfortunately this is still going to break secure firmware 
enabled boards, because l2x0_of_init() does not check if the node is 
enabled.


Best regards,
Tomasz
--
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


[PATCH] ARM: dts: Add l2x0 device node for Exynos4-based boards

2014-01-07 Thread Tushar Behera
For Exynos4 platform, L2 cache initialization is done only if
a device node for l2x0 device exists.

L2 cache initialization path is different when a board boots with
secure firmware. Since there are many Exynos4 based SoCs that boot
in secure mode, enabling this only for boards that don't boot with
secure firmware.

Signed-off-by: Tushar Behera 
---

Tested on Exynos4210-Origen board.

 arch/arm/boot/dts/exynos4.dtsi  |8 
 arch/arm/boot/dts/exynos4210-origen.dts |4 
 arch/arm/boot/dts/exynos4210-smdkv310.dts   |4 
 arch/arm/boot/dts/exynos4210-trats.dts  |4 
 arch/arm/boot/dts/exynos4210-universal_c210.dts |4 
 arch/arm/boot/dts/exynos4412-odroidx.dts|4 
 arch/arm/boot/dts/exynos4412-smdk4412.dts   |4 
 arch/arm/boot/dts/exynos4412-tiny4412.dts   |4 
 8 files changed, 36 insertions(+)

diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi
index 08452e1..e0ddbd2 100644
--- a/arch/arm/boot/dts/exynos4.dtsi
+++ b/arch/arm/boot/dts/exynos4.dtsi
@@ -49,6 +49,14 @@
reg = <0x1000 0x100>;
};
 
+   l2-cache-controller@10502000 {
+   compatible = "arm,pl310-cache";
+   reg = <0x10502000 0x1000>;
+   cache-unified;
+   cache-level = <2>;
+   status = "disabled";
+   };
+
mipi_phy: video-phy@10020710 {
compatible = "samsung,s5pv210-mipi-video-phy";
reg = <0x10020710 8>;
diff --git a/arch/arm/boot/dts/exynos4210-origen.dts 
b/arch/arm/boot/dts/exynos4210-origen.dts
index 2aa13cb..eea1286 100644
--- a/arch/arm/boot/dts/exynos4210-origen.dts
+++ b/arch/arm/boot/dts/exynos4210-origen.dts
@@ -32,6 +32,10 @@
bootargs ="root=/dev/ram0 rw ramdisk=8192 initrd=0x4100,8M 
console=ttySAC2,115200 init=/linuxrc";
};
 
+   l2-cache-controller@10502000 {
+   status = "okay";
+   };
+
regulators {
compatible = "simple-bus";
#address-cells = <1>;
diff --git a/arch/arm/boot/dts/exynos4210-smdkv310.dts 
b/arch/arm/boot/dts/exynos4210-smdkv310.dts
index 9c01b71..5ce2869 100644
--- a/arch/arm/boot/dts/exynos4210-smdkv310.dts
+++ b/arch/arm/boot/dts/exynos4210-smdkv310.dts
@@ -29,6 +29,10 @@
bootargs = "root=/dev/ram0 rw ramdisk=8192 initrd=0x4100,8M 
console=ttySAC1,115200 init=/linuxrc";
};
 
+   l2-cache-controller@10502000 {
+   status = "okay";
+   };
+
sdhci@1253 {
bus-width = <4>;
pinctrl-names = "default";
diff --git a/arch/arm/boot/dts/exynos4210-trats.dts 
b/arch/arm/boot/dts/exynos4210-trats.dts
index 63cc571..00dbc6c 100644
--- a/arch/arm/boot/dts/exynos4210-trats.dts
+++ b/arch/arm/boot/dts/exynos4210-trats.dts
@@ -30,6 +30,10 @@
bootargs = "console=ttySAC2,115200N8 root=/dev/mmcblk0p5 
rootwait earlyprintk panic=5";
};
 
+   l2-cache-controller@10502000 {
+   status = "okay";
+   };
+
regulators {
compatible = "simple-bus";
 
diff --git a/arch/arm/boot/dts/exynos4210-universal_c210.dts 
b/arch/arm/boot/dts/exynos4210-universal_c210.dts
index d2e3f5f..e732afe 100644
--- a/arch/arm/boot/dts/exynos4210-universal_c210.dts
+++ b/arch/arm/boot/dts/exynos4210-universal_c210.dts
@@ -28,6 +28,10 @@
bootargs = "console=ttySAC2,115200N8 root=/dev/mmcblk0p5 rw 
rootwait earlyprintk panic=5 maxcpus=1";
};
 
+   l2-cache-controller@10502000 {
+   status = "okay";
+   };
+
mct@1005 {
compatible = "none";
};
diff --git a/arch/arm/boot/dts/exynos4412-odroidx.dts 
b/arch/arm/boot/dts/exynos4412-odroidx.dts
index 8aad5f7..6fb9e84 100644
--- a/arch/arm/boot/dts/exynos4412-odroidx.dts
+++ b/arch/arm/boot/dts/exynos4412-odroidx.dts
@@ -22,6 +22,10 @@
reg = <0x4000 0x4000>;
};
 
+   l2-cache-controller@10502000 {
+   status = "okay";
+   };
+
leds {
compatible = "gpio-leds";
led1 {
diff --git a/arch/arm/boot/dts/exynos4412-smdk4412.dts 
b/arch/arm/boot/dts/exynos4412-smdk4412.dts
index ad316a1..f72d425 100644
--- a/arch/arm/boot/dts/exynos4412-smdk4412.dts
+++ b/arch/arm/boot/dts/exynos4412-smdk4412.dts
@@ -27,6 +27,10 @@
bootargs ="root=/dev/ram0 rw ramdisk=8192 initrd=0x4100,8M 
console=ttySAC1,115200 init=/linuxrc";
};
 
+   l2-cache-controller@10502000 {
+   status = "okay";
+   };
+
g2d@1080 {
status = "okay";
};
diff --git a/arch/arm/boot/dts/exynos4412-tiny4412.dts 
b/arch/arm/boot/dts/exynos4412-tiny4412.dts
index 0a98312..33a3cb89 100644
--- a/arch/arm/boot/dts/exynos4412-tiny4412.dts
+++ b/arch/arm/boot/dts/exynos4412-tiny4412.dts
@@ -22,6 +22,10 @@
reg =