From: Frank Li <Frank.Li@nxp.com>
To: Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>
Cc: devicetree@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, Frank Li <Frank.Li@nxp.com>
Subject: [PATCH v2 09/11] ARM: dts: imx6q-utilite-pro: add missing required property for pci
Date: Wed, 15 Oct 2025 12:44:34 -0400 [thread overview]
Message-ID: <20251015-imx6_dts_cleanup-v2-9-41a7281b98c6@nxp.com> (raw)
In-Reply-To: <20251015-imx6_dts_cleanup-v2-0-41a7281b98c6@nxp.com>
Add device_type, bus-range, ranges for pci nodes. Rename intel,i211 to
ethernet to fix below CHECK_DTBS warnings:
arch/arm/boot/dts/nxp/imx/imx6q-utilite-pro.dtb: pcie@0,0: 'device_type' is a required property
from schema $id: http://devicetree.org/schemas/pci/pci-bus-common.yaml#
arch/arm/boot/dts/nxp/imx/imx6q-utilite-pro.dtb: pcie@0,0: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/pci/pci-bus-common.yaml
arm/boot/dts/nxp/imx/imx6q-utilite-pro.dtb: pcie@0,0: 'intel,i211@pcie0,0' does not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z0-9][a-zA-Z0-9#,+\\-._]{0,63}$', '^[a-zA-Z0-9][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/dt-core.yaml
Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
arch/arm/boot/dts/nxp/imx/imx6q-utilite-pro.dts | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/nxp/imx/imx6q-utilite-pro.dts b/arch/arm/boot/dts/nxp/imx/imx6q-utilite-pro.dts
index aae81feee00dba2761f140fc2a76a828f69a8308..c78f101c3cc122f418b708b1c274ca11b586b65c 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6q-utilite-pro.dts
+++ b/arch/arm/boot/dts/nxp/imx/imx6q-utilite-pro.dts
@@ -326,11 +326,14 @@ &ipu1_di0_disp0 {
&pcie {
pcie@0,0 {
reg = <0x000000 0 0 0 0>;
+ device_type = "pci";
#address-cells = <3>;
#size-cells = <2>;
+ bus-range = <0x00 0xff>;
+ ranges;
/* non-removable i211 ethernet card */
- eth1: intel,i211@pcie0,0 {
+ eth1: ethernet@0,0 {
reg = <0x010000 0 0 0 0>;
};
};
--
2.34.1
next prev parent reply other threads:[~2025-10-15 16:45 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-15 16:44 [PATCH v2 00/11] ARM: dts: imx6: trivial change to clean up some DTB warnings Frank Li
2025-10-15 16:44 ` [PATCH v2 01/11] ARM: dts: imx6: rename stmpgpio to gpio Frank Li
2025-10-15 16:44 ` [PATCH v2 02/11] ARM: dts: imx6: rename touch-thermal0 to touch-0-thermal Frank Li
2025-10-15 20:00 ` Russell King (Oracle)
2025-10-15 20:34 ` Frank Li
2025-10-15 21:26 ` Russell King (Oracle)
2025-10-15 16:44 ` [PATCH v2 03/11] ARM: dts: imx6: rename m95m02 to eeprom Frank Li
2025-10-15 16:44 ` [PATCH v2 04/11] ARM: dts: imx6qdl-ts4900: rename ngpio to ngpios Frank Li
2025-10-15 16:44 ` [PATCH v2 05/11] ARM: dts: imx6: remove gpio suffix for regulator Frank Li
2025-10-15 16:44 ` [PATCH v2 06/11] ARM: dts: imx6: change voltage-divider's io-channel-cells to 1 Frank Li
2025-10-15 16:44 ` [PATCH v2 07/11] ARM: dts: imx6: remove pinctrl-name if pinctrl-0 doesn't exist Frank Li
2025-10-15 16:44 ` [PATCH v2 08/11] ARM: dts: imx6-tbs2910: rename ir_recv to ir-receiver Frank Li
2025-10-15 16:44 ` Frank Li [this message]
2025-10-15 16:44 ` [PATCH v2 10/11] ARM: dts: imx6ull-phytec-tauri: remove extra space before jedec,spi-nor Frank Li
2025-10-15 16:44 ` [PATCH v2 11/11] ARM: dts: imx6qdl-nitrogen6_max: rename i2c<n>mux to i2c Frank Li
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251015-imx6_dts_cleanup-v2-9-41a7281b98c6@nxp.com \
--to=frank.li@nxp.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).