Hi Biju, On Sat, Aug 27, 2022 at 07:07:20PM +0000, Biju Das wrote: > Subject: Re: [PATCH v5 2/2] drm: rcar-du: Add RZ/G2L DSI driver > > On Thu, Aug 25, 2022 at 02:42:29PM +0100, Biju Das wrote: > > > This driver supports the MIPI DSI encoder found in the RZ/G2L SoC. It > > > currently supports DSI mode only. > > > > What other modes than DSI are there ? > > Currently it supports video mode only (video-input operation). > > This mode is tested with DSI connected to ADV7535 bridge. > > But lot of customers are asking for DSI panel support as well. > So going forward this driver needs to support DSI DCS commands > for supporting DSI panels. Ah OK. Then you can update the commit message to say "DSI video mode only" instead of "DSI mode only". > > > Signed-off-by: Biju Das <biju.das.jz@xxxxxxxxxxxxxx> > > > Acked-by: Sam Ravnborg <sam@xxxxxxxxxxxx> > > > --- > > > v4->v5: > > > * Added Ack from Sam. > > > * Added a trivial change, replaced rzg2l_mipi_dsi_parse_dt() > > > with drm_of_get_data_lanes_count_ep() in probe. > > > v3->v4: > > > * Updated error handling in rzg2l_mipi_dsi_startup() and rzg2l_mipi_dsi_atomic_enable() > > > v2->v3: > > > * pass rzg2l_mipi_dsi pointer to {Link,Phy} register rd/wr function instead > > > of the memory pointer > > > * Fixed the comment in rzg2l_mipi_dsi_startup() > > > * Removed unnecessary dbg message from rzg2l_mipi_dsi_start_video() > > > * DRM bridge parameter initialization moved to probe > > > * Replaced dev_dbg->dev_err in rzg2l_mipi_dsi_parse_dt() > > > * Inserted the missing blank lane after return in probe() > > > * Added missing MODULE_DEVICE_TABLE > > > * Added include linux/bits.h in header file > > > * Fixed various macros in header file. > > > * Reorder the make file for DSI, so that it is no more dependent > > > on RZ/G2L DU patch series. > > > v1->v2: > > > * Rework based on dt-binding change (DSI + D-PHY) as single block > > > * Replaced link_mmio and phy_mmio with mmio in struct rzg2l_mipi_dsi > > > * Replaced rzg2l_mipi_phy_write with rzg2l_mipi_dsi_phy_write > > > and rzg2l_mipi_dsi_link_write > > > * Replaced rzg2l_mipi_phy_read->rzg2l_mipi_dsi_link_read > > > RFC->v1: > > > * Added "depends on ARCH_RENESAS || COMPILE_TEST" on KCONFIG > > > and dropped DRM as it is implied by DRM_BRIDGE > > > * Used devm_reset_control_get_exclusive() for reset handle > > > * Removed bool hsclkmode from struct rzg2l_mipi_dsi > > > * Added error check for pm, using pm_runtime_resume_and_get() instead of > > > pm_runtime_get_sync() > > > * Added check for unsupported formats in rzg2l_mipi_dsi_host_attach() > > > * Avoided read-modify-write stopping hsclock > > > * Used devm_platform_ioremap_resource for resource allocation > > > * Removed unnecessary assert call from probe and remove. > > > * wrap the line after the PTR_ERR() in probe() > > > * Updated reset failure messages in probe > > > * Fixed the typo arstc->prstc > > > * Made hex constants to lower case. > > > RFC: > > > * > > > --- > > > drivers/gpu/drm/rcar-du/Kconfig | 8 + > > > drivers/gpu/drm/rcar-du/Makefile | 2 + > > > drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c | 690 ++++++++++++++++++ > > > drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi_regs.h | 151 ++++ > > > 4 files changed, 851 insertions(+) > > > create mode 100644 drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c > > > create mode 100644 drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi_regs.h -- Regards, Laurent Pinchart