All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/gen9+: Set same power state before hibernation image save/restore
@ 2017-08-16 14:46 Imre Deak
  2017-08-16 15:46 ` Imre Deak
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Imre Deak @ 2017-08-16 14:46 UTC (permalink / raw)
  To: intel-gfx; +Cc: Rodrigo Vivi

Atm, on GEN9 big core platforms before saving the hibernation image we
uninitialize the display, disabling power wells manually, while before
restoring the image we keep things powered (letting HW/DMC power down
things as needed). The state mismatch will trigger the following error:

DC state mismatch (0x0 -> 0x2)

While the restore handler knows how to initialize the display from an
unknown state (due to a different loader kernel or not having i915
loaded in the loader kernel) we should still use the same state for
consistency before image saving and restoring. Do this by uniniting the
display before restoring the image too.

Bugzilla: https://bugs.freedesktop.org/attachment.cgi?id=133376
Reported-and-tested-by: Wang Wendy <wendy.wang@intel.com>
Reported-and-tested-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Wang Wendy <wendy.wang@intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Ville Syrjala <ville.syrjala@linux.intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>

---

[ No Fixes: line, since I'm not aware of any other issues caused by this
  besides the error message. ]
---
 drivers/gpu/drm/i915/i915_drv.c | 20 +++++++++++++-------
 1 file changed, 13 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index 43100229613c..d816ba715cb6 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -1571,7 +1571,7 @@ static int i915_drm_suspend_late(struct drm_device *dev, bool hibernation)
 
 	intel_display_set_init_power(dev_priv, false);
 
-	fw_csr = !IS_GEN9_LP(dev_priv) &&
+	fw_csr = !IS_GEN9_LP(dev_priv) && !hibernation &&
 		suspend_to_idle(dev_priv) && dev_priv->csr.dmc_payload;
 	/*
 	 * In case of firmware assisted context save/restore don't manually
@@ -2055,11 +2055,14 @@ static int i915_pm_resume(struct device *kdev)
 /* freeze: before creating the hibernation_image */
 static int i915_pm_freeze(struct device *kdev)
 {
+	struct drm_device *dev = &kdev_to_i915(kdev)->drm;
 	int ret;
 
-	ret = i915_pm_suspend(kdev);
-	if (ret)
-		return ret;
+	if (dev->switch_power_state != DRM_SWITCH_POWER_OFF) {
+		ret = i915_drm_suspend(dev);
+		if (ret)
+			return ret;
+	}
 
 	ret = i915_gem_freeze(kdev_to_i915(kdev));
 	if (ret)
@@ -2070,11 +2073,14 @@ static int i915_pm_freeze(struct device *kdev)
 
 static int i915_pm_freeze_late(struct device *kdev)
 {
+	struct drm_device *dev = &kdev_to_i915(kdev)->drm;
 	int ret;
 
-	ret = i915_pm_suspend_late(kdev);
-	if (ret)
-		return ret;
+	if (dev->switch_power_state != DRM_SWITCH_POWER_OFF) {
+		ret = i915_drm_suspend_late(dev, true);
+		if (ret)
+			return ret;
+	}
 
 	ret = i915_gem_freeze_late(kdev_to_i915(kdev));
 	if (ret)
-- 
2.13.2

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915/gen9+: Set same power state before hibernation image save/restore
  2017-08-16 14:46 [PATCH] drm/i915/gen9+: Set same power state before hibernation image save/restore Imre Deak
@ 2017-08-16 15:46 ` Imre Deak
  2017-08-16 16:50 ` ✓ Fi.CI.BAT: success for " Patchwork
  2017-09-15 15:02 ` [PATCH] " Ville Syrjälä
  2 siblings, 0 replies; 6+ messages in thread
From: Imre Deak @ 2017-08-16 15:46 UTC (permalink / raw)
  To: intel-gfx; +Cc: Rodrigo Vivi

