All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] arm64: dts: imx8: architecture improvement and adding imx8qm support
@ 2019-02-21 18:24 Aisheng Dong
  2019-02-21 18:24   ` Aisheng Dong
                   ` (14 more replies)
  0 siblings, 15 replies; 35+ messages in thread
From: Aisheng Dong @ 2019-02-21 18:24 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Aisheng Dong, dongas86, catalin.marinas, will.deacon, robh+dt,
	dl-linux-imx, kernel, Fabio Estevam, shawnguo

IMX SCU based platforms (e.g. MX8QM/MX8QXP) are comprised of a number of SS
(Subsystems), those SS may be shared between different SoCs while most of them
can be reused like Devices Resources, Clocks, Power domains and etc.

This patch series aims to improve the MX8 architecture to comply with the HW
design to save a lot of duplicated codes and benefits us a better
maintainability and scalability in the future.

This whole architecture improvements still needs other two patch series
which are under review:
1. [0/3] firmware: imx: scu-pd: generalize the implementation
https://patchwork.kernel.org/cover/10822221/

2. [0/4] clk: imx: scu: add parsing clocks from device tree support
https://patchwork.kernel.org/cover/10824443/

This DT patch series depends on the 2.

NOTE: for the missing undocumented compatible strings for the new SoC IMX8QM
in this patch series. It will be sent in another patch series later.

Dong Aisheng (14):
  arm64: dts: imx8qxp: orginize dts in subsystems
  arm64: dts: imx8: add lsio scu clocks
  arm64: dts: imx8: add conn scu clocks
  arm64: dts: imx8: add adma scu clocks
  arm64: dts: imx8: add lsio lpcg clocks
  arm64: dts: imx8: add conn lpcg clocks
  arm64: dts: imx8: add adma lpcg clocks
  arm64: dts: imx8: switch to new clock binding
  arm64: dts: imx8qm: add lsio ss support
  arm64: dts: imx8qm: add conn ss support
  arm64: dts: imx8: split adma ss into dma and audio ss
  arm64: dts: imx8qm: add dma ss support
  arm64: dts: imx: add imx8qm common dts file
  arm64: dts: imx: add imx8qm mek support

 arch/arm64/boot/dts/freescale/Makefile             |   1 +
 arch/arm64/boot/dts/freescale/imx8-ss-adma.dtsi    |   7 +
 arch/arm64/boot/dts/freescale/imx8-ss-conn.dtsi    | 274 ++++++++++++++++
 arch/arm64/boot/dts/freescale/imx8-ss-dma.dtsi     | 279 ++++++++++++++++
 arch/arm64/boot/dts/freescale/imx8-ss-lsio.dtsi    | 351 +++++++++++++++++++++
 arch/arm64/boot/dts/freescale/imx8qm-mek.dts       | 144 +++++++++
 arch/arm64/boot/dts/freescale/imx8qm-ss-conn.dtsi  |  93 ++++++
 arch/arm64/boot/dts/freescale/imx8qm-ss-dma.dtsi   | 171 ++++++++++
 arch/arm64/boot/dts/freescale/imx8qm-ss-lsio.dtsi  | 145 +++++++++
 arch/arm64/boot/dts/freescale/imx8qm.dtsi          | 173 ++++++++++
 arch/arm64/boot/dts/freescale/imx8qxp-mek.dts      |   4 +-
 arch/arm64/boot/dts/freescale/imx8qxp-ss-adma.dtsi | 129 ++++++++
 arch/arm64/boot/dts/freescale/imx8qxp-ss-conn.dtsi |  89 ++++++
 arch/arm64/boot/dts/freescale/imx8qxp-ss-lsio.dtsi | 145 +++++++++
 arch/arm64/boot/dts/freescale/imx8qxp.dtsi         | 320 +------------------
 15 files changed, 2011 insertions(+), 314 deletions(-)
 create mode 100644 arch/arm64/boot/dts/freescale/imx8-ss-adma.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx8-ss-conn.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx8-ss-dma.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx8-ss-lsio.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx8qm-mek.dts
 create mode 100644 arch/arm64/boot/dts/freescale/imx8qm-ss-conn.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx8qm-ss-dma.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx8qm-ss-lsio.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx8qm.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx8qxp-ss-adma.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx8qxp-ss-conn.dtsi
 create mode 100644 arch/arm64/boot/dts/freescale/imx8qxp-ss-lsio.dtsi

-- 
2.7.4


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2019-04-02 14:42 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-21 18:24 [PATCH 00/14] arm64: dts: imx8: architecture improvement and adding imx8qm support Aisheng Dong
2019-02-21 18:24 ` [PATCH 01/14] arm64: dts: imx8qxp: orginize dts in subsystems Aisheng Dong
2019-02-21 18:24   ` Aisheng Dong
2019-04-02  4:16   ` Shawn Guo
2019-04-02  4:16     ` Shawn Guo
2019-04-02 14:38     ` Aisheng Dong
2019-04-02 14:38       ` Aisheng Dong
2019-02-21 18:24 ` [PATCH 02/14] arm64: dts: imx8: add lsio scu clocks Aisheng Dong
2019-02-21 18:24   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 03/14] arm64: dts: imx8: add conn " Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 04/14] arm64: dts: imx8: add adma " Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 05/14] arm64: dts: imx8: add lsio lpcg clocks Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 06/14] arm64: dts: imx8: add conn " Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 07/14] arm64: dts: imx8: add adma " Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 08/14] arm64: dts: imx8: switch to new clock binding Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 09/14] arm64: dts: imx8qm: add lsio ss support Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 10/14] arm64: dts: imx8qm: add conn " Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 11/14] arm64: dts: imx8: split adma ss into dma and audio ss Aisheng Dong
2019-02-21 18:25 ` [PATCH 12/14] arm64: dts: imx8qm: add dma ss support Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 13/14] arm64: dts: imx: add imx8qm common dts file Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-02-21 18:25 ` [PATCH 14/14] arm64: dts: imx: add imx8qm mek support Aisheng Dong
2019-02-21 18:25   ` Aisheng Dong
2019-03-26 13:16 ` [PATCH 00/14] arm64: dts: imx8: architecture improvement and adding imx8qm support Aisheng Dong
2019-04-02  4:28   ` Shawn Guo
2019-04-02 14:42     ` Aisheng Dong

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.