All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] ARM: dts: k3-j7200-common-proc-board-u-boot.dtsi: Fix dtc warnings
@ 2021-06-14  8:42 Vignesh Raghavendra
  2021-06-21 12:12 ` Lokesh Vutla
  2021-06-24 13:15 ` Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Vignesh Raghavendra @ 2021-06-14  8:42 UTC (permalink / raw)
  To: Lokesh Vutla; +Cc: Vignesh Raghavendra, u-boot

Fix following dtc warning by explicitly setting up #size-cells
and #address-cells when overriding node in -u-boot.dtsi

arch/arm/dts/k3-j7200-common-proc-board.dtb: Warning (reg_format):
/bus@100000/bus@28380000/mcu-navss/ringacc@2b800000:reg: property has
invalid length (80 bytes) (#address-cells == 2, #size-cells == 1)

Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
---
 arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi b/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi
index 41ce9fcb59..786cc48050 100644
--- a/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi
+++ b/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi
@@ -43,6 +43,8 @@
 
 	mcu-navss{
 		u-boot,dm-spl;
+		#address-cells = <2>;
+		#size-cells = <2>;
 
 		ringacc@2b800000 {
 			reg =	<0x0 0x2b800000 0x0 0x400000>,
-- 
2.32.0


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

* Re: [PATCH -next] ARM: dts: k3-j7200-common-proc-board-u-boot.dtsi: Fix dtc warnings
  2021-06-14  8:42 [PATCH -next] ARM: dts: k3-j7200-common-proc-board-u-boot.dtsi: Fix dtc warnings Vignesh Raghavendra
@ 2021-06-21 12:12 ` Lokesh Vutla
  2021-06-21 17:18   ` Tom Rini
  2021-06-24 13:15 ` Tom Rini
  1 sibling, 1 reply; 4+ messages in thread
From: Lokesh Vutla @ 2021-06-21 12:12 UTC (permalink / raw)
  To: Vignesh Raghavendra; +Cc: u-boot, Tom Rini

+Tom

On 14/06/21 2:12 pm, Vignesh Raghavendra wrote:
> Fix following dtc warning by explicitly setting up #size-cells
> and #address-cells when overriding node in -u-boot.dtsi
> 
> arch/arm/dts/k3-j7200-common-proc-board.dtb: Warning (reg_format):
> /bus@100000/bus@28380000/mcu-navss/ringacc@2b800000:reg: property has
> invalid length (80 bytes) (#address-cells == 2, #size-cells == 1)
> 
> Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>

Tom,
	If you don't mind, can you pull the patch to next directly? This fixed the DT
warning on j7200 builds.

Thanks and regards,
Lokesh

> ---
>  arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi b/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi
> index 41ce9fcb59..786cc48050 100644
> --- a/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi
> +++ b/arch/arm/dts/k3-j7200-common-proc-board-u-boot.dtsi
> @@ -43,6 +43,8 @@
>  
>  	mcu-navss{
>  		u-boot,dm-spl;
> +		#address-cells = <2>;
> +		#size-cells = <2>;
>  
>  		ringacc@2b800000 {
>  			reg =	<0x0 0x2b800000 0x0 0x400000>,
> 

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

* Re: [PATCH -next] ARM: dts: k3-j7200-common-proc-board-u-boot.dtsi: Fix dtc warnings
  2021-06-21 12:12 ` Lokesh Vutla
@ 2021-06-21 17:18   ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2021-06-21 17:18 UTC (permalink / raw)
  To: Lokesh Vutla; +Cc: Vignesh Raghavendra, u-boot

[-- Attachment #1: Type: text/plain, Size: 693 bytes --]

On Mon, Jun 21, 2021 at 05:42:15PM +0530, Lokesh Vutla wrote:
> +Tom
> 
> On 14/06/21 2:12 pm, Vignesh Raghavendra wrote:
> > Fix following dtc warning by explicitly setting up #size-cells
> > and #address-cells when overriding node in -u-boot.dtsi
> > 
> > arch/arm/dts/k3-j7200-common-proc-board.dtb: Warning (reg_format):
> > /bus@100000/bus@28380000/mcu-navss/ringacc@2b800000:reg: property has
> > invalid length (80 bytes) (#address-cells == 2, #size-cells == 1)
> > 
> > Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
> 
> Tom,
> 	If you don't mind, can you pull the patch to next directly? This fixed the DT
> warning on j7200 builds.

OK, will do.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* Re: [PATCH -next] ARM: dts: k3-j7200-common-proc-board-u-boot.dtsi: Fix dtc warnings
  2021-06-14  8:42 [PATCH -next] ARM: dts: k3-j7200-common-proc-board-u-boot.dtsi: Fix dtc warnings Vignesh Raghavendra
  2021-06-21 12:12 ` Lokesh Vutla
@ 2021-06-24 13:15 ` Tom Rini
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2021-06-24 13:15 UTC (permalink / raw)
  To: Vignesh Raghavendra; +Cc: Lokesh Vutla, u-boot

[-- Attachment #1: Type: text/plain, Size: 520 bytes --]

On Mon, Jun 14, 2021 at 02:12:39PM +0530, Vignesh Raghavendra wrote:

> Fix following dtc warning by explicitly setting up #size-cells
> and #address-cells when overriding node in -u-boot.dtsi
> 
> arch/arm/dts/k3-j7200-common-proc-board.dtb: Warning (reg_format):
> /bus@100000/bus@28380000/mcu-navss/ringacc@2b800000:reg: property has
> invalid length (80 bytes) (#address-cells == 2, #size-cells == 1)
> 
> Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>

Applied to u-boot/next, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

end of thread, other threads:[~2021-06-24 13:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-14  8:42 [PATCH -next] ARM: dts: k3-j7200-common-proc-board-u-boot.dtsi: Fix dtc warnings Vignesh Raghavendra
2021-06-21 12:12 ` Lokesh Vutla
2021-06-21 17:18   ` Tom Rini
2021-06-24 13:15 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.