[Intel-gfx] [PATCH 4/4] drm/i915: Skip gunit save/restore for cherryview

Ville Syrjälä ville.syrjala at linux.intel.com
Thu Dec 11 04:02:52 PST 2014


On Fri, Dec 12, 2014 at 02:18:16PM +0530, deepak.s at linux.intel.com wrote:
> From: Deepak S <deepak.s at linux.intel.com>
> 
> With cherryview onwards, Gunit hardware itself save and restore all the
> Gunit registers. Skipping the "vlv_save_gunit_s0ix_state" &
> "vlv_restore_gunit_s0ix_state" for cherryview in S3/S0ix sequence.
> 
> Signed-off-by: Deepak S <deepak.s at linux.intel.com>

I had the same patch tucked away somewhere, but didn't bother to send it
since I've not yet looked into s0ix. In any case the docs agree with
this so:

Reviewed-by: Ville Syrjälä <ville.syrjala at linux.intel.com>

> ---
>  drivers/gpu/drm/i915/i915_drv.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> index 6c09bf8..6257f66 100644
> --- a/drivers/gpu/drm/i915/i915_drv.c
> +++ b/drivers/gpu/drm/i915/i915_drv.c
> @@ -1299,7 +1299,9 @@ static int vlv_suspend_complete(struct drm_i915_private *dev_priv)
>  	err = vlv_allow_gt_wake(dev_priv, false);
>  	if (err)
>  		goto err2;
> -	vlv_save_gunit_s0ix_state(dev_priv);
> +
> +	if (!IS_CHERRYVIEW(dev_priv->dev))
> +		vlv_save_gunit_s0ix_state(dev_priv);
>  
>  	err = vlv_force_gfx_clock(dev_priv, false);
>  	if (err)
> @@ -1330,7 +1332,8 @@ static int vlv_resume_prepare(struct drm_i915_private *dev_priv,
>  	 */
>  	ret = vlv_force_gfx_clock(dev_priv, true);
>  
> -	vlv_restore_gunit_s0ix_state(dev_priv);
> +	if (!IS_CHERRYVIEW(dev_priv->dev))
> +		vlv_restore_gunit_s0ix_state(dev_priv);
>  
>  	err = vlv_allow_gt_wake(dev_priv, true);
>  	if (!ret)
> -- 
> 1.9.1

-- 
Ville Syrjälä
Intel OTC


More information about the Intel-gfx mailing list