public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
From: Frank Li <Frank.li@nxp.com>
To: Francesco Dolcini <francesco@dolcini.it>
Cc: "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>,
	"Kirill A. Shutemov" <kas@kernel.org>,
	"Dave Hansen" <dave.hansen@linux.intel.com>,
	"Rick Edgecombe" <rick.p.edgecombe@intel.com>,
	"Max Krummenacher" <max.krummenacher@toradex.com>,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
	"Ernest Van Hoecke" <ernest.vanhoecke@toradex.com>,
	"Emanuele Ghidoli" <emanuele.ghidoli@toradex.com>,
	"João Paulo Gonçalves" <joao.goncalves@toradex.com>,
	"Vitor Soares" <vitor.soares@toradex.com>,
	"Francesco Dolcini" <francesco.dolcini@toradex.com>
Subject: Re: [PATCH v2 2/2] arm64: dts: freescale: add Toradex SMARC iMX95
Date: Wed, 12 Nov 2025 10:36:41 -0500	[thread overview]
Message-ID: <aRSpifUe+fH7OHtE@lizhi-Precision-Tower-5810> (raw)
In-Reply-To: <20251112094737.GA5126@francesco-nb>

On Wed, Nov 12, 2025 at 10:47:37AM +0100, Francesco Dolcini wrote:
> On Tue, Nov 11, 2025 at 07:01:15PM +0100, Francesco Dolcini wrote:
> > Hello Frank,
> >
> > On Tue, Nov 11, 2025 at 11:02:56AM -0500, Frank Li wrote:
> > > On Tue, Nov 11, 2025 at 04:16:14PM +0100, Francesco Dolcini wrote:
> > > > From: Max Krummenacher <max.krummenacher@toradex.com>
> > > >
> > > > Add DT support for Toradex SMARC iMX95 SoM and Development carrier
> > > > board.
> > > >
> > > > The module consists of an NXP i.MX95 family SoC, up to 16GB of LPDDR5
> > > > RAM and up to 128GB of storage, a USB 3.0 Host Hub and 2.0 OTG, two
> > > > Gigabit Ethernet PHYs, a 10 Gigabit Ethernet interface, an I2C EEPROM
> > > > and Temperature Sensor, an RX8130 RTC, a Quad/Dual lane CSI interface,
> > > > and some optional addons: TPM 2.0, DSI, LVDS, DisplayPort (through a
> > > > DSI-DP bridge), and Wi-Fi/BT module.
> > > >
> > > > Link: https://www.toradex.com/computer-on-modules/smarc-arm-family/nxp-imx95
> > > > Link: https://www.toradex.com/products/carrier-board/smarc-development-board-kit
> > > > Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
> > > > Co-developed-by: Ernest Van Hoecke <ernest.vanhoecke@toradex.com>
> > > > Signed-off-by: Ernest Van Hoecke <ernest.vanhoecke@toradex.com>
> > > > Co-developed-by: Emanuele Ghidoli <emanuele.ghidoli@toradex.com>
> > > > Signed-off-by: Emanuele Ghidoli <emanuele.ghidoli@toradex.com>
> > > > Co-developed-by: João Paulo Gonçalves <joao.goncalves@toradex.com>
> > > > Signed-off-by: João Paulo Gonçalves <joao.goncalves@toradex.com>
> > > > Co-developed-by: Vitor Soares <vitor.soares@toradex.com>
> > > > Signed-off-by: Vitor Soares <vitor.soares@toradex.com>
> > > > Co-developed-by: Francesco Dolcini <francesco.dolcini@toradex.com>
> > > > Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
> > > > ---
> > > > v2:
> > > >  - move enable-active-high after gpio
> > > >  - add newline between properties and child node in som_dsi2dp_bridge
> > > > ---
> > > >  arch/arm64/boot/dts/freescale/Makefile        |    1 +
> > > >  .../dts/freescale/imx95-toradex-smarc-dev.dts |  277 ++++
> > > >  .../dts/freescale/imx95-toradex-smarc.dtsi    | 1155 +++++++++++++++++
> > > >  3 files changed, 1433 insertions(+)
> > > >  create mode 100644 arch/arm64/boot/dts/freescale/imx95-toradex-smarc-dev.dts
> > > >  create mode 100644 arch/arm64/boot/dts/freescale/imx95-toradex-smarc.dtsi
> > > >
> > > > diff --git a/arch/arm64/boot/dts/freescale/Makefile b/arch/arm64/boot/dts/freescale/Makefile
> > > > index 75676b908299..28f8eaf18471 100644
> > > > --- a/arch/arm64/boot/dts/freescale/Makefile
> > > > +++ b/arch/arm64/boot/dts/freescale/Makefile
> > > > @@ -390,6 +390,7 @@ dtb-$(CONFIG_ARCH_MXC) += imx943-evk.dtb
> > > >  dtb-$(CONFIG_ARCH_MXC) += imx95-15x15-evk.dtb
> > > >  dtb-$(CONFIG_ARCH_MXC) += imx95-19x19-evk.dtb
> > > >  dtb-$(CONFIG_ARCH_MXC) += imx95-19x19-evk-sof.dtb
> > > > +dtb-$(CONFIG_ARCH_MXC) += imx95-toradex-smarc-dev.dtb
> > > >  dtb-$(CONFIG_ARCH_MXC) += imx95-tqma9596sa-mb-smarc-2.dtb
> > > >
> > > ...
> > > > +
> > > > +/* SMARC PCIE_A / M2 Key B */
> > > > +&pcie0 {
> > > > +	status = "okay";
> > >
> > > Nit: if there are next version, please consider add supports-clkreq.
> >
> > What do you expect exactly?
> > Maybe what you are looking for is in imx95-toradex-smarc.dtsi?
>
> Found it, you are referring to https://github.com/devicetree-org/dt-schema/blob/main/dtschema/schemas/pci/pci-bus-common.yaml#L155
>
> We would not be able to test it, the required changes in the PCIe driver
> are not merged yet, so I would prefer to skip it for this series for the
> moment.

No impact for current drivers. Only thing you need check schematic, make
sure #clkreq really connected. If connected, you can put it.

i.MX's PCIe driver default enable it. but l1ss have not enabled. add
supports-clkreq will keep the same behavior as before when pci driver
update.

Frank

>
> Francesco
>

  reply	other threads:[~2025-11-12 15:36 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-11 15:16 [PATCH v2 0/2] arm64: dts: freescale: add Toradex SMARC iMX95 Francesco Dolcini
2025-11-11 15:16 ` [PATCH v2 1/2] dt-bindings: arm: fsl: " Francesco Dolcini
2025-11-11 15:16 ` [PATCH v2 2/2] arm64: dts: freescale: " Francesco Dolcini
2025-11-11 16:02   ` Frank Li
2025-11-11 18:01     ` Francesco Dolcini
2025-11-12  9:47       ` Francesco Dolcini
2025-11-12 15:36         ` Frank Li [this message]
2025-11-17  7:59 ` [PATCH v2 0/2] " Francesco Dolcini
2025-11-17  8:40 ` Shawn Guo

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=aRSpifUe+fH7OHtE@lizhi-Precision-Tower-5810 \
    --to=frank.li@nxp.com \
    --cc=conor+dt@kernel.org \
    --cc=dave.hansen@linux.intel.com \
    --cc=devicetree@vger.kernel.org \
    --cc=emanuele.ghidoli@toradex.com \
    --cc=ernest.vanhoecke@toradex.com \
    --cc=festevam@gmail.com \
    --cc=francesco.dolcini@toradex.com \
    --cc=francesco@dolcini.it \
    --cc=imx@lists.linux.dev \
    --cc=joao.goncalves@toradex.com \
    --cc=kas@kernel.org \
    --cc=kernel@pengutronix.de \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=max.krummenacher@toradex.com \
    --cc=rick.p.edgecombe@intel.com \
    --cc=robh@kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    --cc=vitor.soares@toradex.com \
    /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