devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: imx95: Drop unsupported opp-hz-real in OPP tables
@ 2026-09-15  7:23 Krzysztof Kozlowski
  2026-09-15 14:49 ` Frank Li
  0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2026-09-15  7:23 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Frank Li,
	Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, devicetree,
	imx, linux-arm-kernel, linux-kernel
  Cc: Krzysztof Kozlowski

There is no "opp-hz-real" property at all defined in the bindings and
new DTS is not allowed to bring undocumented properties.  Fix dtbs_check
warnings like:

  imx95-15x15-evk-pcie0-ep.dtb: opp-500000000: opp-hz-real: b'\x00\x00\x00\x00\x1d\xcde\x00' is not of type 'object', 'integer', 'array', 'boolean', 'null'

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
---
 arch/arm64/boot/dts/freescale/imx95.dtsi  | 3 ---
 arch/arm64/boot/dts/freescale/imx952.dtsi | 3 ---
 2 files changed, 6 deletions(-)

diff --git a/arch/arm64/boot/dts/freescale/imx95.dtsi b/arch/arm64/boot/dts/freescale/imx95.dtsi
index 1cb8eb15e5c7..99c72d5cd125 100644
--- a/arch/arm64/boot/dts/freescale/imx95.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx95.dtsi
@@ -255,19 +255,16 @@ gpu_opp_table: opp-table {
 
 		opp-500000000 {
 			opp-hz = /bits/ 64 <500000000>;
-			opp-hz-real = /bits/ 64 <500000000>;
 			opp-microvolt = <920000>;
 		};
 
 		opp-800000000 {
 			opp-hz = /bits/ 64 <800000000>;
-			opp-hz-real = /bits/ 64 <800000000>;
 			opp-microvolt = <920000>;
 		};
 
 		opp-1000000000 {
 			opp-hz = /bits/ 64 <1000000000>;
-			opp-hz-real = /bits/ 64 <1000000000>;
 			opp-microvolt = <920000>;
 		};
 	};
diff --git a/arch/arm64/boot/dts/freescale/imx952.dtsi b/arch/arm64/boot/dts/freescale/imx952.dtsi
index 887abb1c4784..306239de096e 100644
--- a/arch/arm64/boot/dts/freescale/imx952.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx952.dtsi
@@ -323,19 +323,16 @@ gpu_opp_table: opp-table {
 
 		opp-500000000 {
 			opp-hz = /bits/ 64 <500000000>;
-			opp-hz-real = /bits/ 64 <500000000>;
 			opp-microvolt = <920000>;
 		};
 
 		opp-800000000 {
 			opp-hz = /bits/ 64 <800000000>;
-			opp-hz-real = /bits/ 64 <800000000>;
 			opp-microvolt = <920000>;
 		};
 
 		opp-1000000000 {
 			opp-hz = /bits/ 64 <1000000000>;
-			opp-hz-real = /bits/ 64 <1000000000>;
 			opp-microvolt = <920000>;
 		};
 	};
-- 
2.53.0


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

* Re: [PATCH] arm64: dts: imx95: Drop unsupported opp-hz-real in OPP tables
  2026-09-15  7:23 [PATCH] arm64: dts: imx95: Drop unsupported opp-hz-real in OPP tables Krzysztof Kozlowski
@ 2026-09-15 14:49 ` Frank Li
  2026-09-15 16:10   ` Krzysztof Kozlowski
  0 siblings, 1 reply; 3+ messages in thread
From: Frank Li @ 2026-09-15 14:49 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Frank Li,
	Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, devicetree,
	imx, linux-arm-kernel, linux-kernel

On Tue, Sep 15, 2026 at 09:23:09AM +0200, Krzysztof Kozlowski wrote:
> There is no "opp-hz-real" property at all defined in the bindings and
> new DTS is not allowed to bring undocumented properties.  Fix dtbs_check
> warnings like:
>
>   imx95-15x15-evk-pcie0-ep.dtb: opp-500000000: opp-hz-real: b'\x00\x00\x00\x00\x1d\xcde\x00' is not of type 'object', 'integer', 'array', 'boolean', 'null'

I run below command, have not found above warning

make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j8 CHECK_DTBS=y freescale/imx95-15x15-evk-pcie0-ep.dtb
  DTC [C] arch/arm64/boot/dts/freescale/imx95-15x15-evk.dtb
  DTC     arch/arm64/boot/dts/freescale/imx-m2-pcie.dtbo
  DTC     arch/arm64/boot/dts/freescale/imx-pcie0-ep.dtbo
  OVL [C] arch/arm64/boot/dts/freescale/imx95-15x15-evk-pcie.dtb
  OVL [C] arch/arm64/boot/dts/freescale/imx95-15x15-evk-pcie0-ep.dtb

Anything wrong?

Frank

>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
> ---
>  arch/arm64/boot/dts/freescale/imx95.dtsi  | 3 ---
>  arch/arm64/boot/dts/freescale/imx952.dtsi | 3 ---
>  2 files changed, 6 deletions(-)
>
> diff --git a/arch/arm64/boot/dts/freescale/imx95.dtsi b/arch/arm64/boot/dts/freescale/imx95.dtsi
> index 1cb8eb15e5c7..99c72d5cd125 100644
> --- a/arch/arm64/boot/dts/freescale/imx95.dtsi
> +++ b/arch/arm64/boot/dts/freescale/imx95.dtsi
> @@ -255,19 +255,16 @@ gpu_opp_table: opp-table {
>
>  		opp-500000000 {
>  			opp-hz = /bits/ 64 <500000000>;
> -			opp-hz-real = /bits/ 64 <500000000>;
>  			opp-microvolt = <920000>;
>  		};
>
>  		opp-800000000 {
>  			opp-hz = /bits/ 64 <800000000>;
> -			opp-hz-real = /bits/ 64 <800000000>;
>  			opp-microvolt = <920000>;
>  		};
>
>  		opp-1000000000 {
>  			opp-hz = /bits/ 64 <1000000000>;
> -			opp-hz-real = /bits/ 64 <1000000000>;
>  			opp-microvolt = <920000>;
>  		};
>  	};
> diff --git a/arch/arm64/boot/dts/freescale/imx952.dtsi b/arch/arm64/boot/dts/freescale/imx952.dtsi
> index 887abb1c4784..306239de096e 100644
> --- a/arch/arm64/boot/dts/freescale/imx952.dtsi
> +++ b/arch/arm64/boot/dts/freescale/imx952.dtsi
> @@ -323,19 +323,16 @@ gpu_opp_table: opp-table {
>
>  		opp-500000000 {
>  			opp-hz = /bits/ 64 <500000000>;
> -			opp-hz-real = /bits/ 64 <500000000>;
>  			opp-microvolt = <920000>;
>  		};
>
>  		opp-800000000 {
>  			opp-hz = /bits/ 64 <800000000>;
> -			opp-hz-real = /bits/ 64 <800000000>;
>  			opp-microvolt = <920000>;
>  		};
>
>  		opp-1000000000 {
>  			opp-hz = /bits/ 64 <1000000000>;
> -			opp-hz-real = /bits/ 64 <1000000000>;
>  			opp-microvolt = <920000>;
>  		};
>  	};
> --
> 2.53.0
>
>

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

* Re: [PATCH] arm64: dts: imx95: Drop unsupported opp-hz-real in OPP tables
  2026-09-15 14:49 ` Frank Li
