mbox series

[v4,0/3] Add i.MX943 basic dts support

Message ID 20250401071709.1138872-1-ping.bai@nxp.com (mailing list archive)
Headers show
Series Add i.MX943 basic dts support | expand

Message

Jacky Bai April 1, 2025, 7:17 a.m. UTC
i.MX943 is the first SoC of the i.MX94 family, all the SoCs
of this family are pin to pin compatible with only several
peripherals differance.

For i.MX943 device tree support, we split the dtsi into two
part, one for the common dtsi that shared for the i.MX94 family,
and an i.MX943 specific part.

This patchset has dependency on Frank Li's below dt binding changes for i.MX94.
those patch has been reviewed & acked.

  - https://lore.kernel.org/imx/20250307190816.2971810-1-Frank.Li@nxp.com/T/
  - https://lore.kernel.org/imx/64d7d06b-337e-498a-87dd-03ae41e6a2de@roeck-us.net/T/
  - https://lore.kernel.org/lkml/20250306171052.244548-1-Frank.Li@nxp.com/T/
  - https://lore.kernel.org/imx/20250306171013.243332-1-Frank.Li@nxp.com/T/
  - https://lore.kernel.org/lkml/20250306170902.241057-1-Frank.Li@nxp.com/T/
  - https://lore.kernel.org/imx/20250308143214.6dcc41ac@jic23-huawei/T/
  - https://lore.kernel.org/lkml/20250306170810.239489-1-Frank.Li@nxp.com/T/
  - https://lore.kernel.org/imx/20250306-immature-ether-d92fb5b8f18a@spud/T/
  - https://lore.kernel.org/imx/20250307-scion-comprised-03e8ea95abed@spud/T/

Jacky Bai (3):
  dt-bindings: arm: fsl: add i.MX943 EVK board
  arm64: dts: freescale: Add basic dtsi for imx943
  arm64: dts: freescale: Add minimal dts support for imx943 evk

 .../devicetree/bindings/arm/fsl.yaml          |    6 +
 arch/arm64/boot/dts/freescale/Makefile        |    1 +
 arch/arm64/boot/dts/freescale/imx94-clock.h   |  195 ++
 arch/arm64/boot/dts/freescale/imx94-pinfunc.h | 1570 +++++++++++++++++
 arch/arm64/boot/dts/freescale/imx94-power.h   |   41 +
 arch/arm64/boot/dts/freescale/imx94.dtsi      | 1140 ++++++++++++
 arch/arm64/boot/dts/freescale/imx943-evk.dts  |  196 ++
 arch/arm64/boot/dts/freescale/imx943.dtsi     |  148 ++
 8 files changed, 3297 insertions(+)
 create mode 100644 arch/arm64/boot/dts/freescale/imx94-clock.h
 create mode 100644 arch/arm64/boot/dts/freescale/imx94-pinfunc.h
 create mode 100644 arch/arm64/boot/dts/freescale/imx94-power.h
 create mode 100644 arch/arm64/boot/dts/freescale/imx94.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx943-evk.dts
 create mode 100644 arch/arm64/boot/dts/freescale/imx943.dtsi

Comments

