All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/tgl: Handle AUX interrupts for TC ports
@ 2019-10-24 17:25 ` Matt Roper
  0 siblings, 0 replies; 12+ messages in thread
From: Matt Roper @ 2019-10-24 17:25 UTC (permalink / raw)
  To: intel-gfx; +Cc: Lucas De Marchi

We're currently only processing AUX interrupts on the combo ports; make
sure we handle the TC ports as well.

Fixes: f663769a5eef ("drm/i915/tgl: initialize TC and TBT ports")
Cc: José Roberto de Souza <jose.souza@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
 drivers/gpu/drm/i915/i915_irq.c | 9 ++++++++-
 drivers/gpu/drm/i915/i915_reg.h | 6 ++++++
 2 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
index a048c79a6a55..0d90e06f833d 100644
--- a/drivers/gpu/drm/i915/i915_irq.c
+++ b/drivers/gpu/drm/i915/i915_irq.c
@@ -2578,7 +2578,14 @@ static u32 gen8_de_port_aux_mask(struct drm_i915_private *dev_priv)
 		/* TODO: Add AUX entries for USBC */
 		return TGL_DE_PORT_AUX_DDIA |
 			TGL_DE_PORT_AUX_DDIB |
-			TGL_DE_PORT_AUX_DDIC;
+			TGL_DE_PORT_AUX_DDIC |
+			TGL_DE_PORT_AUX_USBC1 |
+			TGL_DE_PORT_AUX_USBC2 |
+			TGL_DE_PORT_AUX_USBC3 |
+			TGL_DE_PORT_AUX_USBC4 |
+			TGL_DE_PORT_AUX_USBC5 |
+			TGL_DE_PORT_AUX_USBC6;
+
 
 	mask = GEN8_AUX_CHANNEL_A;
 	if (INTEL_GEN(dev_priv) >= 9)
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 07cf67d42735..a7ba8100f13e 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -7436,6 +7436,12 @@ enum {
 #define  GEN8_PORT_DP_A_HOTPLUG		(1 << 3)
 #define  BXT_DE_PORT_GMBUS		(1 << 1)
 #define  GEN8_AUX_CHANNEL_A		(1 << 0)
+#define  TGL_DE_PORT_AUX_USBC6		(1 << 13)
+#define  TGL_DE_PORT_AUX_USBC5		(1 << 12)
+#define  TGL_DE_PORT_AUX_USBC4		(1 << 11)
+#define  TGL_DE_PORT_AUX_USBC3		(1 << 10)
+#define  TGL_DE_PORT_AUX_USBC2		(1 << 9)
+#define  TGL_DE_PORT_AUX_USBC1		(1 << 8)
 #define  TGL_DE_PORT_AUX_DDIC		(1 << 2)
 #define  TGL_DE_PORT_AUX_DDIB		(1 << 1)
 #define  TGL_DE_PORT_AUX_DDIA		(1 << 0)
-- 
2.21.0

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

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

* [Intel-gfx] [PATCH] drm/i915/tgl: Handle AUX interrupts for TC ports
@ 2019-10-24 17:25 ` Matt Roper
  0 siblings, 0 replies; 12+ messages in thread
From: Matt Roper @ 2019-10-24 17:25 UTC (permalink / raw)
  To: intel-gfx; +Cc: Lucas De Marchi

We're currently only processing AUX interrupts on the combo ports; make
sure we handle the TC ports as well.

Fixes: f663769a5eef ("drm/i915/tgl: initialize TC and TBT ports")
Cc: José Roberto de Souza <jose.souza@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
 drivers/gpu/drm/i915/i915_irq.c | 9 ++++++++-
 drivers/gpu/drm/i915/i915_reg.h | 6 ++++++
 2 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
index a048c79a6a55..0d90e06f833d 100644
--- a/drivers/gpu/drm/i915/i915_irq.c
+++ b/drivers/gpu/drm/i915/i915_irq.c
@@ -2578,7 +2578,14 @@ static u32 gen8_de_port_aux_mask(struct drm_i915_private *dev_priv)
 		/* TODO: Add AUX entries for USBC */
 		return TGL_DE_PORT_AUX_DDIA |
 			TGL_DE_PORT_AUX_DDIB |
