All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] imx: support i.MX93 SRC and mediamix blk ctrl
@ 2022-05-23 11:30 ` Peng Fan (OSS)
  0 siblings, 0 replies; 38+ messages in thread
From: Peng Fan (OSS) @ 2022-05-23 11:30 UTC (permalink / raw)
  To: robh+dt, krzysztof.kozlowski+dt, sboyd, mturquette, shawnguo, s.hauer
  Cc: aisheng.dong, l.stach, kernel, festevam, linux-imx, devicetree,
	linux-kernel, linux-arm-kernel, Peng Fan

From: Peng Fan <peng.fan@nxp.com>

This patchset is to support i.MX93 SRC and mediamix blk ctrl.
SRC functions as power domain provider as i.MX8M GPC.
mediamix blk ctrl is similar with i.MX8M blk ctrl, but much simplier from
software view.

Export of_clk_bulk_get_all for driver usage.

Add bindings and dts node

Based on:
https://patchwork.kernel.org/project/linux-arm-kernel/cover/20220510124050.398891-1-peng.fan@oss.nxp.com/

Peng Fan (7):
  dt-bindings: soc: add bindings for i.MX93 SRC
  dt-bindings: soc: add bindings for i.MX93 mediamix blk ctrl
  clk: export of_clk_bulk_get_all
  soc: imx: add i.MX93 SRC power domain driver
  soc: imx: add i.MX93 media blk ctrl driver
  arm64: dts: imx93: add src node
  arm64: dts: imx93: add mediamix blk ctrl node

 .../soc/imx/fsl,imx93-media-blk-ctrl.yaml     |  81 +++++
 .../bindings/soc/imx/fsl,imx93-src.yaml       |  88 +++++
 arch/arm64/boot/dts/freescale/imx93.dtsi      |  38 ++
 drivers/clk/clk-bulk.c                        |   3 +-
 drivers/soc/imx/Kconfig                       |  10 +
 drivers/soc/imx/Makefile                      |   1 +
 drivers/soc/imx/imx93-blk-ctrl.c              | 333 ++++++++++++++++++
 drivers/soc/imx/imx93-pd.c                    | 271 ++++++++++++++
 include/dt-bindings/power/imx93-power.h       |  17 +
 include/linux/clk.h                           |   2 +
 10 files changed, 843 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/soc/imx/fsl,imx93-media-blk-ctrl.yaml
 create mode 100644 Documentation/devicetree/bindings/soc/imx/fsl,imx93-src.yaml
 create mode 100644 drivers/soc/imx/imx93-blk-ctrl.c
 create mode 100644 drivers/soc/imx/imx93-pd.c
 create mode 100644 include/dt-bindings/power/imx93-power.h

-- 
2.25.1


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

end of thread, other threads:[~2022-05-29  7:58 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-23 11:30 [PATCH 0/7] imx: support i.MX93 SRC and mediamix blk ctrl Peng Fan (OSS)
2022-05-23 11:30 ` Peng Fan (OSS)
2022-05-23 11:30 ` [PATCH 1/7] dt-bindings: soc: add bindings for i.MX93 SRC Peng Fan (OSS)
2022-05-23 11:30   ` Peng Fan (OSS)
2022-05-24 10:07   ` Krzysztof Kozlowski
2022-05-24 10:07     ` Krzysztof Kozlowski
2022-05-24 10:37     ` Peng Fan
2022-05-24 10:37       ` Peng Fan
2022-05-24 11:34       ` Krzysztof Kozlowski
2022-05-24 11:34         ` Krzysztof Kozlowski
2022-05-24 12:07         ` Peng Fan
2022-05-24 12:07           ` Peng Fan
2022-05-26 12:08           ` Krzysztof Kozlowski
2022-05-26 12:08             ` Krzysztof Kozlowski
2022-05-27  1:47             ` Peng Fan
2022-05-27  1:47               ` Peng Fan
2022-05-29  7:56               ` Krzysztof Kozlowski
2022-05-29  7:56                 ` Krzysztof Kozlowski
2022-05-24 11:16   ` Krzysztof Kozlowski
2022-05-24 11:16     ` Krzysztof Kozlowski
2022-05-23 11:30 ` [PATCH 2/7] dt-bindings: soc: add bindings for i.MX93 mediamix blk ctrl Peng Fan (OSS)
2022-05-23 11:30   ` Peng Fan (OSS)
2022-05-24 11:20   ` Krzysztof Kozlowski
2022-05-24 11:20     ` Krzysztof Kozlowski
2022-05-23 11:30 ` [PATCH 3/7] clk: export of_clk_bulk_get_all Peng Fan (OSS)
2022-05-23 11:30   ` Peng Fan (OSS)
2022-05-23 11:30 ` [PATCH 4/7] soc: imx: add i.MX93 SRC power domain driver Peng Fan (OSS)
2022-05-23 11:30   ` Peng Fan (OSS)
2022-05-23 11:30 ` [PATCH 5/7] soc: imx: add i.MX93 media blk ctrl driver Peng Fan (OSS)
2022-05-23 11:30   ` Peng Fan (OSS)
2022-05-23 11:30 ` [PATCH 6/7] arm64: dts: imx93: add src node Peng Fan (OSS)
2022-05-23 11:30   ` Peng Fan (OSS)
2022-05-24 11:20   ` Krzysztof Kozlowski
2022-05-24 11:20     ` Krzysztof Kozlowski
2022-05-23 11:30 ` [PATCH 7/7] arm64: dts: imx93: add mediamix blk ctrl node Peng Fan (OSS)
2022-05-23 11:30   ` Peng Fan (OSS)
2022-05-24 11:20   ` Krzysztof Kozlowski
2022-05-24 11:20     ` 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.