> -----Original Message-----
> From: Intel-gfx [mailto:[email protected]] On Behalf Of
> [email protected]
> Sent: Tuesday, May 05, 2015 7:06 AM
> To: [email protected]
> Subject: [Intel-gfx] [PATCH 8/9] drm/i915: Fix hdmi clock readout with pixel
> repeat
> 
> From: Ville Syrjälä <[email protected]>
> 
> Account for the pixel multiplier when reading out the HDMI
> mode dotclock. Makes the state checked happier on my ILK when using
> double clocked modes.
> 
> Signed-off-by: Ville Syrjälä <[email protected]>
> ---
>  drivers/gpu/drm/i915/intel_hdmi.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/intel_hdmi.c
> b/drivers/gpu/drm/i915/intel_hdmi.c
> index ce595c3..1810242 100644
> --- a/drivers/gpu/drm/i915/intel_hdmi.c
> +++ b/drivers/gpu/drm/i915/intel_hdmi.c
> @@ -943,6 +943,9 @@ static void intel_hdmi_get_config(struct intel_encoder
> *encoder,
>       else
>               dotclock = pipe_config->port_clock;
> 
> +     if (pipe_config->pixel_multiplier)
> +             dotclock /= pipe_config->pixel_multiplier;
> +

This is unrelated to HDMI 12bpc series. May be a separate patch.

Reviewed-by: Chandra Konduru <[email protected]>


>       if (HAS_PCH_SPLIT(dev_priv->dev))
>               ironlake_check_encoder_dotclock(pipe_config, dotclock);
> 
> --
> 2.0.5
> 
> _______________________________________________
> Intel-gfx mailing list
> [email protected]
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to