-			TGL_DE_PORT_AUX_DDIC;
+			TGL_DE_PORT_AUX_DDIC |
+			TGL_DE_PORT_AUX_USBC1 |
+			TGL_DE_PORT_AUX_USBC2 |
+			TGL_DE_PORT_AUX_USBC3 |
+			TGL_DE_PORT_AUX_USBC4 |
+			TGL_DE_PORT_AUX_USBC5 |
+			TGL_DE_PORT_AUX_USBC6;
+
 
 	mask = GEN8_AUX_CHANNEL_A;
 	if (INTEL_GEN(dev_priv) >= 9)
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 07cf67d42735..a7ba8100f13e 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -7436,6 +7436,12 @@ enum {
 #define  GEN8_PORT_DP_A_HOTPLUG		(1 << 3)
 #define  BXT_DE_PORT_GMBUS		(1 << 1)
 #define  GEN8_AUX_CHANNEL_A		(1 << 0)
+#define  TGL_DE_PORT_AUX_USBC6		(1 << 13)
+#define  TGL_DE_PORT_AUX_USBC5		(1 << 12)
+#define  TGL_DE_PORT_AUX_USBC4		(1 << 11)
+#define  TGL_DE_PORT_AUX_USBC3		(1 << 10)
+#define  TGL_DE_PORT_AUX_USBC2		(1 << 9)
+#define  TGL_DE_PORT_AUX_USBC1		(1 << 8)
 #define  TGL_DE_PORT_AUX_DDIC		(1 << 2)
 #define  TGL_DE_PORT_AUX_DDIB		(1 << 1)
 #define  TGL_DE_PORT_AUX_DDIA		(1 << 0)
-- 
2.21.0

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

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

* [PATCH v2] drm/i915/tgl: Handle AUX interrupts for TC ports
@ 2019-10-24 17:30   ` Matt Roper
  0 siblings, 0 replies; 12+ messages in thread
From: Matt Roper @ 2019-10-24 17:30 UTC (permalink / raw)
  To: intel-gfx; +Cc: Lucas De Marchi

We're currently only processing AUX interrupts on the combo ports; make
sure we handle the TC ports as well.

v2: Drop stale comment

Fixes: f663769a5eef ("drm/i915/tgl: initialize TC and TBT ports")
Cc: José Roberto de Souza <jose.souza@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
 drivers/gpu/drm/i915/i915_irq.c | 10 ++++++++--
 drivers/gpu/drm/i915/i915_reg.h |  6 ++++++
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
index a048c79a6a55..2e67734a6d2a 100644
--- a/drivers/gpu/drm/i915/i915_irq.c
+++ b/drivers/gpu/drm/i915/i915_irq.c
@@ -2575,10 +2575,16 @@ static u32 gen8_de_port_aux_mask(struct drm_i915_private *dev_priv)
 	u32 mask;
 
 	if (INTEL_GEN(dev_priv) >= 12)
-		/* TODO: Add AUX entries for USBC */
 		return TGL_DE_PORT_AUX_DDIA |
 			TGL_DE_PORT_AUX_DDIB |
-			TGL_DE_PORT_AUX_DDIC;
+			TGL_DE_PORT_AUX_DDIC |
+			TGL_DE_PORT_AUX_USBC1 |
+			TGL_DE_PORT_AUX_USBC2 |
+			TGL_DE_PORT_AUX_USBC3 |
+			TGL_DE_PORT_AUX_USBC4 |
+			TGL_DE_PORT_AUX_USBC5 |
+			TGL_DE_PORT_AUX_USBC6;
+
 
 	mask = GEN8_AUX_CHANNEL_A;
 	if (INTEL_GEN(dev_priv) >= 9)
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 07cf67d42735..a7ba8100f13e 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -7436,6 +7436,12 @@ enum {
 #define  GEN8_PORT_DP_A_HOTPLUG		(1 << 3)
 #define  BXT_DE_PORT_GMBUS		(1 << 1)
 #define  GEN8_AUX_CHANNEL_A		(1 << 0)
+#define  TGL_DE_PORT_AUX_USBC6		(1 << 13)
+#define  TGL_DE_PORT_AUX_USBC5		(1 << 12)
+#define  TGL_DE_PORT_AUX_USBC4		(1 << 11)
+#define  TGL_DE_PORT_AUX_USBC3		(1 << 10)
+#define  TGL_DE_PORT_AUX_USBC2		(1 << 9)
+#define  TGL_DE_PORT_AUX_USBC1		(1 << 8)
 #define  TGL_DE_PORT_AUX_DDIC		(1 << 2)
 #define  TGL_DE_PORT_AUX_DDIB		(1 << 1)
 #define  TGL_DE_PORT_AUX_DDIA		(1 << 0)
-- 
2.21.0

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

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

* [Intel-gfx] [PATCH v2] drm/i915/tgl: Handle AUX interrupts for TC ports
@ 2019-10-24 17:30   ` Matt Roper
  0 siblings, 0 replies; 12+ messages in thread
From: Matt Roper @ 2019-10-24 17:30 UTC (permalink / raw)
  To: intel-gfx; +Cc: Lucas De Marchi

We're currently only processing AUX interrupts on the combo ports; make
sure we handle the TC ports as well.

v2: Drop stale comment

Fixes: f663769a5eef ("drm/i915/tgl: initialize TC and TBT ports")
Cc: José Roberto de Souza <jose.souza@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
 drivers/gpu/drm/i915/i915_irq.c | 10 ++++++++--
 drivers/gpu/drm/i915/i915_reg.h |  6 ++++++
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
index a048c79a6a55..2e67734a6d2a 100644
--- a/drivers/gpu/drm/i915/i915_irq.c
+++ b/drivers/gpu/drm/i915/i915_irq.c
@@ -2575,10 +2575,16 @@ static u32 gen8_de_port_aux_mask(struct drm_i915_private *dev_priv)
 	u32 mask;
 
 	if (INTEL_GEN(dev_priv) >= 12)
-		/* TODO: Add AUX entries for USBC */
 		return TGL_DE_PORT_AUX_DDIA |
 			TGL_DE_PORT_AUX_DDIB |
-			TGL_DE_PORT_AUX_DDIC;
+			TGL_DE_PORT_AUX_DDIC |
+			TGL_DE_PORT_AUX_USBC1 |
+			TGL_DE_PORT_AUX_USBC2 |
+			TGL_DE_PORT_AUX_USBC3 |
+			TGL_DE_PORT_AUX_USBC4 |
+			TGL_DE_PORT_AUX_USBC5 |
+			TGL_DE_PORT_AUX_USBC6;
+
 
 	mask = GEN8_AUX_CHANNEL_A;
 	if (INTEL_GEN(dev_priv) >= 9)
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 07cf67d42735..a7ba8100f13e 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -7436,6 +7436,12 @@ enum {
 #define  GEN8_PORT_DP_A_HOTPLUG		(1 << 3)
 #define  BXT_DE_PORT_GMBUS		(1 << 1)
 #define  GEN8_AUX_CHANNEL_A		(1 << 0)
+#define  TGL_DE_PORT_AUX_USBC6		(1 << 13)
+#define  TGL_DE_PORT_AUX_USBC5		(1 << 12)
+#define  TGL_DE_PORT_AUX_USBC4		(1 << 11)
+#define  TGL_DE_PORT_AUX_USBC3		(1 << 10)
+#define  TGL_DE_PORT_AUX_USBC2		(1 << 9)
+#define  TGL_DE_PORT_AUX_USBC1		(1 << 8)
 #define  TGL_DE_PORT_AUX_DDIC		(1 << 2)
 #define  TGL_DE_PORT_AUX_DDIB		(1 << 1)
 #define  TGL_DE_PORT_AUX_DDIA		(1 << 0)
-- 
2.21.0

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

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

* Re: [PATCH v2] drm/i915/tgl: Handle AUX interrupts for TC ports
@ 2019-10-24 21:05     ` Souza, Jose
  0 siblings, 0 replies; 12+ messages in thread
From: Souza, Jose @ 2019-10-24 21:05 UTC (permalink / raw)
  To: Roper, Matthew D, intel-gfx; +Cc: De Marchi, Lucas

On Thu, 2019-10-24 at 10:30 -0700, Matt Roper wrote:
> We're currently only processing AUX interrupts on the combo ports;
> make
> sure we handle the TC ports as well.
> 
> v2: Drop stale comment

Reviewed-by: José Roberto de Souza <jose.souza@intel.com>

> 
> Fixes: f663769a5eef ("drm/i915/tgl: initialize TC and TBT ports")
> Cc: José Roberto de Souza <jose.souza@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> ---
>  drivers/gpu/drm/i915/i915_irq.c | 10 ++++++++--
>  drivers/gpu/drm/i915/i915_reg.h |  6 ++++++
>  2 files changed, 14 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/i915_irq.c
> b/drivers/gpu/drm/i915/i915_irq.c
> index a048c79a6a55..2e67734a6d2a 100644
> --- a/drivers/gpu/drm/i915/i915_irq.c
> +++ b/drivers/gpu/drm/i915/i915_irq.c
> @@ -2575,10 +2575,16 @@ static u32 gen8_de_port_aux_mask(struct
> drm_i915_private *dev_priv)
>  	u32 mask;
>  
>  	if (INTEL_GEN(dev_priv) >= 12)
> -		/* TODO: Add AUX entries for USBC */
>  		return TGL_DE_PORT_AUX_DDIA |
>  			TGL_DE_PORT_AUX_DDIB |
> -			TGL_DE_PORT_AUX_DDIC;
> +			TGL_DE_PORT_AUX_DDIC |
> +			TGL_DE_PORT_AUX_USBC1 |
> +			TGL_DE_PORT_AUX_USBC2 |
> +			TGL_DE_PORT_AUX_USBC3 |
> +			TGL_DE_PORT_AUX_USBC4 |
> +			TGL_DE_PORT_AUX_USBC5 |
> +			TGL_DE_PORT_AUX_USBC6;
> +
>  
>  	mask = GEN8_AUX_CHANNEL_A;
>  	if (INTEL_GEN(dev_priv) >= 9)
> diff --git a/drivers/gpu/drm/i915/i915_reg.h
> b/drivers/gpu/drm/i915/i915_reg.h
> index 07cf67d42735..a7ba8100f13e 100644
> --- a/drivers/gpu/drm/i915/i915_reg.h
> +++ b/drivers/gpu/drm/i915/i915_reg.h
> @@ -7436,6 +7436,12 @@ enum {
>  #define  GEN8_PORT_DP_A_HOTPLUG		(1 << 3)
>  #define  BXT_DE_PORT_GMBUS		(1 << 1)
>  #define  GEN8_AUX_CHANNEL_A		(1 << 0)
> +#define  TGL_DE_PORT_AUX_USBC6		(1 << 13)
> +#define  TGL_DE_PORT_AUX_USBC5		(1 << 12)
> +#define  TGL_DE_PORT_AUX_USBC4		(1 << 11)
> +#define  TGL_DE_PORT_AUX_USBC3		(1 << 10)
> +#define  TGL_DE_PORT_AUX_USBC2		(1 << 9)
> +#define  TGL_DE_PORT_AUX_USBC1		(1 << 8)
>  #define  TGL_DE_PORT_AUX_DDIC		(1 << 2)
>  #define  TGL_DE_PORT_AUX_DDIB		(1 << 1)
>  #define  TGL_DE_PORT_AUX_DDIA		(1 << 0)
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [Intel-gfx] [PATCH v2] drm/i915/tgl: Handle AUX interrupts for TC ports
@ 2019-10-24 21:05     ` Souza, Jose
  0 siblings, 0 replies; 12+ messages in thread
From: Souza, Jose @ 2019-10-24 21:05 UTC (permalink / raw)
  To: Roper, Matthew D, intel-gfx; +Cc: De Marchi, Lucas

On Thu, 2019-10-24 at 10:30 -0700, Matt Roper wrote:
> We're currently only processing AUX interrupts on the combo ports;
> make
> sure we handle the TC ports as well.
> 
> v2: Drop stale comment

Reviewed-by: José Roberto de Souza <jose.souza@intel.com>

> 
> Fixes: f663769a5eef ("drm/i915/tgl: initialize TC and TBT ports")
> Cc: José Roberto de Souza <jose.souza@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> ---
>  drivers/gpu/drm/i915/i915_irq.c | 10 ++++++++--
>  drivers/gpu/drm/i915/i915_reg.h |  6 ++++++
>  2 files changed, 14 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/i915_irq.c
> b/drivers/gpu/drm/i915/i915_irq.c
> index a048c79a6a55..2e67734a6d2a 100644
> --- a/drivers/gpu/drm/i915/i915_irq.c
> +++ b/drivers/gpu/drm/i915/i915_irq.c
> @@ -2575,10 +2575,16 @@ static u32 gen8_de_port_aux_mask(struct
> drm_i915_private *dev_priv)
>  	u32 mask;
>  
>  	if (INTEL_GEN(dev_priv) >= 12)
> -		/* TODO: Add AUX entries for USBC */
>  		return TGL_DE_PORT_AUX_DDIA |
>  			TGL_DE_PORT_AUX_DDIB |
> -			TGL_DE_PORT_AUX_DDIC;
> +			TGL_DE_PORT_AUX_DDIC |
> +			TGL_DE_PORT_AUX_USBC1 |
> +			TGL_DE_PORT_AUX_USBC2 |
> +			TGL_DE_PORT_AUX_USBC3 |
> +			TGL_DE_PORT_AUX_USBC4 |
> +			TGL_DE_PORT_AUX_USBC5 |
> +			TGL_DE_PORT_AUX_USBC6;
> +
>  
>  	mask = GEN8_AUX_CHANNEL_A;
>  	if (INTEL_GEN(dev_priv) >= 9)
> diff --git a/drivers/gpu/drm/i915/i915_reg.h
> b/drivers/gpu/drm/i915/i915_reg.h
> index 07cf67d42735..a7ba8100f13e 100644
> --- a/drivers/gpu/drm/i915/i915_reg.h
> +++ b/drivers/gpu/drm/i915/i915_reg.h
> @@ -7436,6 +7436,12 @@ enum {
>  #define  GEN8_PORT_DP_A_HOTPLUG		(1 << 3)
>  #define  BXT_DE_PORT_GMBUS		(1 << 1)
>  #define  GEN8_AUX_CHANNEL_A		(1 << 0)
> +#define  TGL_DE_PORT_AUX_USBC6		(1 << 13)
> +#define  TGL_DE_PORT_AUX_USBC5		(1 << 12)
> +#define  TGL_DE_PORT_AUX_USBC4		(1 << 11)
> +#define  TGL_DE_PORT_AUX_USBC3		(1 << 10)
> +#define  TGL_DE_PORT_AUX_USBC2		(1 << 9)
> +#define  TGL_DE_PORT_AUX_USBC1		(1 << 8)
>  #define  TGL_DE_PORT_AUX_DDIC		(1 << 2)
>  #define  TGL_DE_PORT_AUX_DDIB		(1 << 1)
>  #define  TGL_DE_PORT_AUX_DDIA		(1 << 0)
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✓ Fi.CI.BAT: success for drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
@ 2019-10-24 22:04   ` Patchwork
  0 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2019-10-24 22:04 UTC (permalink / raw)
  To: Matt Roper; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
URL   : https://patchwork.freedesktop.org/series/68528/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7176 -> Patchwork_14972
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/index.html

Known issues
------------

  Here are the changes found in Patchwork_14972 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_create@basic:
    - fi-icl-u3:          [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/fi-icl-u3/igt@gem_exec_create@basic.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/fi-icl-u3/igt@gem_exec_create@basic.html

  * igt@i915_module_load@reload-with-fault-injection:
    - fi-bsw-n3050:       [PASS][3] -> [INCOMPLETE][4] ([fdo#105876])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/fi-bsw-n3050/igt@i915_module_load@reload-with-fault-injection.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/fi-bsw-n3050/igt@i915_module_load@reload-with-fault-injection.html

  
#### Possible fixes ####

  * igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
    - fi-icl-u3:          [DMESG-WARN][5] ([fdo#107724]) -> [PASS][6] +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/fi-icl-u3/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/fi-icl-u3/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html

  * {igt@i915_selftest@live_gt_heartbeat}:
    - fi-kbl-x1275:       [DMESG-FAIL][7] ([fdo#112096]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/fi-kbl-x1275/igt@i915_selftest@live_gt_heartbeat.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/fi-kbl-x1275/igt@i915_selftest@live_gt_heartbeat.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#105876]: https://bugs.freedesktop.org/show_bug.cgi?id=105876
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#111887]: https://bugs.freedesktop.org/show_bug.cgi?id=111887
  [fdo#112096]: https://bugs.freedesktop.org/show_bug.cgi?id=112096


Participating hosts (49 -> 43)
------------------------------

  Additional (2): fi-bxt-dsi fi-icl-dsi 
  Missing    (8): fi-ilk-m540 fi-hsw-4200u fi-hsw-peppy fi-byt-squawks fi-bsw-cyan fi-pnv-d510 fi-icl-y fi-byt-clapper 


Build changes
-------------

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7176 -> Patchwork_14972

  CI-20190529: 20190529
  CI_DRM_7176: 9c250db49037a2ef0dc499d6cd2f9712fcbdf8c0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5237: 9a46404de7c42c8cc2d492176e956597ef28d7c4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14972: 9a707b1f35c1cf87fe7a82158548e13e8487fc07 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

9a707b1f35c1 drm/i915/tgl: Handle AUX interrupts for TC ports

== Logs ==

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

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
@ 2019-10-24 22:04   ` Patchwork
  0 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2019-10-24 22:04 UTC (permalink / raw)
  To: Matt Roper; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
URL   : https://patchwork.freedesktop.org/series/68528/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7176 -> Patchwork_14972
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/index.html

Known issues
------------

  Here are the changes found in Patchwork_14972 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_create@basic:
    - fi-icl-u3:          [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/fi-icl-u3/igt@gem_exec_create@basic.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/fi-icl-u3/igt@gem_exec_create@basic.html

  * igt@i915_module_load@reload-with-fault-injection:
    - fi-bsw-n3050:       [PASS][3] -> [INCOMPLETE][4] ([fdo#105876])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/fi-bsw-n3050/igt@i915_module_load@reload-with-fault-injection.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/fi-bsw-n3050/igt@i915_module_load@reload-with-fault-injection.html

  
#### Possible fixes ####

  * igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
    - fi-icl-u3:          [DMESG-WARN][5] ([fdo#107724]) -> [PASS][6] +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/fi-icl-u3/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/fi-icl-u3/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html

  * {igt@i915_selftest@live_gt_heartbeat}:
    - fi-kbl-x1275:       [DMESG-FAIL][7] ([fdo#112096]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/fi-kbl-x1275/igt@i915_selftest@live_gt_heartbeat.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/fi-kbl-x1275/igt@i915_selftest@live_gt_heartbeat.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#105876]: https://bugs.freedesktop.org/show_bug.cgi?id=105876
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#111887]: https://bugs.freedesktop.org/show_bug.cgi?id=111887
  [fdo#112096]: https://bugs.freedesktop.org/show_bug.cgi?id=112096


Participating hosts (49 -> 43)
------------------------------

  Additional (2): fi-bxt-dsi fi-icl-dsi 
  Missing    (8): fi-ilk-m540 fi-hsw-4200u fi-hsw-peppy fi-byt-squawks fi-bsw-cyan fi-pnv-d510 fi-icl-y fi-byt-clapper 


Build changes
-------------

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7176 -> Patchwork_14972

  CI-20190529: 20190529
  CI_DRM_7176: 9c250db49037a2ef0dc499d6cd2f9712fcbdf8c0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5237: 9a46404de7c42c8cc2d492176e956597ef28d7c4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14972: 9a707b1f35c1cf87fe7a82158548e13e8487fc07 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

9a707b1f35c1 drm/i915/tgl: Handle AUX interrupts for TC ports

== Logs ==

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

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

* ✗ Fi.CI.IGT: failure for drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
@ 2019-10-26  8:01   ` Patchwork
  0 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2019-10-26  8:01 UTC (permalink / raw)
  To: Matt Roper; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
URL   : https://patchwork.freedesktop.org/series/68528/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7176_full -> Patchwork_14972_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_14972_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_14972_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_14972_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-snb:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb7/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@kms_frontbuffer_tracking@fbc-suspend.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_big_fb@linear-64bpp-rotate-0:
    - {shard-tglb}:       [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb6/igt@kms_big_fb@linear-64bpp-rotate-0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb6/igt@kms_big_fb@linear-64bpp-rotate-0.html

  * igt@kms_ccs@pipe-b-missing-ccs-buffer:
    - {shard-tglb}:       [SKIP][5] ([fdo#111595]) -> [TIMEOUT][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb6/igt@kms_ccs@pipe-b-missing-ccs-buffer.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb8/igt@kms_ccs@pipe-b-missing-ccs-buffer.html

  
Known issues
------------

  Here are the changes found in Patchwork_14972_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_switch@vcs1:
    - shard-iclb:         [PASS][7] -> [SKIP][8] ([fdo#112080]) +8 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_ctx_switch@vcs1.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_ctx_switch@vcs1.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [PASS][9] -> [SKIP][10] ([fdo#111325]) +3 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_exec_schedule@promotion-bsd1:
    - shard-iclb:         [PASS][11] -> [SKIP][12] ([fdo#109276]) +8 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_exec_schedule@promotion-bsd1.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_exec_schedule@promotion-bsd1.html

  * igt@gem_persistent_relocs@forked-interruptible-thrashing:
    - shard-iclb:         [PASS][13] -> [FAIL][14] ([fdo#112037])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb1/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb4/igt@gem_persistent_relocs@forked-interruptible-thrashing.html

  * igt@gem_softpin@noreloc-s3:
    - shard-apl:          [PASS][15] -> [DMESG-WARN][16] ([fdo#108566])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl3/igt@gem_softpin@noreloc-s3.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl6/igt@gem_softpin@noreloc-s3.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
    - shard-hsw:          [PASS][17] -> [DMESG-WARN][18] ([fdo#111870]) +2 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw7/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-snb:          [PASS][19] -> [DMESG-WARN][20] ([fdo#111870])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb7/igt@gem_userptr_blits@sync-unmap-after-close.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb7/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@kms_color@pipe-c-ctm-max:
    - shard-skl:          [PASS][21] -> [FAIL][22] ([fdo#108147])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl1/igt@kms_color@pipe-c-ctm-max.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_color@pipe-c-ctm-max.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([fdo#103167]) +3 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          [PASS][25] -> [DMESG-WARN][26] ([fdo#108566]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-skl:          [PASS][27] -> [INCOMPLETE][28] ([fdo#104108])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
    - shard-skl:          [PASS][29] -> [FAIL][30] ([fdo#108145] / [fdo#110403]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109441]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-apl:          [PASS][33] -> [INCOMPLETE][34] ([fdo#103927]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl1/igt@kms_rotation_crc@primary-rotation-270.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl6/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][35] -> [FAIL][36] ([fdo#99912])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_setmode@basic.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl2/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-kbl:          [PASS][37] -> [INCOMPLETE][38] ([fdo#103665])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl7/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@vcs1-dirty-switch:
    - shard-iclb:         [SKIP][39] ([fdo#109276] / [fdo#112080]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@gem_ctx_isolation@vcs1-dirty-switch.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-switch.html

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [SKIP][41] ([fdo#110841]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_ctx_shared@q-smoketest-render:
    - {shard-tglb}:       [INCOMPLETE][43] ([fdo# 111852 ]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb4/igt@gem_ctx_shared@q-smoketest-render.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb4/igt@gem_ctx_shared@q-smoketest-render.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [SKIP][45] ([fdo#110854]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb7/igt@gem_exec_balancer@smoke.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_capture@capture-bsd2:
    - shard-iclb:         [SKIP][47] ([fdo#109276]) -> [PASS][48] +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb7/igt@gem_exec_capture@capture-bsd2.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@gem_exec_capture@capture-bsd2.html

  * igt@gem_exec_parallel@vcs1-fds:
    - shard-iclb:         [SKIP][49] ([fdo#112080]) -> [PASS][50] +5 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@gem_exec_parallel@vcs1-fds.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [SKIP][51] ([fdo#111325]) -> [PASS][52] +2 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_linear_blits@interruptible:
    - shard-apl:          [INCOMPLETE][53] ([fdo#103927] / [fdo#112067]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl8/igt@gem_linear_blits@interruptible.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl7/igt@gem_linear_blits@interruptible.html

  * igt@gem_mmap_gtt@basic-wc:
    - shard-hsw:          [INCOMPLETE][55] ([fdo#103540]) -> [PASS][56] +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw7/igt@gem_mmap_gtt@basic-wc.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw8/igt@gem_mmap_gtt@basic-wc.html

  * igt@gem_persistent_relocs@forked-interruptible-thrashing:
    - shard-snb:          [FAIL][57] ([fdo#112037]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb6/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb1/igt@gem_persistent_relocs@forked-interruptible-thrashing.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
    - shard-snb:          [DMESG-WARN][59] ([fdo#111870]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][61] ([fdo#111870]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw7/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@i915_selftest@live_hangcheck:
    - shard-snb:          [INCOMPLETE][63] ([fdo#105411]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb4/igt@i915_selftest@live_hangcheck.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@i915_selftest@live_hangcheck.html
    - shard-iclb:         [INCOMPLETE][65] ([fdo#107713] / [fdo#108569]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@i915_selftest@live_hangcheck.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@i915_selftest@live_hangcheck.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-apl:          [INCOMPLETE][67] ([fdo#103927]) -> [PASS][68] +1 similar issue
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_atomic_transition@plane-all-modeset-transition.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl1/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_color@pipe-b-ctm-0-25:
    - shard-skl:          [DMESG-WARN][69] ([fdo#106107]) -> [PASS][70] +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl2/igt@kms_color@pipe-b-ctm-0-25.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_color@pipe-b-ctm-0-25.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - {shard-tglb}:       [INCOMPLETE][71] ([fdo#111832] / [fdo#111850]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb3/igt@kms_fbcon_fbt@psr-suspend.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb6/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
    - shard-iclb:         [FAIL][73] ([fdo#103167]) -> [PASS][74] +6 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [DMESG-WARN][75] ([fdo#108566]) -> [PASS][76] +8 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-apl:          [DMESG-WARN][77] ([fdo#108566]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
    - {shard-tglb}:       [FAIL][79] ([fdo#103167]) -> [PASS][80] +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][81] ([fdo#109642] / [fdo#111068]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@kms_psr2_su@page_flip.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_primary_blt:
    - shard-iclb:         [SKIP][83] ([fdo#109441]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@kms_psr@psr2_primary_blt.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@kms_psr@psr2_primary_blt.html

  * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend:
    - {shard-tglb}:       [INCOMPLETE][85] ([fdo#111850]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb5/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb2/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html

  
#### Warnings ####

  * igt@runner@aborted:
    - shard-snb:          [FAIL][87] ([fdo#111757]) -> [FAIL][88] ([fdo#107469])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb6/igt@runner@aborted.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@runner@aborted.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo# 111852 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 111852 
  [fdo# 112000 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 112000 
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
  [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#107469]: https://bugs.freedesktop.org/show_bug.cgi?id=107469
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110403]: https://bugs.freedesktop.org/show_bug.cgi?id=110403
  [fdo#110548]: https://bugs.freedesktop.org/show_bug.cgi?id=110548
  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
  [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
  [fdo#111595]: https://bugs.freedesktop.org/show_bug.cgi?id=111595
  [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
  [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671
  [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#111757]: https://bugs.freedesktop.org/show_bug.cgi?id=111757
  [fdo#111781]: https://bugs.freedesktop.org/show_bug.cgi?id=111781
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884
  [fdo#112031]: https://bugs.freedesktop.org/show_bug.cgi?id=112031
  [fdo#112037]: https://bugs.freedesktop.org/show_bug.cgi?id=112037
  [fdo#112067]: https://bugs.freedesktop.org/show_bug.cgi?id=112067
  [fdo#112080]: https://bugs.freedesktop.org/

== Logs ==

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

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

* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
@ 2019-10-26  8:01   ` Patchwork
  0 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2019-10-26  8:01 UTC (permalink / raw)
  To: Matt Roper; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
URL   : https://patchwork.freedesktop.org/series/68528/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7176_full -> Patchwork_14972_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_14972_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_14972_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_14972_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-snb:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb7/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@kms_frontbuffer_tracking@fbc-suspend.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_big_fb@linear-64bpp-rotate-0:
    - {shard-tglb}:       [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb6/igt@kms_big_fb@linear-64bpp-rotate-0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb6/igt@kms_big_fb@linear-64bpp-rotate-0.html

  * igt@kms_ccs@pipe-b-missing-ccs-buffer:
    - {shard-tglb}:       [SKIP][5] ([fdo#111595]) -> [TIMEOUT][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb6/igt@kms_ccs@pipe-b-missing-ccs-buffer.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb8/igt@kms_ccs@pipe-b-missing-ccs-buffer.html

  
Known issues
------------

  Here are the changes found in Patchwork_14972_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_switch@vcs1:
    - shard-iclb:         [PASS][7] -> [SKIP][8] ([fdo#112080]) +8 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_ctx_switch@vcs1.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_ctx_switch@vcs1.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [PASS][9] -> [SKIP][10] ([fdo#111325]) +3 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_exec_schedule@promotion-bsd1:
    - shard-iclb:         [PASS][11] -> [SKIP][12] ([fdo#109276]) +8 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_exec_schedule@promotion-bsd1.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_exec_schedule@promotion-bsd1.html

  * igt@gem_persistent_relocs@forked-interruptible-thrashing:
    - shard-iclb:         [PASS][13] -> [FAIL][14] ([fdo#112037])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb1/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb4/igt@gem_persistent_relocs@forked-interruptible-thrashing.html

  * igt@gem_softpin@noreloc-s3:
    - shard-apl:          [PASS][15] -> [DMESG-WARN][16] ([fdo#108566])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl3/igt@gem_softpin@noreloc-s3.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl6/igt@gem_softpin@noreloc-s3.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
    - shard-hsw:          [PASS][17] -> [DMESG-WARN][18] ([fdo#111870]) +2 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw7/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-snb:          [PASS][19] -> [DMESG-WARN][20] ([fdo#111870])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb7/igt@gem_userptr_blits@sync-unmap-after-close.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb7/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@kms_color@pipe-c-ctm-max:
    - shard-skl:          [PASS][21] -> [FAIL][22] ([fdo#108147])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl1/igt@kms_color@pipe-c-ctm-max.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_color@pipe-c-ctm-max.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([fdo#103167]) +3 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          [PASS][25] -> [DMESG-WARN][26] ([fdo#108566]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-skl:          [PASS][27] -> [INCOMPLETE][28] ([fdo#104108])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
    - shard-skl:          [PASS][29] -> [FAIL][30] ([fdo#108145] / [fdo#110403]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109441]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-apl:          [PASS][33] -> [INCOMPLETE][34] ([fdo#103927]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl1/igt@kms_rotation_crc@primary-rotation-270.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl6/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][35] -> [FAIL][36] ([fdo#99912])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_setmode@basic.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl2/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-kbl:          [PASS][37] -> [INCOMPLETE][38] ([fdo#103665])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl7/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@vcs1-dirty-switch:
    - shard-iclb:         [SKIP][39] ([fdo#109276] / [fdo#112080]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@gem_ctx_isolation@vcs1-dirty-switch.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-switch.html

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [SKIP][41] ([fdo#110841]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_ctx_shared@q-smoketest-render:
    - {shard-tglb}:       [INCOMPLETE][43] ([fdo# 111852 ]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb4/igt@gem_ctx_shared@q-smoketest-render.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb4/igt@gem_ctx_shared@q-smoketest-render.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [SKIP][45] ([fdo#110854]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb7/igt@gem_exec_balancer@smoke.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_capture@capture-bsd2:
    - shard-iclb:         [SKIP][47] ([fdo#109276]) -> [PASS][48] +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb7/igt@gem_exec_capture@capture-bsd2.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@gem_exec_capture@capture-bsd2.html

  * igt@gem_exec_parallel@vcs1-fds:
    - shard-iclb:         [SKIP][49] ([fdo#112080]) -> [PASS][50] +5 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@gem_exec_parallel@vcs1-fds.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [SKIP][51] ([fdo#111325]) -> [PASS][52] +2 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_linear_blits@interruptible:
    - shard-apl:          [INCOMPLETE][53] ([fdo#103927] / [fdo#112067]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl8/igt@gem_linear_blits@interruptible.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl7/igt@gem_linear_blits@interruptible.html

  * igt@gem_mmap_gtt@basic-wc:
    - shard-hsw:          [INCOMPLETE][55] ([fdo#103540]) -> [PASS][56] +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw7/igt@gem_mmap_gtt@basic-wc.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw8/igt@gem_mmap_gtt@basic-wc.html

  * igt@gem_persistent_relocs@forked-interruptible-thrashing:
    - shard-snb:          [FAIL][57] ([fdo#112037]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb6/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb1/igt@gem_persistent_relocs@forked-interruptible-thrashing.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
    - shard-snb:          [DMESG-WARN][59] ([fdo#111870]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][61] ([fdo#111870]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw7/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@i915_selftest@live_hangcheck:
    - shard-snb:          [INCOMPLETE][63] ([fdo#105411]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb4/igt@i915_selftest@live_hangcheck.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@i915_selftest@live_hangcheck.html
    - shard-iclb:         [INCOMPLETE][65] ([fdo#107713] / [fdo#108569]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@i915_selftest@live_hangcheck.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@i915_selftest@live_hangcheck.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-apl:          [INCOMPLETE][67] ([fdo#103927]) -> [PASS][68] +1 similar issue
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_atomic_transition@plane-all-modeset-transition.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl1/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_color@pipe-b-ctm-0-25:
    - shard-skl:          [DMESG-WARN][69] ([fdo#106107]) -> [PASS][70] +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl2/igt@kms_color@pipe-b-ctm-0-25.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_color@pipe-b-ctm-0-25.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - {shard-tglb}:       [INCOMPLETE][71] ([fdo#111832] / [fdo#111850]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb3/igt@kms_fbcon_fbt@psr-suspend.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb6/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
    - shard-iclb:         [FAIL][73] ([fdo#103167]) -> [PASS][74] +6 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [DMESG-WARN][75] ([fdo#108566]) -> [PASS][76] +8 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
    - shard-apl:          [DMESG-WARN][77] ([fdo#108566]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
    - {shard-tglb}:       [FAIL][79] ([fdo#103167]) -> [PASS][80] +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][81] ([fdo#109642] / [fdo#111068]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@kms_psr2_su@page_flip.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_primary_blt:
    - shard-iclb:         [SKIP][83] ([fdo#109441]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@kms_psr@psr2_primary_blt.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@kms_psr@psr2_primary_blt.html

  * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend:
    - {shard-tglb}:       [INCOMPLETE][85] ([fdo#111850]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb5/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb2/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html

  
#### Warnings ####

  * igt@runner@aborted:
    - shard-snb:          [FAIL][87] ([fdo#111757]) -> [FAIL][88] ([fdo#107469])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb6/igt@runner@aborted.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@runner@aborted.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo# 111852 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 111852 
  [fdo# 112000 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 112000 
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
  [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#107469]: https://bugs.freedesktop.org/show_bug.cgi?id=107469
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110403]: https://bugs.freedesktop.org/show_bug.cgi?id=110403
  [fdo#110548]: https://bugs.freedesktop.org/show_bug.cgi?id=110548
  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
  [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
  [fdo#111595]: https://bugs.freedesktop.org/show_bug.cgi?id=111595
  [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
  [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671
  [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#111757]: https://bugs.freedesktop.org/show_bug.cgi?id=111757
  [fdo#111781]: https://bugs.freedesktop.org/show_bug.cgi?id=111781
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884
  [fdo#112031]: https://bugs.freedesktop.org/show_bug.cgi?id=112031
  [fdo#112037]: https://bugs.freedesktop.org/show_bug.cgi?id=112037
  [fdo#112067]: https://bugs.freedesktop.org/show_bug.cgi?id=112067
  [fdo#112080]: https://bugs.freedesktop.org/

== Logs ==

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

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

* Re: ✗ Fi.CI.IGT: failure for drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
@ 2019-10-28 15:28     ` Matt Roper
  0 siblings, 0 replies; 12+ messages in thread
From: Matt Roper @ 2019-10-28 15:28 UTC (permalink / raw)
  To: intel-gfx

On Sat, Oct 26, 2019 at 08:01:35AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
> URL   : https://patchwork.freedesktop.org/series/68528/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_7176_full -> Patchwork_14972_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with Patchwork_14972_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in Patchwork_14972_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in Patchwork_14972_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_frontbuffer_tracking@fbc-suspend:
>     - shard-snb:          [PASS][1] -> [DMESG-WARN][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb7/igt@kms_frontbuffer_tracking@fbc-suspend.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@kms_frontbuffer_tracking@fbc-suspend.html

Unstable system clock following suspend/resume; not related to this
patch.

   <6> [1016.423795] ACPI: Waking up from system sleep state S3
   <7> [1016.455194] [drm:intel_power_well_enable [i915]] enabling always-on
   <4> [1016.455203] ------------[ cut here ]------------
   <4> [1016.455208] Delta way too big! 18446743040866119517 ts=18446744057200346625 write stamp = 1016334227108
   If you just came from a suspend/resume,
   please switch to the trace global clock:
     echo global > /sys/kernel/debug/tracing/trace_clock
   or add trace_clock=global to the kernel command line
   <4> [1016.455221] WARNING: CPU: 7 PID: 4447 at kernel/trace/ring_buffer.c:2810 rb_handle_timestamp.isra.44+0x6c/0x70

Applied to dinq.  Thanks Jose for the review.


Matt

> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@kms_big_fb@linear-64bpp-rotate-0:
>     - {shard-tglb}:       [PASS][3] -> [INCOMPLETE][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb6/igt@kms_big_fb@linear-64bpp-rotate-0.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb6/igt@kms_big_fb@linear-64bpp-rotate-0.html
> 
>   * igt@kms_ccs@pipe-b-missing-ccs-buffer:
>     - {shard-tglb}:       [SKIP][5] ([fdo#111595]) -> [TIMEOUT][6]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb6/igt@kms_ccs@pipe-b-missing-ccs-buffer.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb8/igt@kms_ccs@pipe-b-missing-ccs-buffer.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_14972_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_switch@vcs1:
>     - shard-iclb:         [PASS][7] -> [SKIP][8] ([fdo#112080]) +8 similar issues
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_ctx_switch@vcs1.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_ctx_switch@vcs1.html
> 
>   * igt@gem_exec_schedule@preemptive-hang-bsd:
>     - shard-iclb:         [PASS][9] -> [SKIP][10] ([fdo#111325]) +3 similar issues
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@gem_exec_schedule@preemptive-hang-bsd.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_exec_schedule@preemptive-hang-bsd.html
> 
>   * igt@gem_exec_schedule@promotion-bsd1:
>     - shard-iclb:         [PASS][11] -> [SKIP][12] ([fdo#109276]) +8 similar issues
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_exec_schedule@promotion-bsd1.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_exec_schedule@promotion-bsd1.html
> 
>   * igt@gem_persistent_relocs@forked-interruptible-thrashing:
>     - shard-iclb:         [PASS][13] -> [FAIL][14] ([fdo#112037])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb1/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb4/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
> 
>   * igt@gem_softpin@noreloc-s3:
>     - shard-apl:          [PASS][15] -> [DMESG-WARN][16] ([fdo#108566])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl3/igt@gem_softpin@noreloc-s3.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl6/igt@gem_softpin@noreloc-s3.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
>     - shard-hsw:          [PASS][17] -> [DMESG-WARN][18] ([fdo#111870]) +2 similar issues
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw7/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
> 
>   * igt@gem_userptr_blits@sync-unmap-after-close:
>     - shard-snb:          [PASS][19] -> [DMESG-WARN][20] ([fdo#111870])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb7/igt@gem_userptr_blits@sync-unmap-after-close.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb7/igt@gem_userptr_blits@sync-unmap-after-close.html
> 
>   * igt@kms_color@pipe-c-ctm-max:
>     - shard-skl:          [PASS][21] -> [FAIL][22] ([fdo#108147])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl1/igt@kms_color@pipe-c-ctm-max.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_color@pipe-c-ctm-max.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt:
>     - shard-iclb:         [PASS][23] -> [FAIL][24] ([fdo#103167]) +3 similar issues
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
>     - shard-kbl:          [PASS][25] -> [DMESG-WARN][26] ([fdo#108566]) +3 similar issues
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
>     - shard-skl:          [PASS][27] -> [INCOMPLETE][28] ([fdo#104108])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
>     - shard-skl:          [PASS][29] -> [FAIL][30] ([fdo#108145] / [fdo#110403]) +1 similar issue
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
> 
>   * igt@kms_psr@psr2_primary_page_flip:
>     - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109441]) +1 similar issue
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html
> 
>   * igt@kms_rotation_crc@primary-rotation-270:
>     - shard-apl:          [PASS][33] -> [INCOMPLETE][34] ([fdo#103927]) +1 similar issue
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl1/igt@kms_rotation_crc@primary-rotation-270.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl6/igt@kms_rotation_crc@primary-rotation-270.html
> 
>   * igt@kms_setmode@basic:
>     - shard-apl:          [PASS][35] -> [FAIL][36] ([fdo#99912])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_setmode@basic.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl2/igt@kms_setmode@basic.html
> 
>   * igt@kms_vblank@pipe-b-ts-continuation-suspend:
>     - shard-kbl:          [PASS][37] -> [INCOMPLETE][38] ([fdo#103665])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl7/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_isolation@vcs1-dirty-switch:
>     - shard-iclb:         [SKIP][39] ([fdo#109276] / [fdo#112080]) -> [PASS][40]
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@gem_ctx_isolation@vcs1-dirty-switch.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-switch.html
> 
>   * igt@gem_ctx_shared@exec-single-timeline-bsd:
>     - shard-iclb:         [SKIP][41] ([fdo#110841]) -> [PASS][42]
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_ctx_shared@exec-single-timeline-bsd.html
> 
>   * igt@gem_ctx_shared@q-smoketest-render:
>     - {shard-tglb}:       [INCOMPLETE][43] ([fdo# 111852 ]) -> [PASS][44]
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb4/igt@gem_ctx_shared@q-smoketest-render.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb4/igt@gem_ctx_shared@q-smoketest-render.html
> 
>   * igt@gem_exec_balancer@smoke:
>     - shard-iclb:         [SKIP][45] ([fdo#110854]) -> [PASS][46]
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb7/igt@gem_exec_balancer@smoke.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@gem_exec_balancer@smoke.html
> 
>   * igt@gem_exec_capture@capture-bsd2:
>     - shard-iclb:         [SKIP][47] ([fdo#109276]) -> [PASS][48] +1 similar issue
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb7/igt@gem_exec_capture@capture-bsd2.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@gem_exec_capture@capture-bsd2.html
> 
>   * igt@gem_exec_parallel@vcs1-fds:
>     - shard-iclb:         [SKIP][49] ([fdo#112080]) -> [PASS][50] +5 similar issues
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@gem_exec_parallel@vcs1-fds.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html
> 
>   * igt@gem_exec_schedule@reorder-wide-bsd:
>     - shard-iclb:         [SKIP][51] ([fdo#111325]) -> [PASS][52] +2 similar issues
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html
> 
>   * igt@gem_linear_blits@interruptible:
>     - shard-apl:          [INCOMPLETE][53] ([fdo#103927] / [fdo#112067]) -> [PASS][54]
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl8/igt@gem_linear_blits@interruptible.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl7/igt@gem_linear_blits@interruptible.html
> 
>   * igt@gem_mmap_gtt@basic-wc:
>     - shard-hsw:          [INCOMPLETE][55] ([fdo#103540]) -> [PASS][56] +1 similar issue
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw7/igt@gem_mmap_gtt@basic-wc.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw8/igt@gem_mmap_gtt@basic-wc.html
> 
>   * igt@gem_persistent_relocs@forked-interruptible-thrashing:
>     - shard-snb:          [FAIL][57] ([fdo#112037]) -> [PASS][58]
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb6/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb1/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
>     - shard-snb:          [DMESG-WARN][59] ([fdo#111870]) -> [PASS][60]
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
> 
>   * igt@gem_userptr_blits@sync-unmap-after-close:
>     - shard-hsw:          [DMESG-WARN][61] ([fdo#111870]) -> [PASS][62]
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw7/igt@gem_userptr_blits@sync-unmap-after-close.html
> 
>   * igt@i915_selftest@live_hangcheck:
>     - shard-snb:          [INCOMPLETE][63] ([fdo#105411]) -> [PASS][64]
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb4/igt@i915_selftest@live_hangcheck.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@i915_selftest@live_hangcheck.html
>     - shard-iclb:         [INCOMPLETE][65] ([fdo#107713] / [fdo#108569]) -> [PASS][66]
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@i915_selftest@live_hangcheck.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@i915_selftest@live_hangcheck.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition:
>     - shard-apl:          [INCOMPLETE][67] ([fdo#103927]) -> [PASS][68] +1 similar issue
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_atomic_transition@plane-all-modeset-transition.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl1/igt@kms_atomic_transition@plane-all-modeset-transition.html
> 
>   * igt@kms_color@pipe-b-ctm-0-25:
>     - shard-skl:          [DMESG-WARN][69] ([fdo#106107]) -> [PASS][70] +1 similar issue
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl2/igt@kms_color@pipe-b-ctm-0-25.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_color@pipe-b-ctm-0-25.html
> 
>   * igt@kms_fbcon_fbt@psr-suspend:
>     - {shard-tglb}:       [INCOMPLETE][71] ([fdo#111832] / [fdo#111850]) -> [PASS][72]
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb3/igt@kms_fbcon_fbt@psr-suspend.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb6/igt@kms_fbcon_fbt@psr-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
>     - shard-iclb:         [FAIL][73] ([fdo#103167]) -> [PASS][74] +6 similar issues
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-suspend:
>     - shard-kbl:          [DMESG-WARN][75] ([fdo#108566]) -> [PASS][76] +8 similar issues
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
>     - shard-apl:          [DMESG-WARN][77] ([fdo#108566]) -> [PASS][78]
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
>     - {shard-tglb}:       [FAIL][79] ([fdo#103167]) -> [PASS][80] +1 similar issue
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_psr2_su@page_flip:
>     - shard-iclb:         [SKIP][81] ([fdo#109642] / [fdo#111068]) -> [PASS][82]
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@kms_psr2_su@page_flip.html
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@kms_psr2_su@page_flip.html
> 
>   * igt@kms_psr@psr2_primary_blt:
>     - shard-iclb:         [SKIP][83] ([fdo#109441]) -> [PASS][84]
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@kms_psr@psr2_primary_blt.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
> 
>   * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend:
>     - {shard-tglb}:       [INCOMPLETE][85] ([fdo#111850]) -> [PASS][86]
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb5/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb2/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
> 
>   
> #### Warnings ####
> 
>   * igt@runner@aborted:
>     - shard-snb:          [FAIL][87] ([fdo#111757]) -> [FAIL][88] ([fdo#107469])
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb6/igt@runner@aborted.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@runner@aborted.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo# 111852 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 111852 
>   [fdo# 112000 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 112000 
>   [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>   [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
>   [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
>   [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
>   [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
>   [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
>   [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
>   [fdo#107469]: https://bugs.freedesktop.org/show_bug.cgi?id=107469
>   [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>   [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>   [fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147
>   [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
>   [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
>   [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
>   [fdo#110403]: https://bugs.freedesktop.org/show_bug.cgi?id=110403
>   [fdo#110548]: https://bugs.freedesktop.org/show_bug.cgi?id=110548
>   [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
>   [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
>   [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>   [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
>   [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
>   [fdo#111595]: https://bugs.freedesktop.org/show_bug.cgi?id=111595
>   [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
>   [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671
>   [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
>   [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
>   [fdo#111757]: https://bugs.freedesktop.org/show_bug.cgi?id=111757
>   [fdo#111781]: https://bugs.freedesktop.org/show_bug.cgi?id=111781
>   [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>   [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
>   [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
>   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
>   [fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884
>   [fdo#112031]: https://bugs.freedesktop.org/show_bug.cgi?id=112031
>   [fdo#112037]: https://bugs.freedesktop.org/show_bug.cgi?id=112037
>   [fdo#112067]: https://bugs.freedesktop.org/show_bug.cgi?id=112067
>   [fdo#112080]: https://bugs.freedesktop.org/
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/index.html

-- 
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

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
@ 2019-10-28 15:28     ` Matt Roper
  0 siblings, 0 replies; 12+ messages in thread
From: Matt Roper @ 2019-10-28 15:28 UTC (permalink / raw)
  To: intel-gfx

On Sat, Oct 26, 2019 at 08:01:35AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: drm/i915/tgl: Handle AUX interrupts for TC ports (rev2)
> URL   : https://patchwork.freedesktop.org/series/68528/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_7176_full -> Patchwork_14972_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with Patchwork_14972_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in Patchwork_14972_full, please notify your bug team to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in Patchwork_14972_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_frontbuffer_tracking@fbc-suspend:
>     - shard-snb:          [PASS][1] -> [DMESG-WARN][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb7/igt@kms_frontbuffer_tracking@fbc-suspend.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@kms_frontbuffer_tracking@fbc-suspend.html

Unstable system clock following suspend/resume; not related to this
patch.

   <6> [1016.423795] ACPI: Waking up from system sleep state S3
   <7> [1016.455194] [drm:intel_power_well_enable [i915]] enabling always-on
   <4> [1016.455203] ------------[ cut here ]------------
   <4> [1016.455208] Delta way too big! 18446743040866119517 ts=18446744057200346625 write stamp = 1016334227108
   If you just came from a suspend/resume,
   please switch to the trace global clock:
     echo global > /sys/kernel/debug/tracing/trace_clock
   or add trace_clock=global to the kernel command line
   <4> [1016.455221] WARNING: CPU: 7 PID: 4447 at kernel/trace/ring_buffer.c:2810 rb_handle_timestamp.isra.44+0x6c/0x70

Applied to dinq.  Thanks Jose for the review.


Matt

> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@kms_big_fb@linear-64bpp-rotate-0:
>     - {shard-tglb}:       [PASS][3] -> [INCOMPLETE][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb6/igt@kms_big_fb@linear-64bpp-rotate-0.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb6/igt@kms_big_fb@linear-64bpp-rotate-0.html
> 
>   * igt@kms_ccs@pipe-b-missing-ccs-buffer:
>     - {shard-tglb}:       [SKIP][5] ([fdo#111595]) -> [TIMEOUT][6]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb6/igt@kms_ccs@pipe-b-missing-ccs-buffer.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb8/igt@kms_ccs@pipe-b-missing-ccs-buffer.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_14972_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_switch@vcs1:
>     - shard-iclb:         [PASS][7] -> [SKIP][8] ([fdo#112080]) +8 similar issues
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_ctx_switch@vcs1.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_ctx_switch@vcs1.html
> 
>   * igt@gem_exec_schedule@preemptive-hang-bsd:
>     - shard-iclb:         [PASS][9] -> [SKIP][10] ([fdo#111325]) +3 similar issues
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@gem_exec_schedule@preemptive-hang-bsd.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_exec_schedule@preemptive-hang-bsd.html
> 
>   * igt@gem_exec_schedule@promotion-bsd1:
>     - shard-iclb:         [PASS][11] -> [SKIP][12] ([fdo#109276]) +8 similar issues
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_exec_schedule@promotion-bsd1.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_exec_schedule@promotion-bsd1.html
> 
>   * igt@gem_persistent_relocs@forked-interruptible-thrashing:
>     - shard-iclb:         [PASS][13] -> [FAIL][14] ([fdo#112037])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb1/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb4/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
> 
>   * igt@gem_softpin@noreloc-s3:
>     - shard-apl:          [PASS][15] -> [DMESG-WARN][16] ([fdo#108566])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl3/igt@gem_softpin@noreloc-s3.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl6/igt@gem_softpin@noreloc-s3.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
>     - shard-hsw:          [PASS][17] -> [DMESG-WARN][18] ([fdo#111870]) +2 similar issues
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw7/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
> 
>   * igt@gem_userptr_blits@sync-unmap-after-close:
>     - shard-snb:          [PASS][19] -> [DMESG-WARN][20] ([fdo#111870])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb7/igt@gem_userptr_blits@sync-unmap-after-close.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb7/igt@gem_userptr_blits@sync-unmap-after-close.html
> 
>   * igt@kms_color@pipe-c-ctm-max:
>     - shard-skl:          [PASS][21] -> [FAIL][22] ([fdo#108147])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl1/igt@kms_color@pipe-c-ctm-max.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_color@pipe-c-ctm-max.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt:
>     - shard-iclb:         [PASS][23] -> [FAIL][24] ([fdo#103167]) +3 similar issues
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
>     - shard-kbl:          [PASS][25] -> [DMESG-WARN][26] ([fdo#108566]) +3 similar issues
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
>     - shard-skl:          [PASS][27] -> [INCOMPLETE][28] ([fdo#104108])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
>     - shard-skl:          [PASS][29] -> [FAIL][30] ([fdo#108145] / [fdo#110403]) +1 similar issue
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
> 
>   * igt@kms_psr@psr2_primary_page_flip:
>     - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109441]) +1 similar issue
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html
> 
>   * igt@kms_rotation_crc@primary-rotation-270:
>     - shard-apl:          [PASS][33] -> [INCOMPLETE][34] ([fdo#103927]) +1 similar issue
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl1/igt@kms_rotation_crc@primary-rotation-270.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl6/igt@kms_rotation_crc@primary-rotation-270.html
> 
>   * igt@kms_setmode@basic:
>     - shard-apl:          [PASS][35] -> [FAIL][36] ([fdo#99912])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_setmode@basic.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl2/igt@kms_setmode@basic.html
> 
>   * igt@kms_vblank@pipe-b-ts-continuation-suspend:
>     - shard-kbl:          [PASS][37] -> [INCOMPLETE][38] ([fdo#103665])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl7/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_isolation@vcs1-dirty-switch:
>     - shard-iclb:         [SKIP][39] ([fdo#109276] / [fdo#112080]) -> [PASS][40]
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@gem_ctx_isolation@vcs1-dirty-switch.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-switch.html
> 
>   * igt@gem_ctx_shared@exec-single-timeline-bsd:
>     - shard-iclb:         [SKIP][41] ([fdo#110841]) -> [PASS][42]
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_ctx_shared@exec-single-timeline-bsd.html
> 
>   * igt@gem_ctx_shared@q-smoketest-render:
>     - {shard-tglb}:       [INCOMPLETE][43] ([fdo# 111852 ]) -> [PASS][44]
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb4/igt@gem_ctx_shared@q-smoketest-render.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb4/igt@gem_ctx_shared@q-smoketest-render.html
> 
>   * igt@gem_exec_balancer@smoke:
>     - shard-iclb:         [SKIP][45] ([fdo#110854]) -> [PASS][46]
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb7/igt@gem_exec_balancer@smoke.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@gem_exec_balancer@smoke.html
> 
>   * igt@gem_exec_capture@capture-bsd2:
>     - shard-iclb:         [SKIP][47] ([fdo#109276]) -> [PASS][48] +1 similar issue
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb7/igt@gem_exec_capture@capture-bsd2.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@gem_exec_capture@capture-bsd2.html
> 
>   * igt@gem_exec_parallel@vcs1-fds:
>     - shard-iclb:         [SKIP][49] ([fdo#112080]) -> [PASS][50] +5 similar issues
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb3/igt@gem_exec_parallel@vcs1-fds.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html
> 
>   * igt@gem_exec_schedule@reorder-wide-bsd:
>     - shard-iclb:         [SKIP][51] ([fdo#111325]) -> [PASS][52] +2 similar issues
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html
> 
>   * igt@gem_linear_blits@interruptible:
>     - shard-apl:          [INCOMPLETE][53] ([fdo#103927] / [fdo#112067]) -> [PASS][54]
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl8/igt@gem_linear_blits@interruptible.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl7/igt@gem_linear_blits@interruptible.html
> 
>   * igt@gem_mmap_gtt@basic-wc:
>     - shard-hsw:          [INCOMPLETE][55] ([fdo#103540]) -> [PASS][56] +1 similar issue
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw7/igt@gem_mmap_gtt@basic-wc.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw8/igt@gem_mmap_gtt@basic-wc.html
> 
>   * igt@gem_persistent_relocs@forked-interruptible-thrashing:
>     - shard-snb:          [FAIL][57] ([fdo#112037]) -> [PASS][58]
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb6/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb1/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
>     - shard-snb:          [DMESG-WARN][59] ([fdo#111870]) -> [PASS][60]
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
> 
>   * igt@gem_userptr_blits@sync-unmap-after-close:
>     - shard-hsw:          [DMESG-WARN][61] ([fdo#111870]) -> [PASS][62]
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-hsw7/igt@gem_userptr_blits@sync-unmap-after-close.html
> 
>   * igt@i915_selftest@live_hangcheck:
>     - shard-snb:          [INCOMPLETE][63] ([fdo#105411]) -> [PASS][64]
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb4/igt@i915_selftest@live_hangcheck.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@i915_selftest@live_hangcheck.html
>     - shard-iclb:         [INCOMPLETE][65] ([fdo#107713] / [fdo#108569]) -> [PASS][66]
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@i915_selftest@live_hangcheck.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@i915_selftest@live_hangcheck.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition:
>     - shard-apl:          [INCOMPLETE][67] ([fdo#103927]) -> [PASS][68] +1 similar issue
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_atomic_transition@plane-all-modeset-transition.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl1/igt@kms_atomic_transition@plane-all-modeset-transition.html
> 
>   * igt@kms_color@pipe-b-ctm-0-25:
>     - shard-skl:          [DMESG-WARN][69] ([fdo#106107]) -> [PASS][70] +1 similar issue
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-skl2/igt@kms_color@pipe-b-ctm-0-25.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-skl1/igt@kms_color@pipe-b-ctm-0-25.html
> 
>   * igt@kms_fbcon_fbt@psr-suspend:
>     - {shard-tglb}:       [INCOMPLETE][71] ([fdo#111832] / [fdo#111850]) -> [PASS][72]
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb3/igt@kms_fbcon_fbt@psr-suspend.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb6/igt@kms_fbcon_fbt@psr-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
>     - shard-iclb:         [FAIL][73] ([fdo#103167]) -> [PASS][74] +6 similar issues
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-suspend:
>     - shard-kbl:          [DMESG-WARN][75] ([fdo#108566]) -> [PASS][76] +8 similar issues
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
>     - shard-apl:          [DMESG-WARN][77] ([fdo#108566]) -> [PASS][78]
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-apl4/igt@kms_frontbuffer_tracking@fbc-suspend.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
>     - {shard-tglb}:       [FAIL][79] ([fdo#103167]) -> [PASS][80] +1 similar issue
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_psr2_su@page_flip:
>     - shard-iclb:         [SKIP][81] ([fdo#109642] / [fdo#111068]) -> [PASS][82]
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@kms_psr2_su@page_flip.html
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@kms_psr2_su@page_flip.html
> 
>   * igt@kms_psr@psr2_primary_blt:
>     - shard-iclb:         [SKIP][83] ([fdo#109441]) -> [PASS][84]
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-iclb6/igt@kms_psr@psr2_primary_blt.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
> 
>   * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend:
>     - {shard-tglb}:       [INCOMPLETE][85] ([fdo#111850]) -> [PASS][86]
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-tglb5/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-tglb2/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
> 
>   
> #### Warnings ####
> 
>   * igt@runner@aborted:
>     - shard-snb:          [FAIL][87] ([fdo#111757]) -> [FAIL][88] ([fdo#107469])
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7176/shard-snb6/igt@runner@aborted.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/shard-snb6/igt@runner@aborted.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo# 111852 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 111852 
>   [fdo# 112000 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 112000 
>   [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>   [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
>   [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
>   [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
>   [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
>   [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
>   [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
>   [fdo#107469]: https://bugs.freedesktop.org/show_bug.cgi?id=107469
>   [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>   [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>   [fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147
>   [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
>   [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
>   [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
>   [fdo#110403]: https://bugs.freedesktop.org/show_bug.cgi?id=110403
>   [fdo#110548]: https://bugs.freedesktop.org/show_bug.cgi?id=110548
>   [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
>   [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
>   [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>   [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
>   [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
>   [fdo#111595]: https://bugs.freedesktop.org/show_bug.cgi?id=111595
>   [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
>   [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671
>   [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
>   [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
>   [fdo#111757]: https://bugs.freedesktop.org/show_bug.cgi?id=111757
>   [fdo#111781]: https://bugs.freedesktop.org/show_bug.cgi?id=111781
>   [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>   [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
>   [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
>   [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
>   [fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884
>   [fdo#112031]: https://bugs.freedesktop.org/show_bug.cgi?id=112031
>   [fdo#112037]: https://bugs.freedesktop.org/show_bug.cgi?id=112037
>   [fdo#112067]: https://bugs.freedesktop.org/show_bug.cgi?id=112067
>   [fdo#112080]: https://bugs.freedesktop.org/
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14972/index.html

-- 
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

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

end of thread, other threads:[~2019-10-28 15:27 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-24 17:25 [PATCH] drm/i915/tgl: Handle AUX interrupts for TC ports Matt Roper
2019-10-24 17:25 ` [Intel-gfx] " Matt Roper
2019-10-24 17:30 ` [PATCH v2] " Matt Roper
2019-10-24 17:30   ` [Intel-gfx] " Matt Roper
2019-10-24 21:05   ` Souza, Jose
2019-10-24 21:05     ` [Intel-gfx] " Souza, Jose
2019-10-24 22:04 ` ✓ Fi.CI.BAT: success for drm/i915/tgl: Handle AUX interrupts for TC ports (rev2) Patchwork
2019-10-24 22:04   ` [Intel-gfx] " Patchwork
2019-10-26  8:01 ` ✗ Fi.CI.IGT: failure " Patchwork
2019-10-26  8:01   ` [Intel-gfx] " Patchwork
2019-10-28 15:28   ` Matt Roper
2019-10-28 15:28     ` [Intel-gfx] " Matt Roper

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.