Carlos Song April 1, 2025, 7:55 a.m. UTC | #1
> -----Original Message-----
> From: Jacky Bai <ping.bai@nxp.com>
> Sent: Tuesday, April 1, 2025 3:17 PM
> To: robh@kernel.org; krzk+dt@kernel.org; conor+dt@kernel.org;
> shawnguo@kernel.org; s.hauer@pengutronix.de
> Cc: kernel@pengutronix.de; festevam@gmail.com; devicetree@vger.kernel.org;
> imx@lists.linux.dev; linux-arm-kernel@lists.infradead.org; Aisheng Dong
> <aisheng.dong@nxp.com>; Peng Fan <peng.fan@nxp.com>; Frank Li
> <frank.li@nxp.com>
> Subject: [EXT] [PATCH v4 2/3] arm64: dts: freescale: Add basic dtsi for imx943
> 
> Caution: This is an external email. Please take care when clicking links or
> opening attachments. When in doubt, report the message using the 'Report this
> email' button
> 
> 
> Add the minimal dtsi support for i.MX943. i.MX943 is the
> first SoC of i.MX94 Family, create a common dtsi for the
> whole i.MX94 family, and the specific dtsi part for i.MX943.
> 
> The clock, power domain and perf index need to be used by
> the device nodes for resource reference, add them along
> with the dtsi support.
> 
> Signed-off-by: Jacky Bai <ping.bai@nxp.com>
> ---
>  - v4 changes:
>   - reorder the cpu node compatible string property as suggested by Frank
> 
>  - v3 changes:
>   - remove the blank line
>   - add PAD config macro define as suggested by Frank Li
>   - update the device nodes compatible strings for imx94 as suggested by
> Krzysztof
> 
>  - v2 changes:
>   - remove the unnecessary macro define in clock header as suggested by
> Krzysztof
>   - split the dtsi into imx94.dtsi and imx943.dtsi
>   - use low case in the pinfunc header as Frank suggested
>   - reorder the device nodes and properties
> ---
>  arch/arm64/boot/dts/freescale/imx94-clock.h   |  195 ++
>  arch/arm64/boot/dts/freescale/imx94-pinfunc.h | 1570 +++++++++++++++++
>  arch/arm64/boot/dts/freescale/imx94-power.h   |   41 +
>  arch/arm64/boot/dts/freescale/imx94.dtsi      | 1140 ++++++++++++
>  arch/arm64/boot/dts/freescale/imx943.dtsi     |  148 ++
>  5 files changed, 3094 insertions(+)
>  create mode 100644 arch/arm64/boot/dts/freescale/imx94-clock.h
>  create mode 100644 arch/arm64/boot/dts/freescale/imx94-pinfunc.h
>  create mode 100644 arch/arm64/boot/dts/freescale/imx94-power.h
>  create mode 100644 arch/arm64/boot/dts/freescale/imx94.dtsi
>  create mode 100644 arch/arm64/boot/dts/freescale/imx943.dtsi
> 

...
> diff --git a/arch/arm64/boot/dts/freescale/imx94.dtsi
> b/arch/arm64/boot/dts/freescale/imx94.dtsi
> new file mode 100644
> index 000000000000..26e08ac51c36
> --- /dev/null
> +++ b/arch/arm64/boot/dts/freescale/imx94.dtsi
> @@ -0,0 +1,1140 @@
> +// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
> +/*
> + * Copyright 2024-2025 NXP
> + */
> +
> +#include <dt-bindings/dma/fsl-edma.h>
> +#include <dt-bindings/gpio/gpio.h>
> +#include <dt-bindings/input/input.h>
> +#include <dt-bindings/interrupt-controller/arm-gic.h>
> +
> +#include "imx94-clock.h"
> +#include "imx94-pinfunc.h"
> +#include "imx94-power.h"

