2020-08-19 18:00:16

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema

Fix dtschema validator warnings like:
l2-cache-controller@80040000: $nodename:0:
'l2-cache-controller@80040000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
arch/arm/boot/dts/prima2.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/prima2.dtsi b/arch/arm/boot/dts/prima2.dtsi
index 9c7b46b90c3c..7d3d93c22ed9 100644
--- a/arch/arm/boot/dts/prima2.dtsi
+++ b/arch/arm/boot/dts/prima2.dtsi
@@ -50,7 +50,7 @@
#size-cells = <1>;
ranges = <0x40000000 0x40000000 0x80000000>;

- l2-cache-controller@80040000 {
+ cache-controller@80040000 {
compatible = "arm,pl310-cache";
reg = <0x80040000 0x1000>;
interrupts = <59>;
--
2.17.1


2020-08-19 18:00:40

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [RESEND PATCH 4/5] ARM: dts: tango: Align L2 cache-controller nodename with dtschema

Fix dtschema validator warnings like:
l2-cache-controller@20100000: $nodename:0:
'l2-cache-controller@20100000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
arch/arm/boot/dts/tango4-common.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/tango4-common.dtsi b/arch/arm/boot/dts/tango4-common.dtsi
index 54fd522badfc..d584da314500 100644
--- a/arch/arm/boot/dts/tango4-common.dtsi
+++ b/arch/arm/boot/dts/tango4-common.dtsi
@@ -51,7 +51,7 @@
};
};