@ 2026-09-15 16:10   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 3+ messages in thread
From: Krzysztof Kozlowski @ 2026-09-15 16:10 UTC (permalink / raw)
  To: Frank Li
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Frank Li,
	Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, devicetree,
	imx, linux-arm-kernel, linux-kernel

On 15/09/2026 16:49, Frank Li wrote:
> On Tue, Sep 15, 2026 at 09:23:09AM +0200, Krzysztof Kozlowski wrote:
>> There is no "opp-hz-real" property at all defined in the bindings and
>> new DTS is not allowed to bring undocumented properties.  Fix dtbs_check
>> warnings like:
>>
>>   imx95-15x15-evk-pcie0-ep.dtb: opp-500000000: opp-hz-real: b'\x00\x00\x00\x00\x1d\xcde\x00' is not of type 'object', 'integer', 'array', 'boolean', 'null'
> 
> I run below command, have not found above warning
> 
> make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j8 CHECK_DTBS=y freescale/imx95-15x15-evk-pcie0-ep.dtb
>   DTC [C] arch/arm64/boot/dts/freescale/imx95-15x15-evk.dtb
>   DTC     arch/arm64/boot/dts/freescale/imx-m2-pcie.dtbo
>   DTC     arch/arm64/boot/dts/freescale/imx-pcie0-ep.dtbo
>   OVL [C] arch/arm64/boot/dts/freescale/imx95-15x15-evk-pcie.dtb
>   OVL [C] arch/arm64/boot/dts/freescale/imx95-15x15-evk-pcie0-ep.dtb
> 
> Anything wrong?
> 

Older dtschema?

Best regards,
Krzysztof

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

end of thread, other threads:[~2026-09-15 16:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-15  7:23 [PATCH] arm64: dts: imx95: Drop unsupported opp-hz-real in OPP tables Krzysztof Kozlowski
2026-09-15 14:49 ` Frank Li
2026-09-15 16:10   ` Krzysztof Kozlowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).