Skip to content

Commit 7070f55

Browse files
committed
drm/bridge: cdns-dsi: Don't fail on MIPI_DSI_MODE_VIDEO_BURST
While the cdns-dsi does not support DSI burst mode, the burst mode is essentially DSI event mode with more versatile clocking and timings. Thus cdns-dsi doesn't need to fail if the DSI peripheral driver requests MIPI_DSI_MODE_VIDEO_BURST. In my particular use case, this allows the use of ti-sn65dsi83 driver. Tested-by: Parth Pancholi <parth.pancholi@toradex.com> Tested-by: Jayesh Choudhary <j-choudhary@ti.com> Reviewed-by: Devarsh Thakkar <devarsht@ti.com> Link: https://lore.kernel.org/r/20250723-cdns-dsi-impro-v5-15-e61cc06074c2@ideasonboard.com Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
1 parent 2f73f89 commit 7070f55

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

drivers/gpu/drm/bridge/cadence/cdns-dsi-core.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1052,10 +1052,6 @@ static int cdns_dsi_attach(struct mipi_dsi_host *host,
10521052
if (output->dev)
10531053
return -EBUSY;
10541054

1055-
/* We do not support burst mode yet. */
1056-
if (dev->mode_flags & MIPI_DSI_MODE_VIDEO_BURST)
1057-
return -ENOTSUPP;
1058-
10591055
/*
10601056
* The host <-> device link might be described using an OF-graph
10611057
* representation, in this case we extract the device of_node from

0 commit comments

Comments
 (0)