dsi_write(msm_host, REG_DSI_CTRL, 0);
 }
 
+bool msm_dsi_host_is_wide_bus_enabled(struct mipi_dsi_host *host)
+{
+       struct msm_dsi_host *msm_host = to_msm_dsi_host(host);
+
+       return msm_host->dsc &&
+               (msm_host->cfg_hnd->major == MSM_DSI_VER_MAJOR_6G &&
+                msm_host->cfg_hnd->minor >= MSM_DSI_6G_VER_MINOR_V2_5_0);
+}
+
 static void dsi_ctrl_enable(struct msm_dsi_host *msm_host,
                        struct msm_dsi_phy_shared_timings *phy_shared_timings, struct msm_dsi_phy *phy)
 {
                data |= DSI_CMD_CFG1_INSERT_DCS_COMMAND;
                dsi_write(msm_host, REG_DSI_CMD_CFG1, data);
 
-               if (msm_host->cfg_hnd->major == MSM_DSI_VER_MAJOR_6G &&
-                   msm_host->cfg_hnd->minor >= MSM_DSI_6G_VER_MINOR_V1_3) {
+               if (cfg_hnd->major == MSM_DSI_VER_MAJOR_6G) {
                        data = dsi_read(msm_host, REG_DSI_CMD_MODE_MDP_CTRL2);
-                       data |= DSI_CMD_MODE_MDP_CTRL2_BURST_MODE;
+
+                       if (cfg_hnd->minor >= MSM_DSI_6G_VER_MINOR_V1_3)
+                               data |= DSI_CMD_MODE_MDP_CTRL2_BURST_MODE;
+
+                       /* TODO: Allow for video-mode support once tested/fixed */
+                       if (msm_dsi_host_is_wide_bus_enabled(&msm_host->base))
+                               data |= DSI_CMD_MODE_MDP_CTRL2_DATABUS_WIDEN;
+
                        dsi_write(msm_host, REG_DSI_CMD_MODE_MDP_CTRL2, data);
                }
        }
        u32 hdisplay = mode->hdisplay;
        u32 wc;
        int ret;
+       bool wide_bus_enabled = msm_dsi_host_is_wide_bus_enabled(&msm_host->base);
 
        DBG("");
 
 
        if (msm_host->dsc) {
                struct drm_dsc_config *dsc = msm_host->dsc;
+               u32 bytes_per_pclk;
 
                /* update dsc params with timing params */
                if (!dsc || !mode->hdisplay || !mode->vdisplay) {
                 * pulse width same
                 */
                h_total -= hdisplay;
-               hdisplay = DIV_ROUND_UP(msm_dsc_get_bytes_per_line(msm_host->dsc), 3);
+               if (wide_bus_enabled && !(msm_host->mode_flags & MIPI_DSI_MODE_VIDEO))
+                       bytes_per_pclk = 6;
+               else
+                       bytes_per_pclk = 3;
+
+               hdisplay = DIV_ROUND_UP(msm_dsc_get_bytes_per_line(msm_host->dsc), bytes_per_pclk);
+
                h_total += hdisplay;
                ha_end = ha_start + hdisplay;
        }