> +
> +                       i3c1: i3c@44330000 {
> +                               compatible = "silvaco,i3c-master-v1";
> +                               reg = <0x44330000 0x10000>;
> +                               interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;
> +                               #address-cells = <3>;
> +                               #size-cells = <0>;
> +                               clocks = <&scmi_clk IMX94_CLK_I3C1SLOW>,
> +                                        <&scmi_clk IMX94_CLK_BUSAON>,
> +                                        <&dummy>;
Hi, Jacky

Please change this clock order to this like i3c2. pclk is system clock and fclk is bus clock.

                                 clocks = <&scmi_clk IMX94_CLK_BUSAON>,
                                          <&scmi_clk IMX94_CLK_I3C1SLOW >,
                                          <&dummy>;

BR
Carlos
> +                               clock-names = "pclk", "fast_clk","slow_clk";
> +                               status = "disabled";
> +                       };
> +
Jacky Bai April 1, 2025, 8:38 a.m. UTC | #2
> > Add the minimal dtsi support for i.MX943. i.MX943 is the first SoC of
> > i.MX94 Family, create a common dtsi for the whole i.MX94 family, and
> > the specific dtsi part for i.MX943.
> >
> > The clock, power domain and perf index need to be used by the device
> > nodes for resource reference, add them along with the dtsi support.
> >
> > Signed-off-by: Jacky Bai <ping.bai@nxp.com>
> > ---
> >  - v4 changes:
> >   - reorder the cpu node compatible string property as suggested by
> > Frank
> >
> >  - v3 changes:
> >   - remove the blank line
> >   - add PAD config macro define as suggested by Frank Li
> >   - update the device nodes compatible strings for imx94 as suggested
> > by Krzysztof
> >
> >  - v2 changes:
> >   - remove the unnecessary macro define in clock header as suggested
> > by Krzysztof
> >   - split the dtsi into imx94.dtsi and imx943.dtsi
> >   - use low case in the pinfunc header as Frank suggested
> >   - reorder the device nodes and properties
> > ---
> >  arch/arm64/boot/dts/freescale/imx94-clock.h   |  195 ++
> >  arch/arm64/boot/dts/freescale/imx94-pinfunc.h | 1570
> +++++++++++++++++
> >  arch/arm64/boot/dts/freescale/imx94-power.h   |   41 +
> >  arch/arm64/boot/dts/freescale/imx94.dtsi      | 1140 ++++++++++++
> >  arch/arm64/boot/dts/freescale/imx943.dtsi     |  148 ++
> >  5 files changed, 3094 insertions(+)
> >  create mode 100644 arch/arm64/boot/dts/freescale/imx94-clock.h
> >  create mode 100644 arch/arm64/boot/dts/freescale/imx94-pinfunc.h
> >  create mode 100644 arch/arm64/boot/dts/freescale/imx94-power.h
> >  create mode 100644 arch/arm64/boot/dts/freescale/imx94.dtsi
> >  create mode 100644 arch/arm64/boot/dts/freescale/imx943.dtsi
> >
> 
> ...
> > diff --git a/arch/arm64/boot/dts/freescale/imx94.dtsi
> > b/arch/arm64/boot/dts/freescale/imx94.dtsi
> > new file mode 100644
> > index 000000000000..26e08ac51c36
> > --- /dev/null
> > +++ b/arch/arm64/boot/dts/freescale/imx94.dtsi
> > @@ -0,0 +1,1140 @@
> > +// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
> > +/*
> > + * Copyright 2024-2025 NXP
> > + */
> > +
> > +#include <dt-bindings/dma/fsl-edma.h> #include
> > +<dt-bindings/gpio/gpio.h> #include <dt-bindings/input/input.h>
> > +#include <dt-bindings/interrupt-controller/arm-gic.h>
> > +
> > +#include "imx94-clock.h"
> > +#include "imx94-pinfunc.h"
> > +#include "imx94-power.h"
> 
> > +
> > +                       i3c1: i3c@44330000 {
> > +                               compatible = "silvaco,i3c-master-v1";
> > +                               reg = <0x44330000 0x10000>;
> > +                               interrupts = <GIC_SPI 14
> IRQ_TYPE_LEVEL_HIGH>;
> > +                               #address-cells = <3>;
> > +                               #size-cells = <0>;
> > +                               clocks = <&scmi_clk
> IMX94_CLK_I3C1SLOW>,
> > +                                        <&scmi_clk
> IMX94_CLK_BUSAON>,
> > +                                        <&dummy>;
> Hi, Jacky
> 
> Please change this clock order to this like i3c2. pclk is system clock and fclk is bus
> clock.

Thanks, will fix it.

BR
> 
>                                  clocks = <&scmi_clk
> IMX94_CLK_BUSAON>,
>                                           <&scmi_clk
> IMX94_CLK_I3C1SLOW >,
>                                           <&dummy>;
> 
> BR
> Carlos
> > +                               clock-names = "pclk",
> "fast_clk","slow_clk";
> > +                               status = "disabled";
> > +                       };
> > +
> 
>