linux-phy.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] media: add imx93 mipi/controller csi support
@ 2025-07-01 22:06 Frank Li
  2025-07-01 22:06 ` [PATCH 1/7] dt-bindings: media: add DW MIPI CSI-2 Host support Frank Li
                   ` (6 more replies)
  0 siblings, 7 replies; 20+ messages in thread
From: Frank Li @ 2025-07-01 22:06 UTC (permalink / raw)
  To: Rui Miguel Silva, Laurent Pinchart, Martin Kepplinger,
	Purism Kernel Team, Mauro Carvalho Chehab, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Eugen Hristev, Shawn Guo,
	Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, Peng Fan,
	Alice Yuan, Vinod Koul, Kishon Vijay Abraham I, Philipp Zabel
  Cc: linux-media, devicetree, linux-kernel, imx, linux-arm-kernel,
	linux-phy, Frank Li, Luis Oliveira, Guoniu.zhou, Jindong Yue,
	Robby Cai, Eugen Hristev

Add camera support for imx93. MIPI CSI2 use Sysnosys designware MIPI CSI2
controller.
  binding doc: dt-bindings: media: add DW MIPI CSI-2 Host support
  drivers: media: nxp: add designware MIPI CSI2 controller driver

i.MX93 provide DWC CSI2 DPHY wrapper layer, which module as standard phy
driver. The controller register lay in imx-blk-ctrl.
  binding doc: dt-bindings: soc: imx-blk-ctrl: add MIPI CSI2 dphy support
  phy: freescale: add imx93 MIPI CSI2 DPHY support

Dts part:
  common part: dts: arm64: imx93: add camera related nodes
  board level depend on AP1302 sensor driver, which have not upstreamed yet.
Leave here just converince for reviewer to do test. Please skip review below
2 patches
  [NOT MERGE]media: i2c: add AP1302 driver from community
  [NOT MERGE]arm64: dts: imx93-11x11-evk: add camera related nodes

Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
Eugen Hristev (1):
      dt-bindings: media: add DW MIPI CSI-2 Host support

Frank Li (4):
      dt-bindings: soc: imx-blk-ctrl: add MIPI CSI2 dphy support
      pmdomain: imx93-blk-ctrl: populate child devices
      phy: freescale: add imx93 MIPI CSI2 DPHY support
      [NOT MERGE] arm64: dts: imx93-11x11-evk: add camera related nodes

Guoniu.zhou (2):
      media: nxp: add DesignWare MIPI CSI2 controller driver
      [NOT MERGE]media: i2c: add AP1302 driver from community

 .../bindings/media/snps,dw-mipi-csi2-v150.yaml     |  161 ++
 .../bindings/soc/imx/fsl,imx93-media-blk-ctrl.yaml |   28 +
 MAINTAINERS                                        |    2 +
 arch/arm64/boot/dts/freescale/imx93-11x11-evk.dts  |  139 +
 drivers/media/i2c/Kconfig                          |   13 +
 drivers/media/i2c/Makefile                         |    1 +
 drivers/media/i2c/ap1302.c                         | 2920 ++++++++++++++++++++
 drivers/media/platform/nxp/Kconfig                 |   11 +
 drivers/media/platform/nxp/Makefile                |    1 +
 drivers/media/platform/nxp/dwc-mipi-csi2.c         | 1675 +++++++++++
 drivers/phy/freescale/Kconfig                      |   10 +
 drivers/phy/freescale/Makefile                     |    1 +
 drivers/phy/freescale/phy-fsl-imx93-dphy-rx.c      |  306 ++
 drivers/pmdomain/imx/imx93-blk-ctrl.c              |    3 +-
 14 files changed, 5270 insertions(+), 1 deletion(-)
---
base-commit: 778df2ca2914864b0876d8c9d7383a5f4293f43c
change-id: 20250606-95_cam-b74c094ad1fb

Best regards,
---
Frank Li <Frank.Li@nxp.com>


-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

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

end of thread, other threads:[~2025-07-04  2:07 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-01 22:06 [PATCH 0/7] media: add imx93 mipi/controller csi support Frank Li
2025-07-01 22:06 ` [PATCH 1/7] dt-bindings: media: add DW MIPI CSI-2 Host support Frank Li
2025-07-02  6:38   ` Krzysztof Kozlowski
2025-07-01 22:06 ` [PATCH 2/7] dt-bindings: soc: imx-blk-ctrl: add MIPI CSI2 dphy support Frank Li
2025-07-02  6:40   ` Krzysztof Kozlowski
2025-07-02  6:42   ` Krzysztof Kozlowski
2025-07-02 18:02     ` Frank Li
2025-07-02 20:12       ` Krzysztof Kozlowski
2025-07-01 22:06 ` [PATCH 3/7] pmdomain: imx93-blk-ctrl: populate child devices Frank Li
2025-07-02  5:15   ` Alexander Stein
2025-07-01 22:06 ` [PATCH 4/7] phy: freescale: add imx93 MIPI CSI2 DPHY support Frank Li
2025-07-02  5:50   ` Alexander Stein
2025-07-01 22:06 ` [PATCH 5/7] media: nxp: add DesignWare MIPI CSI2 controller driver Frank Li
2025-07-02  6:04   ` Alexander Stein
2025-07-02  6:35   ` Krzysztof Kozlowski
2025-07-02  9:38   ` Laurent Pinchart
2025-07-02 15:55     ` Frank Li
2025-07-04  2:04       ` Frank Li
2025-07-01 22:06 ` [PATCH NOT MERGE 6/7] arm64: dts: imx93-11x11-evk: add camera related nodes Frank Li
2025-07-01 22:06 ` [PATCH NOT MERGE 7/7] media: i2c: add AP1302 driver from community Frank Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).