- l2cc: l2-cache-controller@20100000 {
+ l2cc: cache-controller@20100000 {
compatible = "arm,pl310-cache";
reg = <0x20100000 0x1000>;
cache-level = <2>;
--
2.17.1

2020-08-19 18:01:15

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [RESEND PATCH 3/5] ARM: dts: spear: Align L2 cache-controller nodename with dtschema

Fix dtschema validator warnings like:
l2-cache: $nodename:0: 'l2-cache' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
arch/arm/boot/dts/spear13xx.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/spear13xx.dtsi b/arch/arm/boot/dts/spear13xx.dtsi
index f187da4485f4..c87b881b2c8b 100644
--- a/arch/arm/boot/dts/spear13xx.dtsi
+++ b/arch/arm/boot/dts/spear13xx.dtsi
@@ -43,7 +43,7 @@
0 7 0x04>;
};

- L2: l2-cache {
+ L2: cache-controller {
compatible = "arm,pl310-cache";
reg = <0xed000000 0x1000>;
cache-unified;
--
2.17.1

2020-08-19 18:01:37

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [RESEND PATCH 5/5] ARM: dts: zx: Align L2 cache-controller nodename with dtschema

Fix dtschema validator warnings like:
l2-cache-controller@c00000: $nodename:0:
'l2-cache-controller@c00000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
arch/arm/boot/dts/zx296702.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/zx296702.dtsi b/arch/arm/boot/dts/zx296702.dtsi
index afd98de029be..f378c661b3bf 100644
--- a/arch/arm/boot/dts/zx296702.dtsi
+++ b/arch/arm/boot/dts/zx296702.dtsi
@@ -58,7 +58,7 @@
clocks = <&topclk ZX296702_A9_PERIPHCLK>;
};

- l2cc: l2-cache-controller@c00000 {
+ l2cc: cache-controller@c00000 {
compatible = "arm,pl310-cache";
reg = <0x00c00000 0x1000>;
cache-unified;
--
2.17.1

2020-08-19 18:02:09

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [RESEND PATCH 2/5] ARM: dts: qcom: Align L2 cache-controller nodename with dtschema

Fix dtschema validator warnings like:
l2-cache@2040000: $nodename:0:
'l2-cache@2040000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
arch/arm/boot/dts/qcom-mdm9615.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/qcom-mdm9615.dtsi b/arch/arm/boot/dts/qcom-mdm9615.dtsi
index 347b4f7d7889..dda2ceec6591 100644
--- a/arch/arm/boot/dts/qcom-mdm9615.dtsi
+++ b/arch/arm/boot/dts/qcom-mdm9615.dtsi
@@ -98,7 +98,7 @@
ranges;
compatible = "simple-bus";

- L2: l2-cache@2040000 {
+ L2: cache-controller@2040000 {
compatible = "arm,pl310-cache";
reg = <0x02040000 0x1000>;
arm,data-latency = <2 2 0>;
--
2.17.1

2020-08-19 18:29:12

by Måns Rullgård

[permalink] [raw]
Subject: Re: [RESEND PATCH 4/5] ARM: dts: tango: Align L2 cache-controller nodename with dtschema

Krzysztof Kozlowski <[email protected]> writes:

> Fix dtschema validator warnings like:
> l2-cache-controller@20100000: $nodename:0:
> 'l2-cache-controller@20100000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>

Acked-by: Mans Rullgard <[email protected]>

> ---
> arch/arm/boot/dts/tango4-common.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/tango4-common.dtsi b/arch/arm/boot/dts/tango4-common.dtsi
> index 54fd522badfc..d584da314500 100644
> --- a/arch/arm/boot/dts/tango4-common.dtsi
> +++ b/arch/arm/boot/dts/tango4-common.dtsi
> @@ -51,7 +51,7 @@
> };
> };
>
> - l2cc: l2-cache-controller@20100000 {
> + l2cc: cache-controller@20100000 {
> compatible = "arm,pl310-cache";
> reg = <0x20100000 0x1000>;
> cache-level = <2>;
> --
> 2.17.1
>

--
M?ns Rullg?rd

2020-08-20 04:51:48

by Viresh Kumar

[permalink] [raw]
Subject: Re: [RESEND PATCH 3/5] ARM: dts: spear: Align L2 cache-controller nodename with dtschema

On 19-08-20, 19:58, Krzysztof Kozlowski wrote:
> Fix dtschema validator warnings like:
> l2-cache: $nodename:0: 'l2-cache' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---
> arch/arm/boot/dts/spear13xx.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/spear13xx.dtsi b/arch/arm/boot/dts/spear13xx.dtsi
> index f187da4485f4..c87b881b2c8b 100644
> --- a/arch/arm/boot/dts/spear13xx.dtsi
> +++ b/arch/arm/boot/dts/spear13xx.dtsi
> @@ -43,7 +43,7 @@
> 0 7 0x04>;
> };
>
> - L2: l2-cache {
> + L2: cache-controller {
> compatible = "arm,pl310-cache";
> reg = <0xed000000 0x1000>;
> cache-unified;

Acked-by: Viresh Kumar <[email protected]>

--
viresh

2020-08-20 09:34:37

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema

On Wed, Aug 19, 2020 at 07:58:49PM +0200, Krzysztof Kozlowski wrote:
> Fix dtschema validator warnings like:
> l2-cache-controller@80040000: $nodename:0:
> 'l2-cache-controller@80040000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---
> arch/arm/boot/dts/prima2.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>

I forgot to add the tag provided on previous submission:
Acked-by: Barry Song <[email protected]>

Best regards,
Krzysztof

2020-08-20 09:35:07

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [RESEND PATCH 4/5] ARM: dts: tango: Align L2 cache-controller nodename with dtschema

On Wed, Aug 19, 2020 at 07:58:52PM +0200, Krzysztof Kozlowski wrote:
> Fix dtschema validator warnings like:
> l2-cache-controller@20100000: $nodename:0:
> 'l2-cache-controller@20100000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---
> arch/arm/boot/dts/tango4-common.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)

I forgot to add the tag provided on previous submission:
Acked-by: Mans Rullgard <[email protected]>

Best regards,
Krzysztof

2020-08-20 13:50:00

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [RESEND PATCH 5/5] ARM: dts: zx: Align L2 cache-controller nodename with dtschema

On Wed, Aug 19, 2020 at 07:58:53PM +0200, Krzysztof Kozlowski wrote:
> Fix dtschema validator warnings like:
> l2-cache-controller@c00000: $nodename:0:
> 'l2-cache-controller@c00000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>

I forgot to add the tag from Jun provided on previous submission:
Reviewed-by: Jun Nie <[email protected]>

Best regards,
Krzysztof

> ---
> arch/arm/boot/dts/zx296702.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/zx296702.dtsi b/arch/arm/boot/dts/zx296702.dtsi
> index afd98de029be..f378c661b3bf 100644
> --- a/arch/arm/boot/dts/zx296702.dtsi
> +++ b/arch/arm/boot/dts/zx296702.dtsi
> @@ -58,7 +58,7 @@
> clocks = <&topclk ZX296702_A9_PERIPHCLK>;
> };
>
> - l2cc: l2-cache-controller@c00000 {
> + l2cc: cache-controller@c00000 {
> compatible = "arm,pl310-cache";
> reg = <0x00c00000 0x1000>;
> cache-unified;
> --
> 2.17.1
>

2020-08-30 15:01:25

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [RESEND PATCH 5/5] ARM: dts: zx: Align L2 cache-controller nodename with dtschema

On Thu, Aug 20, 2020 at 11:30:10AM +0200, Krzysztof Kozlowski wrote:
> On Wed, Aug 19, 2020 at 07:58:53PM +0200, Krzysztof Kozlowski wrote:
> > Fix dtschema validator warnings like:
> > l2-cache-controller@c00000: $nodename:0:
> > 'l2-cache-controller@c00000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> >
> > Signed-off-by: Krzysztof Kozlowski <[email protected]>
>
> I forgot to add the tag from Jun provided on previous submission:
> Reviewed-by: Jun Nie <[email protected]>
>
> Best regards,
> Krzysztof
>

Hi,

Ping, any comments here? Can anyone pick it up?

Best regards,
Krzysztof

2020-08-30 15:02:31

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [RESEND PATCH 4/5] ARM: dts: tango: Align L2 cache-controller nodename with dtschema

On Thu, Aug 20, 2020 at 11:31:18AM +0200, Krzysztof Kozlowski wrote:
> On Wed, Aug 19, 2020 at 07:58:52PM +0200, Krzysztof Kozlowski wrote:
> > Fix dtschema validator warnings like:
> > l2-cache-controller@20100000: $nodename:0:
> > 'l2-cache-controller@20100000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> >
> > Signed-off-by: Krzysztof Kozlowski <[email protected]>
> > ---
> > arch/arm/boot/dts/tango4-common.dtsi | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
>
> I forgot to add the tag provided on previous submission:
> Acked-by: Mans Rullgard <[email protected]>

Hi,

Ping, any comments here?

Best regards,
Krzysztof

2020-08-30 15:02:55

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema

On Thu, Aug 20, 2020 at 11:30:53AM +0200, Krzysztof Kozlowski wrote:
> On Wed, Aug 19, 2020 at 07:58:49PM +0200, Krzysztof Kozlowski wrote:
> > Fix dtschema validator warnings like:
> > l2-cache-controller@80040000: $nodename:0:
> > 'l2-cache-controller@80040000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> >
> > Signed-off-by: Krzysztof Kozlowski <[email protected]>
> > ---
> > arch/arm/boot/dts/prima2.dtsi | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
>
> I forgot to add the tag provided on previous submission:
> Acked-by: Barry Song <[email protected]>
>
> Best regards,
> Krzysztof

Hi,

Ping, any comments here?

Best regards,
Krzysztof