RZ/G2L LCD controller composed of Frame compression Processor(FCPVD), Video signal processor (VSPD) and Display unit(DU). The output of LCDC is connected to Display parallel interface and MIPI link video interface.
This patch series aims to add basic display support on RZ/G2L SMARC EVK platform. The output from DSI is connected to ADV7535. The DU controller is similar to R-Car as it is connected to VSPD, so reusing most of R-Car code with new CRTC driver specific to RZ/G2L RFC->v1: * Changed minItems->maxItems for renesas,vsps. * Added RZ/G2L LCDC driver with special handling for CRTC reusing most of RCar DU code * Fixed the comments for num_rpf from rpf's->RPFs/ and vsp->VSP. RFC: https://patchwork.kernel.org/project/linux-renesas-soc/patch/20220112174612.10773-18-biju.das...@bp.renesas.com/ https://patchwork.kernel.org/project/linux-renesas-soc/patch/20220112174612.10773-12-biju.das...@bp.renesas.com/ https://patchwork.kernel.org/project/linux-renesas-soc/patch/20220112174612.10773-13-biju.das...@bp.renesas.com/ https://patchwork.kernel.org/project/linux-renesas-soc/patch/20220112174612.10773-19-biju.das...@bp.renesas.com/ Biju Das (7): dt-bindings: display: renesas,du: Document r9a07g044l bindings drm: rcar-du: Add num_rpf to struct rcar_du_device_info drm: rcar-du: Add max_width and max_height to struct rcar_du_device_info drm: rcar-du: Move rcar_du_output_name() to rcar_du_common.c drm: rcar-du: Factorise rcar_du_{atomic_check,modeset_init} drm: rcar-du: Factorise rcar_du_vsp{complete,enable,plane_atomic_check} drm: rcar-du: Add RZ/G2L LCDC Support .../bindings/display/renesas,du.yaml | 54 ++ drivers/gpu/drm/rcar-du/Kconfig | 18 +- drivers/gpu/drm/rcar-du/Makefile | 14 + drivers/gpu/drm/rcar-du/rcar_du_common.c | 30 + drivers/gpu/drm/rcar-du/rcar_du_crtc.h | 7 + drivers/gpu/drm/rcar-du/rcar_du_drv.c | 100 ++- drivers/gpu/drm/rcar-du/rcar_du_drv.h | 31 + drivers/gpu/drm/rcar-du/rcar_du_kms.c | 23 +- drivers/gpu/drm/rcar-du/rcar_du_plane.h | 12 + drivers/gpu/drm/rcar-du/rcar_du_vsp.c | 18 +- drivers/gpu/drm/rcar-du/rzg2l_lcdc_crtc.c | 722 ++++++++++++++++++ drivers/gpu/drm/rcar-du/rzg2l_lcdc_drv.c | 221 ++++++ drivers/gpu/drm/rcar-du/rzg2l_lcdc_plane.c | 82 ++ drivers/gpu/drm/rcar-du/rzg2l_lcdc_regs.h | 64 ++ 14 files changed, 1351 insertions(+), 45 deletions(-) create mode 100644 drivers/gpu/drm/rcar-du/rcar_du_common.c create mode 100644 drivers/gpu/drm/rcar-du/rzg2l_lcdc_crtc.c create mode 100644 drivers/gpu/drm/rcar-du/rzg2l_lcdc_drv.c create mode 100644 drivers/gpu/drm/rcar-du/rzg2l_lcdc_plane.c create mode 100644 drivers/gpu/drm/rcar-du/rzg2l_lcdc_regs.h -- 2.17.1