Devicetree
 help / color / mirror / Atom feed
* [PATCH 0/8] ARM: dts: imx: cleanup some dtb check warnings
@ 2026-09-01 22:25 Frank.Li
  2026-09-01 22:25 ` [PATCH 1/8] ARM: dts: imx51-zii-rdu1: rename node name i2c-gpio to i2c-0 Frank.Li
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Frank.Li @ 2026-09-01 22:25 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam
  Cc: devicetree, imx, linux-arm-kernel, linux-kernel, Frank Li

Cleanup some simple dtb check warnings

Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
Frank Li (8):
      ARM: dts: imx51-zii-rdu1: rename node name i2c-gpio to i2c-0
      ARM: dts: imx6qdl-emcon: Remove unrecognized disable-gpio PCIe property
      ARM: dts: imx7d-nitrogen7: drop unsupported wakeup-gpios from tsc2004
      ARM: dts: imx7d-meerkat96: disable lcdif node
      ARM: dts: imx50-kobo-aura: convert sd2_vmmc to regulator-fixed
      ARM: dts: imx6dl-b125v2: add touchscreen-size-x/y to exc80h60 node
      ARM: dts: imx6sll: remove unused node csi@20e8000
      ARM: dts: imx6ul-14x14-evk: remove reduntant bus-type under csi node

 arch/arm/boot/dts/nxp/imx/imx50-kobo-aura.dts   |  7 +++----
 arch/arm/boot/dts/nxp/imx/imx51-zii-rdu1.dts    |  2 +-
 arch/arm/boot/dts/nxp/imx/imx6dl-b125pv2.dts    |  2 ++
 arch/arm/boot/dts/nxp/imx/imx6dl-b125v2.dts     |  2 ++
 arch/arm/boot/dts/nxp/imx/imx6qdl-emcon.dtsi    |  1 -
 arch/arm/boot/dts/nxp/imx/imx6sll.dtsi          | 11 -----------
 arch/arm/boot/dts/nxp/imx/imx6ul-14x14-evk.dtsi |  1 -
 arch/arm/boot/dts/nxp/imx/imx7d-meerkat96.dts   |  2 +-
 arch/arm/boot/dts/nxp/imx/imx7d-nitrogen7.dts   |  1 -
 9 files changed, 9 insertions(+), 20 deletions(-)
---
base-commit: 76030f63972b16e0b5bd1ef7a29a1c4393712736
change-id: 20260901-arm_dts_clean1-69876ac2f45b

Best regards,
--  
Frank Li <Frank.Li@nxp.com>


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

* [PATCH 1/8] ARM: dts: imx51-zii-rdu1: rename node name i2c-gpio to i2c-0
  2026-09-01 22:25 [PATCH 0/8] ARM: dts: imx: cleanup some dtb check warnings Frank.Li
@ 2026-09-01 22:25 ` Frank.Li
  2026-09-01 22:25 ` [PATCH 2/8] ARM: dts: imx6qdl-emcon: Remove unrecognized disable-gpio PCIe property Frank.Li
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Frank.Li @ 2026-09-01 22:25 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam
  Cc: devicetree, imx, linux-arm-kernel, linux-kernel, Frank Li

From: Frank Li <Frank.Li@nxp.com>

The binding expects the node name to match the pattern
'^i2c(@.+|-[a-z0-9]+)?$', but the node was named 'i2c-gpio' which conflicts
with schema validation and produces:

arch/arm/boot/dts/nxp/imx/imx51-zii-rdu1.dtb: / (zii,imx51-rdu1): i2c-gpio: {'compatible': ['i2c-gpio'], 'pinctrl-names': ['default'], 'pinctrl-0': [[47]], 'sda-gpios': [[17, 2, 0]], 'scl-gpios': [[31, 4, 0]], 'i2c-gpio,delay-us': [50], 'status': ['okay'], '#address-cells': 1, '#size-cells': 0, 'codec@a': {'compatible': ['fsl,sgtl5000'], 'reg': [[10]], 'clocks': [[48]], 'VDDA-supply': [[49]], 'VDDIO-supply': [[50]], '#sound-dai-cells': 0, 'phandle': 57}} is not of type 'array'

Rename the node to 'i2c-0' to fix above dtbs_check warning.

Assisted-by: Claude:claude-sonnet-4.6
Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
 arch/arm/boot/dts/nxp/imx/imx51-zii-rdu1.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/nxp/imx/imx51-zii-rdu1.dts b/arch/arm/boot/dts/nxp/imx/imx51-zii-rdu1.dts
index 91c63d1f26043..c17ab36474cd2 100644
--- a/arch/arm/boot/dts/nxp/imx/imx51-zii-rdu1.dts
+++ b/arch/arm/boot/dts/nxp/imx/imx51-zii-rdu1.dts
@@ -115,7 +115,7 @@ panel_in: endpoint {
 		};
 	};
 
-	i2c_gpio: i2c-gpio {
+	i2c_gpio: i2c-0 {
 		compatible = "i2c-gpio";
 		pinctrl-names = "default";
 		pinctrl-0 = <&pinctrl_swi2c>;

-- 
2.43.0


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

* [PATCH 2/8] ARM: dts: imx6qdl-emcon: Remove unrecognized disable-gpio PCIe property
  2026-09-01 22:25 [PATCH 0/8] ARM: dts: imx: cleanup some dtb check warnings Frank.Li
  2026-09-01 22:25 ` [PATCH 1/8] ARM: dts: imx51-zii-rdu1: rename node name i2c-gpio to i2c-0 Frank.Li
