On Fri, 21 Feb 2014 13:52:21 -0300
Paulo Zanoni <przan...@gmail.com> wrote:

> From: Paulo Zanoni <paulo.r.zan...@intel.com>
> 
> Otherwise, when we run intel_modeset_check_state we may already be
> runtime suspended, and our state checking code will read registers
> while the device is suspended. This can only happen if your
> autosuspend_delay_ms is low (not the default 10s).
> 
> Signed-off-by: Paulo Zanoni <paulo.r.zan...@intel.com>
> ---
>  drivers/gpu/drm/i915/intel_display.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/intel_display.c 
> b/drivers/gpu/drm/i915/intel_display.c
> index 10ec401..c64fb7f 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -9746,13 +9746,18 @@ static int intel_set_mode(struct drm_crtc *crtc,
>                         struct drm_display_mode *mode,
>                         int x, int y, struct drm_framebuffer *fb)
>  {
> +     struct drm_device *dev = crtc->dev;
> +     struct drm_i915_private *dev_priv = dev->dev_private;
>       int ret;
>  
> +     intel_runtime_pm_get(dev_priv);
> +
>       ret = __intel_set_mode(crtc, mode, x, y, fb);
>  
>       if (ret == 0)
>               intel_modeset_check_state(crtc->dev);
>  
> +     intel_runtime_pm_put(dev_priv);
>       return ret;
>  }
>  

Reviewed-by: Jesse Barnes <jbar...@virtuousgeek.org>

-- 
Jesse Barnes, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to