Message ID | 20200110093157.17941-1-lokeshvutla@ti.com |
---|---|
State | Accepted |
Commit | 57a088a0f06aafae64d36241b3d5f05d01e442b1 |
Headers | show |
Series | arm: dts: k3-am654-r5-base-board: Fix power-domains for wkup_vtm0 | expand |
On 1/10/2020 3:01 PM, Lokesh Vutla wrote: > wkup_vtm populates only 1 power-domain cell in it's node. But the > power-domain cell are defined as 2. Due to this the following warning > comes during build: > > arch/arm/dts/k3-am654-r5-base-board.dtb: Warning (power_domains_property): > /interconnect at 100000/interconnect at 28380000/interconnect at 42040000/ > wkup_vtm at 42050000:power-domains: property size (8) too small for cell size 2 > > Fix this by updating the power-domain cells. Reviewed-by: Keerthy <j-keerthy at ti.com> > > Fixes: cfa6bd549c ("arm: dts: k3-am654-r5-base-board: Add VTM node") > Signed-off-by: Lokesh Vutla <lokeshvutla at ti.com> > --- > arch/arm/dts/k3-am654-r5-base-board.dts | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/dts/k3-am654-r5-base-board.dts b/arch/arm/dts/k3-am654-r5-base-board.dts > index 5c110ef9dd..5d5689d284 100644 > --- a/arch/arm/dts/k3-am654-r5-base-board.dts > +++ b/arch/arm/dts/k3-am654-r5-base-board.dts > @@ -100,7 +100,7 @@ > wkup_vtm0: wkup_vtm at 42050000 { > compatible = "ti,am654-vtm", "ti,am654-avs"; > reg = <0x42050000 0x25c>; > - power-domains = <&k3_pds 80>; > + power-domains = <&k3_pds 80 TI_SCI_PD_EXCLUSIVE>; > #thermal-sensor-cells = <1>; > }; > >
diff --git a/arch/arm/dts/k3-am654-r5-base-board.dts b/arch/arm/dts/k3-am654-r5-base-board.dts index 5c110ef9dd..5d5689d284 100644 --- a/arch/arm/dts/k3-am654-r5-base-board.dts +++ b/arch/arm/dts/k3-am654-r5-base-board.dts @@ -100,7 +100,7 @@ wkup_vtm0: wkup_vtm at 42050000 { compatible = "ti,am654-vtm", "ti,am654-avs"; reg = <0x42050000 0x25c>; - power-domains = <&k3_pds 80>; + power-domains = <&k3_pds 80 TI_SCI_PD_EXCLUSIVE>; #thermal-sensor-cells = <1>; };
wkup_vtm populates only 1 power-domain cell in it's node. But the power-domain cell are defined as 2. Due to this the following warning comes during build: arch/arm/dts/k3-am654-r5-base-board.dtb: Warning (power_domains_property): /interconnect at 100000/interconnect at 28380000/interconnect at 42040000/ wkup_vtm at 42050000:power-domains: property size (8) too small for cell size 2 Fix this by updating the power-domain cells. Fixes: cfa6bd549c ("arm: dts: k3-am654-r5-base-board: Add VTM node") Signed-off-by: Lokesh Vutla <lokeshvutla at ti.com> --- arch/arm/dts/k3-am654-r5-base-board.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)