@ 2026-09-01 22:25 ` Frank.Li
  2026-09-01 22:25 ` [PATCH 3/8] ARM: dts: imx7d-nitrogen7: drop unsupported wakeup-gpios from tsc2004 Frank.Li
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Frank.Li @ 2026-09-01 22:25 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam
  Cc: devicetree, imx, linux-arm-kernel, linux-kernel, Frank Li

From: Frank Li <Frank.Li@nxp.com>

The 'disable-gpio' property is not defined in the fsl,imx6q-pcie
binding schema and driver code, which causes the following dtbs_check
warning:

  arch/arm/boot/dts/nxp/imx/imx6dl-emcon-avari.dtb: pcie@1ffc000 (fsl,imx6q-pcie): Unevaluated properties are not allowed ('disable-gpio' was unexpected)
        from schema $id: http://devicetree.org/schemas/pci/fsl,imx6q-pcie.yaml

Assisted-by: Claude:claude-sonnet-4.6
Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
 arch/arm/boot/dts/nxp/imx/imx6qdl-emcon.dtsi | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/boot/dts/nxp/imx/imx6qdl-emcon.dtsi b/arch/arm/boot/dts/nxp/imx/imx6qdl-emcon.dtsi
index 9f4e746beb2d5..34ad7fc04f6b8 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6qdl-emcon.dtsi
+++ b/arch/arm/boot/dts/nxp/imx/imx6qdl-emcon.dtsi
@@ -733,7 +733,6 @@ &pcie {
 	pinctrl-names = "default";
 	pinctrl-0 = <&pinctrl_pcie_ctrl>;
 	reset-gpio = <&gpio7 12 GPIO_ACTIVE_LOW>;
-	disable-gpio = <&gpio2 22 GPIO_ACTIVE_LOW>;
 };
 
 &pwm1 {

-- 
2.43.0


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

* [PATCH 3/8] ARM: dts: imx7d-nitrogen7: drop unsupported wakeup-gpios from tsc2004
  2026-09-01 22:25 [PATCH 0/8] ARM: dts: imx: cleanup some dtb check warnings Frank.Li
  2026-09-01 22:25 ` [PATCH 1/8] ARM: dts: imx51-zii-rdu1: rename node name i2c-gpio to i2c-0 Frank.Li
  2026-09-01 22:25 ` [PATCH 2/8] ARM: dts: imx6qdl-emcon: Remove unrecognized disable-gpio PCIe property Frank.Li
@ 2026-09-01 22:25 ` Frank.Li
  2026-09-01 22:25 ` [PATCH 4/8] ARM: dts: imx7d-meerkat96: disable lcdif node Frank.Li
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Frank.Li @ 2026-09-01 22:25 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam
  Cc: devicetree, imx, linux-arm-kernel, linux-kernel, Frank Li

From: Frank Li <Frank.Li@nxp.com>

Remove undocumented and used property wakeup-gpios, which is the same
as interrupts-extended.

Fix below check_dtbs warning:
  arch/arm/boot/dts/nxp/imx/imx7d-nitrogen7.dtb: touchscreen@48 (ti,tsc2004): 'wakeup-gpios' does not match any of the regexes: '^pinctrl-[0-9]+$'

No known other user use wakeup-gpios.

Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
 arch/arm/boot/dts/nxp/imx/imx7d-nitrogen7.dts | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/boot/dts/nxp/imx/imx7d-nitrogen7.dts b/arch/arm/boot/dts/nxp/imx/imx7d-nitrogen7.dts
index 2192f105ec81c..c72859ac43e1a 100644
--- a/arch/arm/boot/dts/nxp/imx/imx7d-nitrogen7.dts
+++ b/arch/arm/boot/dts/nxp/imx/imx7d-nitrogen7.dts
@@ -284,7 +284,6 @@ touchscreen@48 {
 		pinctrl-names = "default";
 		pinctrl-0 = <&pinctrl_i2c3_tsc2004>;
 		interrupts-extended = <&gpio3 4 IRQ_TYPE_EDGE_FALLING>;
-		wakeup-gpios = <&gpio3 4 GPIO_ACTIVE_LOW>;
 	};
 };
 

