On Thu, Nov 19, 2020 at 03:26:15PM -0800, Manasi Navare wrote:
> This should fix the boot oops for dsi
> 
> v2:
> * Fix indent (Manasi)
> v3:
> * Remove redundant condition (Matt Roper)
> 
> Fixes: 4e3cdb4535e7 ("drm/i915/dp: Master/Slave enable/disable sequence for 
> bigjoiner")
> Signed-off-by: Manasi Navare <manasi.d.nav...@intel.com>

Looks like the right change; the old condition didn't make sense since
it would always be true.

Reviewed-by: Matt Roper <matthew.d.ro...@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_display.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c 
> b/drivers/gpu/drm/i915/display/intel_display.c
> index 1a0f00f37ca9..0038f14c8bfb 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -7211,12 +7211,10 @@ static void hsw_crtc_enable(struct intel_atomic_state 
> *state,
>       if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv))
>               bdw_set_pipemisc(new_crtc_state);
>  
> -     if (!new_crtc_state->bigjoiner_slave || 
> !transcoder_is_dsi(cpu_transcoder)) {
> -             if (!transcoder_is_dsi(cpu_transcoder))
> -                     intel_set_transcoder_timings(new_crtc_state);
> +     if (!new_crtc_state->bigjoiner_slave && 
> !transcoder_is_dsi(cpu_transcoder)) {
> +             intel_set_transcoder_timings(new_crtc_state);
>  
> -             if (cpu_transcoder != TRANSCODER_EDP &&
> -                 !transcoder_is_dsi(cpu_transcoder))
> +             if (cpu_transcoder != TRANSCODER_EDP)
>                       intel_de_write(dev_priv, PIPE_MULT(cpu_transcoder),
>                                      new_crtc_state->pixel_multiplier - 1);
>  
> -- 
> 2.19.1
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Matt Roper
Graphics Software Engineer
VTT-OSGC Platform Enablement
Intel Corporation
(916) 356-2795
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to