]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/bridge: tc358767: Enable DSI burst mode, LPM, non-continuous clock
authorMarek Vasut <marex@denx.de>
Sun, 16 Oct 2022 00:36:32 +0000 (02:36 +0200)
committerMarek Vasut <marex@denx.de>
Mon, 3 Apr 2023 14:38:16 +0000 (16:38 +0200)
The TC358767/TC358867/TC9595 are capable of DSI burst mode, which
is more energy efficient than the non-burst modes. Make use of it.

The TC358767/TC358867/TC9595 are capable of DSI non-continuous clock,
since it sources the internal PLL clock from external clock source.
The DSI non-continuous clock further reduces power utilization.

The TC358767/TC358867/TC9595 may use DSI LPM for command transmissions,
make sure this is configured correctly in the DSI mode flags.

Signed-off-by: Marek Vasut <marex@denx.de>
Acked-by: Maxime Ripard <maxime@cerno.tech>
Link: https://patchwork.freedesktop.org/patch/msgid/20221016003632.406468-1-marex@denx.de
drivers/gpu/drm/bridge/tc358767.c

index 6d16ec45ea6145984f47e45d90e8a301739a6845..91f7cb56a654d698179f4b100369a29116086ce6 100644 (file)
@@ -1896,10 +1896,10 @@ static int tc_mipi_dsi_host_attach(struct tc_data *tc)
                                     "failed to create dsi device\n");
 
        tc->dsi = dsi;
-
        dsi->lanes = dsi_lanes;
        dsi->format = MIPI_DSI_FMT_RGB888;
-       dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE;
+       dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST |
+                         MIPI_DSI_MODE_LPM | MIPI_DSI_CLOCK_NON_CONTINUOUS;
 
        ret = mipi_dsi_attach(dsi);
        if (ret < 0) {