-- 
2.43.0


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

* [PATCH 4/8] ARM: dts: imx7d-meerkat96: disable lcdif node
  2026-09-01 22:25 [PATCH 0/8] ARM: dts: imx: cleanup some dtb check warnings Frank.Li
                   ` (2 preceding siblings ...)
  2026-09-01 22:25 ` [PATCH 3/8] ARM: dts: imx7d-nitrogen7: drop unsupported wakeup-gpios from tsc2004 Frank.Li
@ 2026-09-01 22:25 ` Frank.Li
  2026-09-01 22:25 ` [PATCH 5/8] ARM: dts: imx50-kobo-aura: convert sd2_vmmc to regulator-fixed Frank.Li
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Frank.Li @ 2026-09-01 22:25 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam
  Cc: devicetree, imx, linux-arm-kernel, linux-kernel, Frank Li

From: Frank Li <Frank.Li@nxp.com>

The LCDIF node is enabled, but no display panel is connected through the
required graph bindings. As a result, the LCDIF DT description is
incomplete and triggers DT schema validation warnings.

 arch/arm/boot/dts/nxp/imx/imx7d-meerkat96.dtb: lcdif@30730000 (fsl,imx7d-lcdif): 'port' is a required propert

Disable the LCDIF node until a proper panel node and display pipeline are
added to fix above warnings.

Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
 arch/arm/boot/dts/nxp/imx/imx7d-meerkat96.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/nxp/imx/imx7d-meerkat96.dts b/arch/arm/boot/dts/nxp/imx/imx7d-meerkat96.dts
