All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 0/9] Add i.MX91 platform support
@ 2025-06-23  9:57 Joy Zou
  2025-06-23  9:57 ` [PATCH v6 1/9] dt-bindings: arm: fsl: add i.MX91 11x11 evk board Joy Zou
                   ` (9 more replies)
  0 siblings, 10 replies; 21+ messages in thread
From: Joy Zou @ 2025-06-23  9:57 UTC (permalink / raw)
  To: robh, krzk+dt, conor+dt, shawnguo, s.hauer, catalin.marinas, will,
	andrew+netdev, davem, edumazet, kuba, pabeni, mcoquelin.stm32,
	alexandre.torgue, ulf.hansson, richardcochran, kernel, festevam
  Cc: devicetree, linux-kernel, imx, linux-arm-kernel, netdev,
	linux-stm32, linux-pm, frank.li, ye.li, ping.bai, aisheng.dong

The design of i.MX91 platform is very similar to i.MX93.
Extracts the common parts in order to reuse code.

The mainly difference between i.MX91 and i.MX93 is as follows:
- i.MX91 removed some clocks and modified the names of some clocks.
- i.MX91 only has one A core.
- i.MX91 has different pinmux.
- i.MX91 has updated to new temperature sensor same with i.MX95.

---
Changes for v6:
- add changelog in per patch.
- correct commit message spell for patch #1.
- merge rename imx93.dtsi to imx91_93_common.dtsi and move i.MX93
  specific part from imx91_93_common.dtsi to imx93.dtsi for patch #3.
- modify the commit message for patch #3.
- restore copyright time and add modification time for common dtsi for patch #3.
- remove unused map0 label in imx91_93_common.dtsi for patch #3.
- remove tmu related node for patch #4.
- remove unused regulators and pinctrl settings for patch #5.
- add new modification for aliases change patch #6.

Changes for v5:
- rename imx93.dtsi to imx91_93_common.dtsi.
- move imx93 specific part from imx91_93_common.dtsi to imx93.dtsi.
- modify the imx91.dtsi to use imx91_93_common.dtsi.
- add new the imx93-blk-ctrl binding and driver patch for imx91 support.
- add new net patch for imx91 support.
- change node name codec and lsm6dsm into common name audio-codec and
  inertial-meter, and add BT compatible string for imx91 board dts.

Changes for v4:
- Add one imx93 patch that add labels in imx93.dtsi
- modify the references in imx91.dtsi
- modify the code alignment
- remove unused newline
- delete the status property
- align pad hex values

Changes for v3:
- Add Conor's ack on patch #1
- format imx91-11x11-evk.dts with the dt-format tool
- add lpi2c1 node

Changes for v2:
- change ddr node pmu compatible
- remove mu1 and mu2
- change iomux node compatible and enable 91 pinctrl
- refine commit message for patch #2
- change hex to lowercase in pinfunc.h
- ordering nodes with the dt-format tool

Joy Zou (8):
  dt-bindings: soc: imx-blk-ctrl: add i.MX91 blk-ctrl compatible
  arm64: dts: freescale: rename imx93.dtsi to imx91_93_common.dtsi and
    modify them
  arm64: dts: imx91: add i.MX91 dtsi support
  arm64: dts: freescale: add i.MX91 11x11 EVK basic support
  arm64: dts: freescale: move aliases from imx91_93_common.dtsi to board
    dts
  arm64: defconfig: enable i.MX91 pinctrl
  pmdomain: imx93-blk-ctrl: mask DSI and PXP PD domain register on
    i.MX91
  net: stmmac: imx: add i.MX91 support

Pengfei Li (1):
  dt-bindings: arm: fsl: add i.MX91 11x11 evk board

 .../devicetree/bindings/arm/fsl.yaml          |    6 +
 .../soc/imx/fsl,imx93-media-blk-ctrl.yaml     |   55 +-
 arch/arm64/boot/dts/freescale/Makefile        |    1 +
 .../boot/dts/freescale/imx91-11x11-evk.dts    |  679 ++++++++
 arch/arm64/boot/dts/freescale/imx91-pinfunc.h |  770 +++++++++
 arch/arm64/boot/dts/freescale/imx91.dtsi      |   71 +
 .../{imx93.dtsi => imx91_93_common.dtsi}      |  176 +-
 .../boot/dts/freescale/imx93-11x11-evk.dts    |   19 +
 arch/arm64/boot/dts/freescale/imx93.dtsi      | 1512 ++---------------
 arch/arm64/configs/defconfig                  |    1 +
 .../net/ethernet/stmicro/stmmac/dwmac-imx.c   |    2 +
 drivers/pmdomain/imx/imx93-blk-ctrl.c         |   15 +
 12 files changed, 1771 insertions(+), 1536 deletions(-)
 create mode 100644 arch/arm64/boot/dts/freescale/imx91-11x11-evk.dts
 create mode 100644 arch/arm64/boot/dts/freescale/imx91-pinfunc.h
 create mode 100644 arch/arm64/boot/dts/freescale/imx91.dtsi
 copy arch/arm64/boot/dts/freescale/{imx93.dtsi => imx91_93_common.dtsi} (90%)
 rewrite arch/arm64/boot/dts/freescale/imx93.dtsi (97%)

-- 
2.37.1


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

end of thread, other threads:[~2025-06-25  6:10 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-23  9:57 [PATCH v6 0/9] Add i.MX91 platform support Joy Zou
2025-06-23  9:57 ` [PATCH v6 1/9] dt-bindings: arm: fsl: add i.MX91 11x11 evk board Joy Zou
2025-06-23  9:57 ` [PATCH v6 2/9] dt-bindings: soc: imx-blk-ctrl: add i.MX91 blk-ctrl compatible Joy Zou
2025-06-23 14:51   ` Frank Li
2025-06-24  7:28   ` Krzysztof Kozlowski
2025-06-24 14:51     ` Frank Li
2025-06-24 15:39       ` Krzysztof Kozlowski
2025-06-24 19:08         ` Frank Li
2025-06-25  6:10           ` Krzysztof Kozlowski
2025-06-23  9:57 ` [PATCH v6 3/9] arm64: dts: freescale: rename imx93.dtsi to imx91_93_common.dtsi and modify them Joy Zou
2025-06-23  9:57 ` [PATCH v6 4/9] arm64: dts: imx91: add i.MX91 dtsi support Joy Zou
2025-06-23  9:57 ` [PATCH v6 5/9] arm64: dts: freescale: add i.MX91 11x11 EVK basic support Joy Zou
2025-06-23 14:57   ` Frank Li
2025-06-23 18:17   ` Andrew Lunn
2025-06-23  9:57 ` [PATCH v6 6/9] arm64: dts: freescale: move aliases from imx91_93_common.dtsi to board dts Joy Zou
2025-06-23 15:10   ` Frank Li
2025-06-23  9:57 ` [PATCH v6 7/9] arm64: defconfig: enable i.MX91 pinctrl Joy Zou
2025-06-23  9:57 ` [PATCH v6 8/9] pmdomain: imx93-blk-ctrl: mask DSI and PXP PD domain register on i.MX91 Joy Zou
2025-06-23 12:56   ` Fabio Estevam
2025-06-23  9:57 ` [PATCH v6 9/9] net: stmmac: imx: add i.MX91 support Joy Zou
2025-06-24  7:29 ` [PATCH v6 0/9] Add i.MX91 platform support Krzysztof Kozlowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.