[PATCH 0/8] Add support for i.MX94 DCIF
Laurentiu Palcu
laurentiu.palcu at oss.nxp.com
Wed Jul 9 12:23:19 UTC 2025
Hi,
This patch-set adds support for the i.MX94 Display Control Interface.
It applies on top of Peng Fan's BLK_CTL patches: [1].
Also, included in the patch-set are a few extra patches that the DCIF
driver depends on for functioning properly:
* 1/8 : this is a fix for i.MX95 BLK_CTL driver;
* 2/8 - 4/8 : add support for i.MX94 to fsl-ldb driver. It also
contains a patch (3/8) from Liu Ying that was already reviewed
and was part of another patch-set ([2]), but was never merged;
Thanks,
Laurentiu
[1] https://lkml.org/lkml/2025/7/7/78
[2] https://lkml.org/lkml/2024/11/14/262
Laurentiu Palcu (6):
clk: imx95-blk-ctl: Cache registers when RPM routines are called
dt-bindings: display: fsl,ldb: Add binding for i.MX94
drm/bridge: fsl-ldb: Add support for i.MX94
dt-bindings: display: imx: Add bindings for i.MX94 DCIF
arm64: dts: imx943-evk: Add support for DCIF and LVDS
MAINTAINERS: Add entry for i.MX94 DCIF driver
Liu Ying (1):
drm/bridge: fsl-ldb: Get the next non-panel bridge
Sandor Yu (1):
drm/imx: Add support for i.MX94 DCIF
.../bindings/display/bridge/fsl,ldb.yaml | 2 +
.../bindings/display/imx/nxp,imx94-dcif.yaml | 101 +++
MAINTAINERS | 8 +
arch/arm64/boot/dts/freescale/imx943-evk.dts | 126 ++++
arch/arm64/boot/dts/freescale/imx943.dtsi | 56 +-
drivers/clk/imx/clk-imx95-blk-ctl.c | 55 +-
drivers/gpu/drm/bridge/fsl-ldb.c | 47 +-
drivers/gpu/drm/imx/Kconfig | 1 +
drivers/gpu/drm/imx/Makefile | 1 +
drivers/gpu/drm/imx/dcif/Kconfig | 12 +
drivers/gpu/drm/imx/dcif/Makefile | 5 +
drivers/gpu/drm/imx/dcif/dcif-crc.c | 211 ++++++
drivers/gpu/drm/imx/dcif/dcif-crc.h | 52 ++
drivers/gpu/drm/imx/dcif/dcif-crtc.c | 696 ++++++++++++++++++
drivers/gpu/drm/imx/dcif/dcif-drv.c | 293 ++++++++
drivers/gpu/drm/imx/dcif/dcif-drv.h | 87 +++
drivers/gpu/drm/imx/dcif/dcif-kms.c | 101 +++
drivers/gpu/drm/imx/dcif/dcif-plane.c | 269 +++++++
drivers/gpu/drm/imx/dcif/dcif-reg.h | 326 ++++++++
19 files changed, 2406 insertions(+), 43 deletions(-)
create mode 100644 Documentation/devicetree/bindings/display/imx/nxp,imx94-dcif.yaml
create mode 100644 drivers/gpu/drm/imx/dcif/Kconfig
create mode 100644 drivers/gpu/drm/imx/dcif/Makefile
create mode 100644 drivers/gpu/drm/imx/dcif/dcif-crc.c
create mode 100644 drivers/gpu/drm/imx/dcif/dcif-crc.h
create mode 100644 drivers/gpu/drm/imx/dcif/dcif-crtc.c
create mode 100644 drivers/gpu/drm/imx/dcif/dcif-drv.c
create mode 100644 drivers/gpu/drm/imx/dcif/dcif-drv.h
create mode 100644 drivers/gpu/drm/imx/dcif/dcif-kms.c
create mode 100644 drivers/gpu/drm/imx/dcif/dcif-plane.c
create mode 100644 drivers/gpu/drm/imx/dcif/dcif-reg.h
--
2.46.1
More information about the dri-devel
mailing list