On Wed, Aug 16, 2017 at 05:46:07PM +0300, Imre Deak wrote:
> Atm, on GEN9 big core platforms before saving the hibernation image we
> uninitialize the display, disabling power wells manually, while before
> restoring the image we keep things powered (letting HW/DMC power down
> things as needed). The state mismatch will trigger the following error:
> 
> DC state mismatch (0x0 -> 0x2)
> 
> While the restore handler knows how to initialize the display from an
> unknown state (due to a different loader kernel or not having i915
> loaded in the loader kernel) we should still use the same state for
> consistency before image saving and restoring. Do this by uniniting the
> display before restoring the image too.
> 
> Bugzilla: https://bugs.freedesktop.org/attachment.cgi?id=133376

Correctly:
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=95149

thanks to Jani Saarinen for noticing it.

> Reported-and-tested-by: Wang Wendy <wendy.wang@intel.com>
> Reported-and-tested-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> Cc: Wang Wendy <wendy.wang@intel.com>
> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Ville Syrjala <ville.syrjala@linux.intel.com>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> 
> ---
> 
> [ No Fixes: line, since I'm not aware of any other issues caused by this
>   besides the error message. ]
> ---
>  drivers/gpu/drm/i915/i915_drv.c | 20 +++++++++++++-------
>  1 file changed, 13 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> index 43100229613c..d816ba715cb6 100644
> --- a/drivers/gpu/drm/i915/i915_drv.c
> +++ b/drivers/gpu/drm/i915/i915_drv.c
> @@ -1571,7 +1571,7 @@ static int i915_drm_suspend_late(struct drm_device *dev, bool hibernation)
>  
>  	intel_display_set_init_power(dev_priv, false);
>  
> -	fw_csr = !IS_GEN9_LP(dev_priv) &&
> +	fw_csr = !IS_GEN9_LP(dev_priv) && !hibernation &&
>  		suspend_to_idle(dev_priv) && dev_priv->csr.dmc_payload;
>  	/*
>  	 * In case of firmware assisted context save/restore don't manually
> @@ -2055,11 +2055,14 @@ static int i915_pm_resume(struct device *kdev)
>  /* freeze: before creating the hibernation_image */
>  static int i915_pm_freeze(struct device *kdev)
>  {
> +	struct drm_device *dev = &kdev_to_i915(kdev)->drm;
>  	int ret;
>  
> -	ret = i915_pm_suspend(kdev);
> -	if (ret)
> -		return ret;
> +	if (dev->switch_power_state != DRM_SWITCH_POWER_OFF) {
> +		ret = i915_drm_suspend(dev);
> +		if (ret)
> +			return ret;
> +	}
>  
>  	ret = i915_gem_freeze(kdev_to_i915(kdev));
>  	if (ret)
> @@ -2070,11 +2073,14 @@ static int i915_pm_freeze(struct device *kdev)
>  
>  static int i915_pm_freeze_late(struct device *kdev)
>  {
> +	struct drm_device *dev = &kdev_to_i915(kdev)->drm;
>  	int ret;
>  
> -	ret = i915_pm_suspend_late(kdev);
> -	if (ret)
> -		return ret;
> +	if (dev->switch_power_state != DRM_SWITCH_POWER_OFF) {
> +		ret = i915_drm_suspend_late(dev, true);
> +		if (ret)
> +			return ret;
> +	}
>  
>  	ret = i915_gem_freeze_late(kdev_to_i915(kdev));
>  	if (ret)
> -- 
> 2.13.2
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 6+ messages in thread

* ✓ Fi.CI.BAT: success for drm/i915/gen9+: Set same power state before hibernation image save/restore
  2017-08-16 14:46 [PATCH] drm/i915/gen9+: Set same power state before hibernation image save/restore Imre Deak
  2017-08-16 15:46 ` Imre Deak
@ 2017-08-16 16:50 ` Patchwork
  2017-10-02  9:15   ` Imre Deak
  2017-09-15 15:02 ` [PATCH] " Ville Syrjälä
  2 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2017-08-16 16:50 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/gen9+: Set same power state before hibernation image save/restore
URL   : https://patchwork.freedesktop.org/series/28873/
State : success

== Summary ==

Series 28873v1 drm/i915/gen9+: Set same power state before hibernation image save/restore
https://patchwork.freedesktop.org/api/1.0/series/28873/revisions/1/mbox/

Test kms_cursor_legacy:
        Subgroup basic-busy-flip-before-cursor-atomic:
                pass       -> FAIL       (fi-snb-2600) fdo#100215

fdo#100215 https://bugs.freedesktop.org/show_bug.cgi?id=100215

fi-bdw-5557u     total:279  pass:268  dwarn:0   dfail:0   fail:0   skip:11  time:453s
fi-bdw-gvtdvm    total:279  pass:265  dwarn:0   dfail:0   fail:0   skip:14  time:434s
fi-blb-e6850     total:279  pass:224  dwarn:1   dfail:0   fail:0   skip:54  time:363s
fi-bsw-n3050     total:279  pass:243  dwarn:0   dfail:0   fail:0   skip:36  time:559s
fi-bxt-j4205     total:279  pass:260  dwarn:0   dfail:0   fail:0   skip:19  time:522s
fi-byt-j1900     total:279  pass:254  dwarn:1   dfail:0   fail:0   skip:24  time:538s
fi-byt-n2820     total:279  pass:251  dwarn:0   dfail:0   fail:0   skip:28  time:517s
fi-glk-2a        total:279  pass:260  dwarn:0   dfail:0   fail:0   skip:19  time:609s
fi-hsw-4770      total:279  pass:263  dwarn:0   dfail:0   fail:0   skip:16  time:447s
fi-hsw-4770r     total:279  pass:263  dwarn:0   dfail:0   fail:0   skip:16  time:421s
fi-ilk-650       total:279  pass:229  dwarn:0   dfail:0   fail:0   skip:50  time:429s
fi-ivb-3520m     total:279  pass:261  dwarn:0   dfail:0   fail:0   skip:18  time:508s
fi-ivb-3770      total:279  pass:261  dwarn:0   dfail:0   fail:0   skip:18  time:478s
fi-kbl-7500u     total:279  pass:261  dwarn:0   dfail:0   fail:0   skip:18  time:482s
fi-kbl-7560u     total:279  pass:269  dwarn:0   dfail:0   fail:0   skip:10  time:597s
fi-kbl-r         total:279  pass:261  dwarn:0   dfail:0   fail:0   skip:18  time:599s
fi-pnv-d510      total:279  pass:223  dwarn:1   dfail:0   fail:0   skip:55  time:527s
fi-skl-6260u     total:279  pass:269  dwarn:0   dfail:0   fail:0   skip:10  time:477s
fi-skl-6700k     total:279  pass:261  dwarn:0   dfail:0   fail:0   skip:18  time:477s
fi-skl-6770hq    total:279  pass:269  dwarn:0   dfail:0   fail:0   skip:10  time:491s
fi-skl-gvtdvm    total:279  pass:266  dwarn:0   dfail:0   fail:0   skip:13  time:445s
fi-skl-x1585l    total:279  pass:268  dwarn:0   dfail:0   fail:0   skip:11  time:481s
fi-snb-2520m     total:279  pass:251  dwarn:0   dfail:0   fail:0   skip:28  time:542s
fi-snb-2600      total:279  pass:249  dwarn:0   dfail:0   fail:1   skip:29  time:405s

ada53b43f81fe618f3f0f1dfbd3dd776bb277323 drm-tip: 2017y-08m-16d-15h-18m-56s UTC integration manifest
58aa054f582c drm/i915/gen9+: Set same power state before hibernation image save/restore

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_5416/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915/gen9+: Set same power state before hibernation image save/restore
  2017-08-16 14:46 [PATCH] drm/i915/gen9+: Set same power state before hibernation image save/restore Imre Deak
  2017-08-16 15:46 ` Imre Deak
  2017-08-16 16:50 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2017-09-15 15:02 ` Ville Syrjälä
  2017-09-18  8:20   ` Imre Deak
  2 siblings, 1 reply; 6+ messages in thread
From: Ville Syrjälä @ 2017-09-15 15:02 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx, Rodrigo Vivi

On Wed, Aug 16, 2017 at 05:46:07PM +0300, Imre Deak wrote:
> Atm, on GEN9 big core platforms before saving the hibernation image we
> uninitialize the display, disabling power wells manually, while before
> restoring the image we keep things powered (letting HW/DMC power down
> things as needed). The state mismatch will trigger the following error:
> 
> DC state mismatch (0x0 -> 0x2)
> 
> While the restore handler knows how to initialize the display from an
> unknown state (due to a different loader kernel or not having i915
> loaded in the loader kernel) we should still use the same state for
> consistency before image saving and restoring. Do this by uniniting the
> display before restoring the image too.
> 
> Bugzilla: https://bugs.freedesktop.org/attachment.cgi?id=133376
> Reported-and-tested-by: Wang Wendy <wendy.wang@intel.com>
> Reported-and-tested-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> Cc: Wang Wendy <wendy.wang@intel.com>
> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Ville Syrjala <ville.syrjala@linux.intel.com>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> 
> ---
> 
> [ No Fixes: line, since I'm not aware of any other issues caused by this
>   besides the error message. ]
> ---
>  drivers/gpu/drm/i915/i915_drv.c | 20 +++++++++++++-------
>  1 file changed, 13 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> index 43100229613c..d816ba715cb6 100644
> --- a/drivers/gpu/drm/i915/i915_drv.c
> +++ b/drivers/gpu/drm/i915/i915_drv.c
> @@ -1571,7 +1571,7 @@ static int i915_drm_suspend_late(struct drm_device *dev, bool hibernation)
>  
>  	intel_display_set_init_power(dev_priv, false);
>  
> -	fw_csr = !IS_GEN9_LP(dev_priv) &&
> +	fw_csr = !IS_GEN9_LP(dev_priv) && !hibernation &&
>  		suspend_to_idle(dev_priv) && dev_priv->csr.dmc_payload;
>  	/*
>  	 * In case of firmware assisted context save/restore don't manually
> @@ -2055,11 +2055,14 @@ static int i915_pm_resume(struct device *kdev)
>  /* freeze: before creating the hibernation_image */
>  static int i915_pm_freeze(struct device *kdev)
>  {
> +	struct drm_device *dev = &kdev_to_i915(kdev)->drm;
>  	int ret;
>  
> -	ret = i915_pm_suspend(kdev);
> -	if (ret)
> -		return ret;
> +	if (dev->switch_power_state != DRM_SWITCH_POWER_OFF) {
> +		ret = i915_drm_suspend(dev);
> +		if (ret)
> +			return ret;
> +	}

Hmm. This hunk is here just for consistentency I take it?

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

>  
>  	ret = i915_gem_freeze(kdev_to_i915(kdev));
>  	if (ret)
> @@ -2070,11 +2073,14 @@ static int i915_pm_freeze(struct device *kdev)
>  
>  static int i915_pm_freeze_late(struct device *kdev)
>  {
> +	struct drm_device *dev = &kdev_to_i915(kdev)->drm;
>  	int ret;
>  
> -	ret = i915_pm_suspend_late(kdev);
> -	if (ret)
> -		return ret;
> +	if (dev->switch_power_state != DRM_SWITCH_POWER_OFF) {
> +		ret = i915_drm_suspend_late(dev, true);
> +		if (ret)
> +			return ret;
> +	}
>  
>  	ret = i915_gem_freeze_late(kdev_to_i915(kdev));
>  	if (ret)
> -- 
> 2.13.2

-- 
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915/gen9+: Set same power state before hibernation image save/restore
  2017-09-15 15:02 ` [PATCH] " Ville Syrjälä
@ 2017-09-18  8:20   ` Imre Deak
  0 siblings, 0 replies; 6+ messages in thread
From: Imre Deak @ 2017-09-18  8:20 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-gfx, Rodrigo Vivi

On Fri, Sep 15, 2017 at 06:02:33PM +0300, Ville Syrjälä wrote:
> On Wed, Aug 16, 2017 at 05:46:07PM +0300, Imre Deak wrote:
> > Atm, on GEN9 big core platforms before saving the hibernation image we
> > uninitialize the display, disabling power wells manually, while before
> > restoring the image we keep things powered (letting HW/DMC power down
> > things as needed). The state mismatch will trigger the following error:
> > 
> > DC state mismatch (0x0 -> 0x2)
> > 
> > While the restore handler knows how to initialize the display from an
> > unknown state (due to a different loader kernel or not having i915
> > loaded in the loader kernel) we should still use the same state for
> > consistency before image saving and restoring. Do this by uniniting the
> > display before restoring the image too.
> > 
> > Bugzilla: https://bugs.freedesktop.org/attachment.cgi?id=133376
> > Reported-and-tested-by: Wang Wendy <wendy.wang@intel.com>
> > Reported-and-tested-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> > Cc: Wang Wendy <wendy.wang@intel.com>
> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > Cc: Ville Syrjala <ville.syrjala@linux.intel.com>
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > 
> > ---
> > 
> > [ No Fixes: line, since I'm not aware of any other issues caused by this
> >   besides the error message. ]
> > ---
> >  drivers/gpu/drm/i915/i915_drv.c | 20 +++++++++++++-------
> >  1 file changed, 13 insertions(+), 7 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> > index 43100229613c..d816ba715cb6 100644
> > --- a/drivers/gpu/drm/i915/i915_drv.c
> > +++ b/drivers/gpu/drm/i915/i915_drv.c
> > @@ -1571,7 +1571,7 @@ static int i915_drm_suspend_late(struct drm_device *dev, bool hibernation)
> >  
> >  	intel_display_set_init_power(dev_priv, false);
> >  
> > -	fw_csr = !IS_GEN9_LP(dev_priv) &&
> > +	fw_csr = !IS_GEN9_LP(dev_priv) && !hibernation &&
> >  		suspend_to_idle(dev_priv) && dev_priv->csr.dmc_payload;
> >  	/*
> >  	 * In case of firmware assisted context save/restore don't manually
> > @@ -2055,11 +2055,14 @@ static int i915_pm_resume(struct device *kdev)
> >  /* freeze: before creating the hibernation_image */
> >  static int i915_pm_freeze(struct device *kdev)
> >  {
> > +	struct drm_device *dev = &kdev_to_i915(kdev)->drm;
> >  	int ret;
> >  
> > -	ret = i915_pm_suspend(kdev);
> > -	if (ret)
> > -		return ret;
> > +	if (dev->switch_power_state != DRM_SWITCH_POWER_OFF) {
> > +		ret = i915_drm_suspend(dev);
> > +		if (ret)
> > +			return ret;
> > +	}
> 
> Hmm. This hunk is here just for consistentency I take it?

Yes, to make i915_pm_freeze() and i915_pm_freeze_late() similar.

> 
> Patch lgtm
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> 
> >  
> >  	ret = i915_gem_freeze(kdev_to_i915(kdev));
> >  	if (ret)
> > @@ -2070,11 +2073,14 @@ static int i915_pm_freeze(struct device *kdev)
> >  
> >  static int i915_pm_freeze_late(struct device *kdev)
> >  {
> > +	struct drm_device *dev = &kdev_to_i915(kdev)->drm;
> >  	int ret;
> >  
> > -	ret = i915_pm_suspend_late(kdev);
> > -	if (ret)
> > -		return ret;
> > +	if (dev->switch_power_state != DRM_SWITCH_POWER_OFF) {
> > +		ret = i915_drm_suspend_late(dev, true);
> > +		if (ret)
> > +			return ret;
> > +	}
> >  
> >  	ret = i915_gem_freeze_late(kdev_to_i915(kdev));
> >  	if (ret)
> > -- 
> > 2.13.2
> 
> -- 
> Ville Syrjälä
> Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: ✓ Fi.CI.BAT: success for drm/i915/gen9+: Set same power state before hibernation image save/restore
  2017-08-16 16:50 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2017-10-02  9:15   ` Imre Deak
  0 siblings, 0 replies; 6+ messages in thread
From: Imre Deak @ 2017-10-02  9:15 UTC (permalink / raw)
  To: intel-gfx, Ville Syrjälä

On Wed, Aug 16, 2017 at 04:50:01PM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: drm/i915/gen9+: Set same power state before hibernation image save/restore
> URL   : https://patchwork.freedesktop.org/series/28873/
> State : success

Thanks for the review, pushed it to -dinq.

> 
> == Summary ==
> 
> Series 28873v1 drm/i915/gen9+: Set same power state before hibernation image save/restore
> https://patchwork.freedesktop.org/api/1.0/series/28873/revisions/1/mbox/
> 
> Test kms_cursor_legacy:
>         Subgroup basic-busy-flip-before-cursor-atomic:
>                 pass       -> FAIL       (fi-snb-2600) fdo#100215
> 
> fdo#100215 https://bugs.freedesktop.org/show_bug.cgi?id=100215
> 
> fi-bdw-5557u     total:279  pass:268  dwarn:0   dfail:0   fail:0   skip:11  time:453s
> fi-bdw-gvtdvm    total:279  pass:265  dwarn:0   dfail:0   fail:0   skip:14  time:434s
> fi-blb-e6850     total:279  pass:224  dwarn:1   dfail:0   fail:0   skip:54  time:363s
> fi-bsw-n3050     total:279  pass:243  dwarn:0   dfail:0   fail:0   skip:36  time:559s
> fi-bxt-j4205     total:279  pass:260  dwarn:0   dfail:0   fail:0   skip:19  time:522s
> fi-byt-j1900     total:279  pass:254  dwarn:1   dfail:0   fail:0   skip:24  time:538s
> fi-byt-n2820     total:279  pass:251  dwarn:0   dfail:0   fail:0   skip:28  time:517s
> fi-glk-2a        total:279  pass:260  dwarn:0   dfail:0   fail:0   skip:19  time:609s
> fi-hsw-4770      total:279  pass:263  dwarn:0   dfail:0   fail:0   skip:16  time:447s
> fi-hsw-4770r     total:279  pass:263  dwarn:0   dfail:0   fail:0   skip:16  time:421s
> fi-ilk-650       total:279  pass:229  dwarn:0   dfail:0   fail:0   skip:50  time:429s
> fi-ivb-3520m     total:279  pass:261  dwarn:0   dfail:0   fail:0   skip:18  time:508s
> fi-ivb-3770      total:279  pass:261  dwarn:0   dfail:0   fail:0   skip:18  time:478s
> fi-kbl-7500u     total:279  pass:261  dwarn:0   dfail:0   fail:0   skip:18  time:482s
> fi-kbl-7560u     total:279  pass:269  dwarn:0   dfail:0   fail:0   skip:10  time:597s
> fi-kbl-r         total:279  pass:261  dwarn:0   dfail:0   fail:0   skip:18  time:599s
> fi-pnv-d510      total:279  pass:223  dwarn:1   dfail:0   fail:0   skip:55  time:527s
> fi-skl-6260u     total:279  pass:269  dwarn:0   dfail:0   fail:0   skip:10  time:477s
> fi-skl-6700k     total:279  pass:261  dwarn:0   dfail:0   fail:0   skip:18  time:477s
> fi-skl-6770hq    total:279  pass:269  dwarn:0   dfail:0   fail:0   skip:10  time:491s
> fi-skl-gvtdvm    total:279  pass:266  dwarn:0   dfail:0   fail:0   skip:13  time:445s
> fi-skl-x1585l    total:279  pass:268  dwarn:0   dfail:0   fail:0   skip:11  time:481s
> fi-snb-2520m     total:279  pass:251  dwarn:0   dfail:0   fail:0   skip:28  time:542s
> fi-snb-2600      total:279  pass:249  dwarn:0   dfail:0   fail:1   skip:29  time:405s
> 
> ada53b43f81fe618f3f0f1dfbd3dd776bb277323 drm-tip: 2017y-08m-16d-15h-18m-56s UTC integration manifest
> 58aa054f582c drm/i915/gen9+: Set same power state before hibernation image save/restore
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_5416/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-10-02  9:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-16 14:46 [PATCH] drm/i915/gen9+: Set same power state before hibernation image save/restore Imre Deak
2017-08-16 15:46 ` Imre Deak
2017-08-16 16:50 ` ✓ Fi.CI.BAT: success for " Patchwork
2017-10-02  9:15   ` Imre Deak
2017-09-15 15:02 ` [PATCH] " Ville Syrjälä
2017-09-18  8:20   ` Imre Deak

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.