index f0fda15f30204..38f886c25509b 100644
--- a/arch/arm/boot/dts/nxp/imx/imx7d-meerkat96.dts
+++ b/arch/arm/boot/dts/nxp/imx/imx7d-meerkat96.dts
@@ -134,7 +134,7 @@ &i2c4 {
 &lcdif {
 	pinctrl-names = "default";
 	pinctrl-0 = <&pinctrl_lcdif>;
-	status = "okay";
+	status = "disabled";
 };
 
 &uart1 {

-- 
2.43.0


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

* [PATCH 5/8] ARM: dts: imx50-kobo-aura: convert sd2_vmmc to regulator-fixed
  2026-09-01 22:25 [PATCH 0/8] ARM: dts: imx: cleanup some dtb check warnings Frank.Li
                   ` (3 preceding siblings ...)
  2026-09-01 22:25 ` [PATCH 4/8] ARM: dts: imx7d-meerkat96: disable lcdif node Frank.Li
@ 2026-09-01 22:25 ` Frank.Li
  2026-09-01 22:25 ` [PATCH 6/8] ARM: dts: imx6dl-b125v2: add touchscreen-size-x/y to exc80h60 node Frank.Li
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Frank.Li @ 2026-09-01 22:25 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam
  Cc: devicetree, imx, linux-arm-kernel, linux-kernel, Frank Li

From: Frank Li <Frank.Li@nxp.com>

The sd2_vmmc regulator was using compatible = "regulator-gpio" with
only a single state entry (states = <3300000 0>), which violates the
gpio-regulator DT schema that requires at least two state pairs.

Since the regulator operates at a fixed 3.3 V (regulator-min-microvolt
equals regulator-max-microvolt), convert the node to regulator-fixed.

Fix below check_dtbs warnings:
  arch/arm/boot/dts/nxp/imx/imx50-kobo-aura.dtb: gpio-regulator (regulator-gpio): states: [[3300000, 0]] is too short

Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
 arch/arm/boot/dts/nxp/imx/imx50-kobo-aura.dts | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/arch/arm/boot/dts/nxp/imx/imx50-kobo-aura.dts b/arch/arm/boot/dts/nxp/imx/imx50-kobo-aura.dts
index 4725ee241cb11..4d8672ab1c42b 100644
--- a/arch/arm/boot/dts/nxp/imx/imx50-kobo-aura.dts
+++ b/arch/arm/boot/dts/nxp/imx/imx50-kobo-aura.dts
@@ -75,15 +75,14 @@ sd2_pwrseq: pwrseq {
 		reset-gpios = <&gpio4 17 GPIO_ACTIVE_LOW>;
 	};
 
-	sd2_vmmc: gpio-regulator {
-		compatible = "regulator-gpio";
+	sd2_vmmc: regulator-sd2-vmmc {
+		compatible = "regulator-fixed";
 		pinctrl-names = "default";
 		pinctrl-0 = <&pinctrl_sd2_vmmc>;
 		regulator-name = "vmmc";
-		states = <3300000 0>;
 		regulator-min-microvolt = <3300000>;
 		regulator-max-microvolt = <3300000>;
-		enable-gpios = <&gpio4 12 GPIO_ACTIVE_LOW>;
+		gpio = <&gpio4 12 GPIO_ACTIVE_LOW>;
 		startup-delay-us = <100000>;
 	};
 };

-- 
2.43.0


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

* [PATCH 6/8] ARM: dts: imx6dl-b125v2: add touchscreen-size-x/y to exc80h60 node
  2026-09-01 22:25 [PATCH 0/8] ARM: dts: imx: cleanup some dtb check warnings Frank.Li
                   ` (4 preceding siblings ...)
  2026-09-01 22:25 ` [PATCH 5/8] ARM: dts: imx50-kobo-aura: convert sd2_vmmc to regulator-fixed Frank.Li
@ 2026-09-01 22:25 ` Frank.Li
  2026-09-01 22:25 ` [PATCH 7/8] ARM: dts: imx6sll: remove unused node csi@20e8000 Frank.Li
  2026-09-01 22:25 ` [PATCH 8/8] ARM: dts: imx6ul-14x14-evk: remove reduntant bus-type under csi node Frank.Li
  7 siblings, 0 replies; 9+ messages in thread
From: Frank.Li @ 2026-09-01 22:25 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam
  Cc: devicetree, imx, linux-arm-kernel, linux-kernel, Frank Li

From: Frank Li <Frank.Li@nxp.com>

The eeti,exc3000 binding requires touchscreen-size-x and
touchscreen-size-y properties. Add them for both the B125v2 and B125Pv2
boards, which use the AUO G121EAN01 panel at 1280x800 resolution.

Fix below check_dtbs warnings:
  arch/arm/boot/dts/nxp/imx/imx6dl-b125v2.dtb: touchscreen@2a (eeti,exc80h60): 'touchscreen-size-x' is a required property

Assisted-by: Claude:claude-sonnet-4.6
Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
 arch/arm/boot/dts/nxp/imx/imx6dl-b125pv2.dts | 2 ++
 arch/arm/boot/dts/nxp/imx/imx6dl-b125v2.dts  | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/arch/arm/boot/dts/nxp/imx/imx6dl-b125pv2.dts b/arch/arm/boot/dts/nxp/imx/imx6dl-b125pv2.dts
index 94625d5d5918e..c6ee5f9c8bf87 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6dl-b125pv2.dts
+++ b/arch/arm/boot/dts/nxp/imx/imx6dl-b125pv2.dts
@@ -26,5 +26,7 @@ touchscreen@2a {
 		interrupt-parent = <&gpio5>;
 		interrupts = <2 IRQ_TYPE_LEVEL_LOW>;
 		reset-gpios = <&tca6424a 21 GPIO_ACTIVE_HIGH>;
+		touchscreen-size-x = <1280>;
+		touchscreen-size-y = <800>;
 	};
 };
diff --git a/arch/arm/boot/dts/nxp/imx/imx6dl-b125v2.dts b/arch/arm/boot/dts/nxp/imx/imx6dl-b125v2.dts
index b3cfa8110ade4..bd4ef091e412b 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6dl-b125v2.dts
+++ b/arch/arm/boot/dts/nxp/imx/imx6dl-b125v2.dts
@@ -26,5 +26,7 @@ touchscreen@2a {
 		interrupt-parent = <&gpio5>;
 		interrupts = <2 IRQ_TYPE_LEVEL_LOW>;
 		reset-gpios = <&tca6424a 21 GPIO_ACTIVE_HIGH>;
+		touchscreen-size-x = <1280>;
+		touchscreen-size-y = <800>;
 	};
 };

-- 
2.43.0


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

* [PATCH 7/8] ARM: dts: imx6sll: remove unused node csi@20e8000
  2026-09-01 22:25 [PATCH 0/8] ARM: dts: imx: cleanup some dtb check warnings Frank.Li
                   ` (5 preceding siblings ...)
  2026-09-01 22:25 ` [PATCH 6/8] ARM: dts: imx6dl-b125v2: add touchscreen-size-x/y to exc80h60 node Frank.Li
@ 2026-09-01 22:25 ` Frank.Li
  2026-09-01 22:25 ` [PATCH 8/8] ARM: dts: imx6ul-14x14-evk: remove reduntant bus-type under csi node Frank.Li
  7 siblings, 0 replies; 9+ messages in thread
From: Frank.Li @ 2026-09-01 22:25 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam
  Cc: devicetree, imx, linux-arm-kernel, linux-kernel, Frank Li

From: Frank Li <Frank.Li@nxp.com>

csi@20e8000 is never used with compatible string 'fsl,imx6s-csi'. Remove
it to fix the below check_dtb warnings:
  arch/arm/boot/dts/nxp/imx/imx6sll-evk.dtb: /soc/bus@2000000/csi@20e8000: failed to match any schema with compatible: ['fsl,imx6sll-csi', 'fsl,imx6s-csi']

Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
 arch/arm/boot/dts/nxp/imx/imx6sll.dtsi | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi b/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi
index c96669605d1d8..929f7815a4546 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi
+++ b/arch/arm/boot/dts/nxp/imx/imx6sll.dtsi
@@ -624,17 +624,6 @@ gpr: iomuxc-gpr@20e4000 {
 				reg = <0x020e4000 0x4000>;
 			};
 
-			csi: csi@20e8000 {
-				compatible = "fsl,imx6sll-csi", "fsl,imx6s-csi";
-				reg = <0x020e8000 0x4000>;
-				interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
-				clocks = <&clks IMX6SLL_CLK_DUMMY>,
-					 <&clks IMX6SLL_CLK_CSI>,
-					 <&clks IMX6SLL_CLK_DUMMY>;
-				clock-names = "disp-axi", "csi_mclk", "disp_dcic";
-				status = "disabled";
-			};
-
 			sdma: dma-controller@20ec000 {
 				compatible = "fsl,imx6sll-sdma", "fsl,imx6ul-sdma";
 				reg = <0x020ec000 0x4000>;

-- 
2.43.0


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

* [PATCH 8/8] ARM: dts: imx6ul-14x14-evk: remove reduntant bus-type under csi node
  2026-09-01 22:25 [PATCH 0/8] ARM: dts: imx: cleanup some dtb check warnings Frank.Li
                   ` (6 preceding siblings ...)
  2026-09-01 22:25 ` [PATCH 7/8] ARM: dts: imx6sll: remove unused node csi@20e8000 Frank.Li
@ 2026-09-01 22:25 ` Frank.Li
  7 siblings, 0 replies; 9+ messages in thread
From: Frank.Li @ 2026-09-01 22:25 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam
  Cc: devicetree, imx, linux-arm-kernel, linux-kernel, Frank Li

From: Frank Li <Frank.Li@nxp.com>

Remove reduntant undocument bus-type under csi node to fix below check_dtbs
warnings:
arch/arm/boot/dts/nxp/imx/imx6ul-14x14-evk.dtb: csi@21c4000 (fsl,imx6ul-csi): port:endpoint: Unevaluated properties are not allowed ('bus-type' was unexpected)
        from schema $id: http://devicetree.org/schemas/media/nxp,imx7-csi.yaml

buy-type already set at remote endpoint ov5640_to_parallel.

Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
 arch/arm/boot/dts/nxp/imx/imx6ul-14x14-evk.dtsi | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/boot/dts/nxp/imx/imx6ul-14x14-evk.dtsi b/arch/arm/boot/dts/nxp/imx/imx6ul-14x14-evk.dtsi
index 32afe4130e211..181676cd3b60a 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6ul-14x14-evk.dtsi
+++ b/arch/arm/boot/dts/nxp/imx/imx6ul-14x14-evk.dtsi
@@ -236,7 +236,6 @@ &csi {
 	port {
 		parallel_from_ov5640: endpoint {
 			remote-endpoint = <&ov5640_to_parallel>;
-			bus-type = <MEDIA_BUS_TYPE_PARALLEL>;
 		};
 	};
 };

-- 
2.43.0


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

end of thread, other threads:[~2026-09-01 22:26 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-01 22:25 [PATCH 0/8] ARM: dts: imx: cleanup some dtb check warnings Frank.Li
2026-09-01 22:25 ` [PATCH 1/8] ARM: dts: imx51-zii-rdu1: rename node name i2c-gpio to i2c-0 Frank.Li
2026-09-01 22:25 ` [PATCH 2/8] ARM: dts: imx6qdl-emcon: Remove unrecognized disable-gpio PCIe property Frank.Li
2026-09-01 22:25 ` [PATCH 3/8] ARM: dts: imx7d-nitrogen7: drop unsupported wakeup-gpios from tsc2004 Frank.Li
2026-09-01 22:25 ` [PATCH 4/8] ARM: dts: imx7d-meerkat96: disable lcdif node Frank.Li
2026-09-01 22:25 ` [PATCH 5/8] ARM: dts: imx50-kobo-aura: convert sd2_vmmc to regulator-fixed Frank.Li
2026-09-01 22:25 ` [PATCH 6/8] ARM: dts: imx6dl-b125v2: add touchscreen-size-x/y to exc80h60 node Frank.Li
2026-09-01 22:25 ` [PATCH 7/8] ARM: dts: imx6sll: remove unused node csi@20e8000 Frank.Li
2026-09-01 22:25 ` [PATCH 8/8] ARM: dts: imx6ul-14x14-evk: remove reduntant bus-type under csi node Frank.Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox