* [PATCH 0/2] Program Deep PKG_C_LATENCY register
@ 2024-02-01 8:51 Suraj Kandpal
2024-02-01 8:51 ` [PATCH 1/2] drm/i915/lnl: Add pkgc related register Suraj Kandpal
` (14 more replies)
0 siblings, 15 replies; 28+ messages in thread
From: Suraj Kandpal @ 2024-02-01 8:51 UTC (permalink / raw)
To: intel-gfx
The change needed here is to read the latency from the punit and write
it onto the display register PKGC_LATENCY, so that the DE_WAKE is
asserted at latency us before window2 to bring memory up for DSBs
Hw is also responsible to block from entering to deep PKGC until frame
start.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Suraj Kandpal (2):
drm/i915/lnl: Add pkgc related register
drm/i915/lnl: Program PKGC_LATENCY register
drivers/gpu/drm/i915/display/skl_watermark.c | 31 +++++++++++++++++++
.../gpu/drm/i915/display/skl_watermark_regs.h | 4 +++
2 files changed, 35 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH 1/2] drm/i915/lnl: Add pkgc related register
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
@ 2024-02-01 8:51 ` Suraj Kandpal
2024-02-02 7:37 ` Borah, Chaitanya Kumar
2024-02-07 10:46 ` Govindapillai, Vinod
2024-02-01 8:51 ` [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register Suraj Kandpal
` (13 subsequent siblings)
14 siblings, 2 replies; 28+ messages in thread
From: Suraj Kandpal @ 2024-02-01 8:51 UTC (permalink / raw)
To: intel-gfx
Add the register that needs to read and written onto for
deep pkgc programming.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark_regs.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark_regs.h b/drivers/gpu/drm/i915/display/skl_watermark_regs.h
index 628c5920ad49..20b30c9a6613 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark_regs.h
+++ b/drivers/gpu/drm/i915/display/skl_watermark_regs.h
@@ -157,4 +157,8 @@
#define MTL_LATENCY_SAGV _MMIO(0x4578c)
#define MTL_LATENCY_QCLK_SAGV REG_GENMASK(12, 0)
+#define LNL_PKG_C_LATENCY _MMIO(0x46460)
+#define LNL_ADDED_WAKE_TIME_MASK REG_GENMASK(28, 16)
+#define LNL_PKG_C_LATENCY_MASK REG_GENMASK(12, 0)
+
#endif /* __SKL_WATERMARK_REGS_H__ */
--
2.25.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
2024-02-01 8:51 ` [PATCH 1/2] drm/i915/lnl: Add pkgc related register Suraj Kandpal
@ 2024-02-01 8:51 ` Suraj Kandpal
2024-02-05 7:55 ` Borah, Chaitanya Kumar
2024-02-05 8:01 ` Suraj Kandpal
2024-02-01 16:36 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register Patchwork
` (12 subsequent siblings)
14 siblings, 2 replies; 28+ messages in thread
From: Suraj Kandpal @ 2024-02-01 8:51 UTC (permalink / raw)
To: intel-gfx
Program the PKGC_LATENCY register with the highest latency from
level 1 and above LP registers else program with all 1's.
This is used to improve package C residency by sending the highest
latency tolerance requirement (LTR) when the planes are done with the
frame until the next frame programming window (set context latency,
window 2) starts.
Bspec: 68986
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 31 ++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 051a02ac01a4..c07376f37baa 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -3394,6 +3394,34 @@ static void skl_read_wm_latency(struct drm_i915_private *i915, u16 wm[])
adjust_wm_latency(i915, wm, num_levels, read_latency);
}
+/*
+ * Program PKG_C_LATENCY Pkg C with highest valid latency from
+ * watermark level1 and up and above. If watermark level 1 is
+ * invalid program it with all 1's.
+ * Program PKG_C_LATENCY Added Wake Time = 0.
+ */
+static void intel_program_pkgc_latency(struct drm_i915_private *i915,
+ u16 wm_latency[])
+{
+ u16 max_value = 0;
+ u32 clear = 0, val = 0;
+ int max_level = i915->display.wm.num_levels, i;
+
+ for (i = 1; i <= max_level; i++) {
+ if (wm_latency[i] == 0)
+ break;
+ else if (wm_latency[i] > max_value)
+ max_value = wm_latency[i];
+ }
+
+ if (max_value == 0)
+ max_value = ~0 & LNL_PKG_C_LATENCY_MASK;
+
+ clear |= LNL_ADDED_WAKE_TIME_MASK | LNL_PKG_C_LATENCY_MASK;
+ val |= max_value;
+ intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val);
+}
+
static void skl_setup_wm_latency(struct drm_i915_private *i915)
{
if (HAS_HW_SAGV_WM(i915))
@@ -3407,6 +3435,9 @@ static void skl_setup_wm_latency(struct drm_i915_private *i915)
skl_read_wm_latency(i915, i915->display.wm.skl_latency);
intel_print_wm_latency(i915, "Gen9 Plane", i915->display.wm.skl_latency);
+
+ if (DISPLAY_VER(i915) >= 20)
+ intel_program_pkgc_latency(i915, i915->display.wm.skl_latency);
}
static const struct intel_wm_funcs skl_wm_funcs = {
--
2.25.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
2024-02-01 8:51 ` [PATCH 1/2] drm/i915/lnl: Add pkgc related register Suraj Kandpal
2024-02-01 8:51 ` [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register Suraj Kandpal
@ 2024-02-01 16:36 ` Patchwork
2024-02-01 19:55 ` ✓ Fi.CI.BAT: success " Patchwork
` (11 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-01 16:36 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
== Series Details ==
Series: Program Deep PKG_C_LATENCY register
URL : https://patchwork.freedesktop.org/series/129407/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/linux/find.h:203:45: warning: shift count is negative (-12)
+./include/linux/find.h:203:45: warning: shift count is negative (-12)
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✓ Fi.CI.BAT: success for Program Deep PKG_C_LATENCY register
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (2 preceding siblings ...)
2024-02-01 16:36 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register Patchwork
@ 2024-02-01 19:55 ` Patchwork
2024-02-01 21:56 ` ✗ Fi.CI.IGT: failure " Patchwork
` (10 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-01 19:55 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 10028 bytes --]
== Series Details ==
Series: Program Deep PKG_C_LATENCY register
URL : https://patchwork.freedesktop.org/series/129407/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14193 -> Patchwork_129407v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/index.html
Participating hosts (34 -> 39)
------------------------------
Additional (6): bat-kbl-2 fi-bsw-n3050 bat-jsl-1 bat-atsm-1 bat-arls-1 bat-arls-2
Missing (1): bat-rpls-2
Known issues
------------
Here are the changes found in Patchwork_129407v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1849])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-kbl-2/igt@fbdev@info.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][4] ([fdo#109271]) +35 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- fi-bsw-n3050: NOTRUN -> [SKIP][8] ([fdo#109271]) +15 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/fi-bsw-n3050/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#4077]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#6621])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#6077]) +37 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-1: NOTRUN -> [SKIP][12] ([i915#4103]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#6078]) +17 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-jsl-1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9886])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-jsl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#6093]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@kms_force_connector_basic@force-load-detect.html
- bat-jsl-1: NOTRUN -> [SKIP][16] ([fdo#109285])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-atsm-1: NOTRUN -> [SKIP][17] ([i915#1836]) +6 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][18] ([i915#7357])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][19] ([i915#6094])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
- bat-jsl-1: NOTRUN -> [SKIP][20] ([i915#3555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-atsm-1: NOTRUN -> [SKIP][21] ([fdo#109295] / [i915#6078])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-gtt:
- bat-atsm-1: NOTRUN -> [SKIP][22] ([fdo#109295] / [i915#4077]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][23] ([fdo#109295]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/bat-atsm-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- fi-skl-guc: [DMESG-FAIL][24] ([i915#10112]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#10076]: https://gitlab.freedesktop.org/drm/intel/issues/10076
[i915#10112]: https://gitlab.freedesktop.org/drm/intel/issues/10112
[i915#10189]: https://gitlab.freedesktop.org/drm/intel/issues/10189
[i915#10190]: https://gitlab.freedesktop.org/drm/intel/issues/10190
[i915#10191]: https://gitlab.freedesktop.org/drm/intel/issues/10191
[i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194
[i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196
[i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200
[i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202
[i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206
[i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207
[i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214
[i915#10215]: https://gitlab.freedesktop.org/drm/intel/issues/10215
[i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9643]: https://gitlab.freedesktop.org/drm/intel/issues/9643
[i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886
[i915#9980]: https://gitlab.freedesktop.org/drm/intel/issues/9980
Build changes
-------------
* Linux: CI_DRM_14193 -> Patchwork_129407v1
CI-20190529: 20190529
CI_DRM_14193: c655e0fd28045dbaa581d04bf7cc266eec1c3457 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7698: af750f5e7eaad98d40d8c924eb5f05e99d3c668b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_129407v1: c655e0fd28045dbaa581d04bf7cc266eec1c3457 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
c284b5f6d779 drm/i915/lnl: Program PKGC_LATENCY register
e16331dff050 drm/i915/lnl: Add pkgc related register
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/index.html
[-- Attachment #2: Type: text/html, Size: 10181 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✗ Fi.CI.IGT: failure for Program Deep PKG_C_LATENCY register
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (3 preceding siblings ...)
2024-02-01 19:55 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-02-01 21:56 ` Patchwork
2024-02-05 9:47 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev2) Patchwork
` (9 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-01 21:56 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 95250 bytes --]
== Series Details ==
Series: Program Deep PKG_C_LATENCY register
URL : https://patchwork.freedesktop.org/series/129407/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14193_full -> Patchwork_129407v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_129407v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_129407v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_129407v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@wait-forked-hang@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-3/igt@kms_vblank@wait-forked-hang@pipe-d-hdmi-a-2.html
Known issues
------------
Here are the changes found in Patchwork_129407v1_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-rkl: ([PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24]) -> ([PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [FAIL][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48]) ([i915#8293])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-1/boot.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-1/boot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-1/boot.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-2/boot.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-2/boot.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-2/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-4/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-4/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-4/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-4/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-4/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-5/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-5/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-5/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-5/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-5/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-6/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-6/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-7/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-7/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-7/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-7/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-7/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-1/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-1/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-2/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-2/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-2/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-2/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-2/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-3/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-3/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-6/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-6/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-6/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-6/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-7/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-7/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-7/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-7/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#8411])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#7701])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#7701])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#8414]) +22 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8414]) +7 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@drm_fdinfo@most-busy-check-all@vcs0.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [PASS][54] -> [FAIL][55] ([i915#7742]) +2 other tests fail
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4873]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@gem_caching@writes.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#3555]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3555])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#7697])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#8562])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#8555]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@hostile:
- shard-snb: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#1099])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb2/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#5882]) +9 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#280]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4771])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4812]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4036])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4525])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-mtlp: NOTRUN -> [FAIL][69] ([i915#9606]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@gem_exec_capture@many-4k-incremental.html
- shard-tglu: NOTRUN -> [FAIL][70] ([i915#9606])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-glk: NOTRUN -> [FAIL][71] ([i915#9606])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk6/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-flow:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4473] / [i915#4771])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3539] / [i915#4852]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-glk: NOTRUN -> [FAIL][74] ([i915#2842]) +3 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html
- shard-rkl: [PASS][75] -> [FAIL][76] ([i915#2842])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-tglu: NOTRUN -> [FAIL][77] ([i915#2842]) +4 other tests fail
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [PASS][78] -> [FAIL][79] ([i915#2842])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-tglu-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-10/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [PASS][80] -> [FAIL][81] ([i915#2842])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@concurrent:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4812]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-6/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3281]) +17 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3281]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3281]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4537] / [i915#4812]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4537] / [i915#4812]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [PASS][88] -> [ABORT][89] ([i915#7975] / [i915#8213])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-tglu-8/igt@gem_exec_suspend@basic-s4-devices@smem.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
- shard-rkl: NOTRUN -> [ABORT][90] ([i915#7975] / [i915#8213])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4860]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4860])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#4613] / [i915#7582])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#4613]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#4613])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@smem-oom:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4613]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#4613]) +10 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap_gtt@basic:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4077]) +9 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@gem_mmap_gtt@basic.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#4083]) +6 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#4083]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@gem_mmap_wc@read-write.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3282]) +9 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pxp@create-valid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4270]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4270]) +6 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@gem_pxp@display-protected-crc.html
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#4270]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#4270])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_readwrite@read-write:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#3282]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@gem_readwrite@read-write.html
* igt@gem_readwrite@write-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#3282]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#8428]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#5190]) +10 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#8411])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4079]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4077]) +8 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-6/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4079])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4879])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#3297])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#3297]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#3297] / [i915#4880])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3297]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3297]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen3_render_tiledx_blits:
- shard-tglu: NOTRUN -> [SKIP][120] ([fdo#109289])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@gen3_render_tiledx_blits.html
* igt@gen7_exec_parse@basic-offset:
- shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#109289]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][122] ([fdo#109289]) +6 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#2527] / [i915#2856])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#2856]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#2527])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#2856]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@load:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#6227])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@i915_module_load@load.html
- shard-glk: NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#6227])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk8/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: [PASS][129] -> [INCOMPLETE][130] ([i915#10137] / [i915#9200] / [i915#9849])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#6412])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6621])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#6621])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#4387])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-unsupported:
- shard-mtlp: NOTRUN -> [SKIP][135] ([fdo#109302])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@mock@memory_region:
- shard-tglu: NOTRUN -> [DMESG-WARN][136] ([i915#9311])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@i915_selftest@mock@memory_region.html
- shard-glk: NOTRUN -> [DMESG-WARN][137] ([i915#9311])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk8/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#5190])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#4215] / [i915#5190])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#4212])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#8709]) +11 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#8709]) +11 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][143] ([fdo#109271] / [i915#1769])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][145] ([fdo#111614]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][146] ([fdo#111615] / [i915#5286]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#5286])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][148] ([fdo#111614]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111614] / [i915#3638]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][150] ([fdo#111614]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][151] -> [FAIL][152] ([i915#3743]) +2 other tests fail
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#111615]) +6 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5190]) +15 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6187])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][156] ([fdo#110723]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][157] ([fdo#111615]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#5354]) +105 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-a-crc-primary-basic-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#5354] / [i915#6095]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@kms_ccs@pipe-a-crc-primary-basic-yf-tiled-ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#5354] / [i915#6095]) +28 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#5354] / [i915#6095]) +16 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][162] ([fdo#109271]) +547 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#5354]) +12 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#4087]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-tglu: NOTRUN -> [SKIP][165] ([fdo#111827])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][166] ([fdo#111827]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_chamelium_color@ctm-green-to-red.html
- shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111827])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@degamma:
- shard-mtlp: NOTRUN -> [SKIP][168] ([fdo#111827])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#7828]) +5 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#7828]) +12 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#7828]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#7828]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#7118])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#9424])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3116])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#3299]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#6944])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3359])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8814]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3359]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3359])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][183] ([fdo#109274] / [i915#5354]) +7 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#4103])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#4213])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#4103])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109274]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][188] ([fdo#111825]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#9809]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][190] ([fdo#109274] / [fdo#111767] / [i915#5354])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-tglu: NOTRUN -> [SKIP][191] ([fdo#109274] / [fdo#111767])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][192] -> [FAIL][193] ([i915#2346])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#4103] / [i915#4213])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-snb: [PASS][195] -> [DMESG-WARN][196] ([i915#10166])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-snb4/igt@kms_cursor_legacy@torture-move@pipe-a.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb2/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#9833])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#9723])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][199] ([fdo#110189] / [i915#9227])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555]) +8 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#1257])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#8812])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3840] / [i915#9688])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#3469])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#658])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#658])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#4881])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8381])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-tglu: NOTRUN -> [SKIP][211] ([fdo#109274] / [i915#3637])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][212] ([fdo#109274]) +12 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3637]) +3 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8810])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2672])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#2587] / [i915#2672])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672]) +6 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][220] ([fdo#109285])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [PASS][221] -> [FAIL][222] ([i915#6880])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8708]) +26 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][224] ([fdo#111825] / [i915#1825]) +12 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][225] ([fdo#111767] / [i915#1825]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#8708]) +8 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-snb: [PASS][227] -> [SKIP][228] ([fdo#109271]) +7 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#10055])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#3023]) +6 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#1825]) +17 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][232] ([fdo#110189]) +13 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3458]) +26 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][234] ([fdo#111767] / [fdo#111825] / [i915#1825]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][235] ([fdo#109280]) +17 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][236] ([fdo#111767] / [i915#5354]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#6118])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_hdr@static-toggle-dpms.html
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][241] ([i915#7862]) +1 other test fail
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][242] ([i915#4573]) +5 other tests fail
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][243] ([fdo#109274] / [i915#5354] / [i915#9423])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#9423]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#9423]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#9423]) +7 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#5176]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#9423]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#5176] / [i915#9423]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#5235] / [i915#9423]) +15 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#5235]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#5235]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#5235]) +19 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#9292])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#9685])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#8430])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][257] -> [SKIP][258] ([i915#9519])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#9519])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][260] ([fdo#109293] / [fdo#109506])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][261] ([fdo#109293])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#6524])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#6524])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#6524] / [i915#6805])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][265] ([fdo#111068] / [i915#9683])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#9683]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][267] ([fdo#109642] / [fdo#111068] / [i915#9683])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#4235])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#4235] / [i915#5190]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#4235])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#5030]) +3 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list:
- shard-glk: NOTRUN -> [DMESG-FAIL][272] ([i915#10143] / [i915#10165])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset:
- shard-snb: [PASS][273] -> [DMESG-WARN][274] ([i915#10143]) +1 other test dmesg-warn
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-snb6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888:
- shard-dg2: [PASS][275] -> [DMESG-WARN][276] ([i915#10143])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8809])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#8623])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][279] ([fdo#109271]) +75 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb2/igt@kms_tv_load_detect@load-detect.html
- shard-dg2: NOTRUN -> [SKIP][280] ([fdo#109309])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#2437])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][282] ([fdo#109271] / [i915#2437]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk6/igt@kms_writeback@writeback-invalid-parameters.html
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#2437])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#8850])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@event-wait@rcs0:
- shard-tglu: NOTRUN -> [SKIP][285] ([fdo#112283]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][286] ([i915#4349])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@perf_pmu@rc6-suspend:
- shard-snb: [PASS][287] -> [INCOMPLETE][288] ([i915#9853])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-snb4/igt@perf_pmu@rc6-suspend.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb6/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#8516])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#3708] / [i915#4077])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#3291] / [i915#3708])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][292] ([fdo#109295] / [i915#3291] / [i915#3708]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-4/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#3708])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@prime_vgem@fence-read-hang.html
- shard-rkl: NOTRUN -> [SKIP][294] ([fdo#109295] / [i915#3708])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#3708]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#9917])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#9917])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][298] ([i915#9781])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-10/igt@syncobj_timeline@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][299] ([i915#9781])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk5/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-mtlp: NOTRUN -> [FAIL][300] ([i915#9779])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-3/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][301] ([i915#9779])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk8/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_get_param@base-params:
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#2575]) +7 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-7/igt@v3d/v3d_get_param@base-params.html
* igt@v3d/v3d_job_submission@threaded-job-submission:
- shard-rkl: NOTRUN -> [SKIP][303] ([fdo#109315]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@v3d/v3d_job_submission@threaded-job-submission.html
* igt@v3d/v3d_submit_csd@bad-extension:
- shard-tglu: NOTRUN -> [SKIP][304] ([fdo#109315] / [i915#2575]) +5 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@v3d/v3d_submit_csd@bad-extension.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#2575]) +17 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@vc4/vc4_lookup_fail@bad-color-write:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#7711]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@vc4/vc4_lookup_fail@bad-color-write.html
* igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#2575]) +4 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#7711]) +4 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#7711]) +11 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-5/igt@vc4/vc4_wait_bo@bad-bo.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-rkl: [FAIL][310] ([i915#2842]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-5/igt@gem_exec_fair@basic-none-solo@rcs0.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-5/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][312] ([i915#2842]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][314] ([i915#2842]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-tglu: [TIMEOUT][316] -> [PASS][317] +1 other test pass
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-tglu-6/igt@gem_fenced_exec_thrash@no-spare-fences.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][318] ([i915#5493]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload:
- shard-dg1: [DMESG-WARN][320] ([i915#4391] / [i915#4423]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg1-15/igt@i915_module_load@reload.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg1-19/igt@i915_module_load@reload.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][322] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [INCOMPLETE][324] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_suspend@sysfs-reader:
- shard-tglu: [ABORT][326] ([i915#10159]) -> [PASS][327] +1 other test pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-tglu-9/igt@i915_suspend@sysfs-reader.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-6/igt@i915_suspend@sysfs-reader.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][328] ([i915#3743]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][330] ([i915#2346]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-snb: [SKIP][332] ([fdo#109271]) -> [PASS][333] +6 other tests pass
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][334] ([i915#9519]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888:
- shard-dg1: [DMESG-WARN][336] ([i915#10143]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg1-19/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg1-18/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
- shard-tglu: [DMESG-WARN][338] ([i915#10143]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-tglu-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010:
- shard-snb: [DMESG-WARN][340] ([i915#10143]) -> [PASS][341] +1 other test pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-snb6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
- shard-snb: [FAIL][342] ([i915#9196]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][344] ([i915#9196]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][346] ([i915#7484]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-dg1: [FAIL][348] ([i915#4349]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg1-13/igt@perf_pmu@busy-double-start@rcs0.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg1-19/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][350] ([i915#4349]) -> [PASS][351] +3 other tests pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-dg1: [SKIP][352] ([i915#4077] / [i915#4423]) -> [SKIP][353] ([i915#4077])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg1-14/igt@gem_mmap_gtt@fault-concurrent-y.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg1-15/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: [WARN][354] ([i915#2658]) -> [INCOMPLETE][355] ([i915#10042] / [i915#10137])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-glk5/igt@gem_pwrite@basic-exhaustion.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-glk1/igt@gem_pwrite@basic-exhaustion.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: [SKIP][356] ([i915#5190]) -> [SKIP][357] ([i915#4538] / [i915#5190]) +12 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg1: [SKIP][358] ([i915#4423] / [i915#4538]) -> [SKIP][359] ([i915#4538])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg1-14/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg1-15/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_ccs@pipe-d-bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-dg1: [SKIP][360] ([i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][361] ([i915#5354] / [i915#6095]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg1-14/igt@kms_ccs@pipe-d-bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg1-15/igt@kms_ccs@pipe-d-bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_content_protection@type1:
- shard-snb: [INCOMPLETE][362] ([i915#8816]) -> [SKIP][363] ([fdo#109271])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-snb7/igt@kms_content_protection@type1.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-snb5/igt@kms_content_protection@type1.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: [SKIP][364] -> [SKIP][365] ([i915#9519])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-tglu-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list:
- shard-tglu: [FAIL][366] ([i915#10136]) -> [DMESG-FAIL][367] ([i915#10143])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-tglu-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-tglu-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-dg2: [DMESG-FAIL][368] ([i915#10143]) -> [FAIL][369] ([i915#10136])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [CRASH][370] ([i915#9351]) -> [INCOMPLETE][371] ([i915#5493])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14193/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143
[i915#10159]: https://gitlab.freedesktop.org/drm/intel/issues/10159
[i915#10165]: https://gitlab.freedesktop.org/drm/intel/issues/10165
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
Build changes
-------------
* Linux: CI_DRM_14193 -> Patchwork_129407v1
* Piglit: None -> piglit_4509
CI-20190529: 20190529
CI_DRM_14193: c655e0fd28045dbaa581d04bf7cc266eec1c3457 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7698: af750f5e7eaad98d40d8c924eb5f05e99d3c668b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_129407v1: c655e0fd28045dbaa581d04bf7cc266eec1c3457 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v1/index.html
[-- Attachment #2: Type: text/html, Size: 116864 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* RE: [PATCH 1/2] drm/i915/lnl: Add pkgc related register
2024-02-01 8:51 ` [PATCH 1/2] drm/i915/lnl: Add pkgc related register Suraj Kandpal
@ 2024-02-02 7:37 ` Borah, Chaitanya Kumar
2024-02-07 10:46 ` Govindapillai, Vinod
1 sibling, 0 replies; 28+ messages in thread
From: Borah, Chaitanya Kumar @ 2024-02-02 7:37 UTC (permalink / raw)
To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org
> -----Original Message-----
> From: Kandpal, Suraj <suraj.kandpal@intel.com>
> Sent: Thursday, February 1, 2024 2:22 PM
> To: intel-gfx@lists.freedesktop.org
> Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Kandpal,
> Suraj <suraj.kandpal@intel.com>
> Subject: [PATCH 1/2] drm/i915/lnl: Add pkgc related register
>
> Add the register that needs to read and written onto for deep pkgc
> programming.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_watermark_regs.h | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark_regs.h
> b/drivers/gpu/drm/i915/display/skl_watermark_regs.h
> index 628c5920ad49..20b30c9a6613 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark_regs.h
> +++ b/drivers/gpu/drm/i915/display/skl_watermark_regs.h
> @@ -157,4 +157,8 @@
> #define MTL_LATENCY_SAGV _MMIO(0x4578c)
> #define MTL_LATENCY_QCLK_SAGV REG_GENMASK(12, 0)
>
> +#define LNL_PKG_C_LATENCY _MMIO(0x46460)
> +#define LNL_ADDED_WAKE_TIME_MASK REG_GENMASK(28, 16)
> +#define LNL_PKG_C_LATENCY_MASK REG_GENMASK(12, 0)
> +
> #endif /* __SKL_WATERMARK_REGS_H__ */
> --
> 2.25.1
^ permalink raw reply [flat|nested] 28+ messages in thread
* RE: [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-01 8:51 ` [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register Suraj Kandpal
@ 2024-02-05 7:55 ` Borah, Chaitanya Kumar
2024-02-05 8:01 ` Suraj Kandpal
1 sibling, 0 replies; 28+ messages in thread
From: Borah, Chaitanya Kumar @ 2024-02-05 7:55 UTC (permalink / raw)
To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org
> -----Original Message-----
> From: Kandpal, Suraj <suraj.kandpal@intel.com>
> Sent: Thursday, February 1, 2024 2:22 PM
> To: intel-gfx@lists.freedesktop.org
> Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Kandpal,
> Suraj <suraj.kandpal@intel.com>
> Subject: [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
>
> Program the PKGC_LATENCY register with the highest latency from level 1 and
> above LP registers else program with all 1's.
> This is used to improve package C residency by sending the highest latency
> tolerance requirement (LTR) when the planes are done with the frame until
> the next frame programming window (set context latency, window 2) starts.
> Bspec: 68986
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_watermark.c | 31 ++++++++++++++++++++
> 1 file changed, 31 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c
> b/drivers/gpu/drm/i915/display/skl_watermark.c
> index 051a02ac01a4..c07376f37baa 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> @@ -3394,6 +3394,34 @@ static void skl_read_wm_latency(struct
> drm_i915_private *i915, u16 wm[])
> adjust_wm_latency(i915, wm, num_levels, read_latency); }
>
> +/*
> + * Program PKG_C_LATENCY Pkg C with highest valid latency from
> + * watermark level1 and up and above. If watermark level 1 is
> + * invalid program it with all 1's.
> + * Program PKG_C_LATENCY Added Wake Time = 0.
> + */
> +static void intel_program_pkgc_latency(struct drm_i915_private *i915,
> + u16 wm_latency[])
> +{
> + u16 max_value = 0;
> + u32 clear = 0, val = 0;
> + int max_level = i915->display.wm.num_levels, i;
> +
> + for (i = 1; i <= max_level; i++) {
> + if (wm_latency[i] == 0)
> + break;
> + else if (wm_latency[i] > max_value)
Fix the indentation here.
With the understanding that this is a bare bones implementation and pending work will be floated in a different series.
LGTM
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> + max_value = wm_latency[i];
> + }
> +
> + if (max_value == 0)
> + max_value = ~0 & LNL_PKG_C_LATENCY_MASK;
> +
> + clear |= LNL_ADDED_WAKE_TIME_MASK |
> LNL_PKG_C_LATENCY_MASK;
> + val |= max_value;
> + intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val); }
> +
> static void skl_setup_wm_latency(struct drm_i915_private *i915) {
> if (HAS_HW_SAGV_WM(i915))
> @@ -3407,6 +3435,9 @@ static void skl_setup_wm_latency(struct
> drm_i915_private *i915)
> skl_read_wm_latency(i915, i915->display.wm.skl_latency);
>
> intel_print_wm_latency(i915, "Gen9 Plane", i915-
> >display.wm.skl_latency);
> +
> + if (DISPLAY_VER(i915) >= 20)
> + intel_program_pkgc_latency(i915, i915-
> >display.wm.skl_latency);
> }
>
> static const struct intel_wm_funcs skl_wm_funcs = {
> --
> 2.25.1
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-01 8:51 ` [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register Suraj Kandpal
2024-02-05 7:55 ` Borah, Chaitanya Kumar
@ 2024-02-05 8:01 ` Suraj Kandpal
2024-02-05 10:19 ` Jani Nikula
` (2 more replies)
1 sibling, 3 replies; 28+ messages in thread
From: Suraj Kandpal @ 2024-02-05 8:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Suraj Kandpal, Chaitanya Kumar Borah
Program the PKGC_LATENCY register with the highest latency from
level 1 and above LP registers else program with all 1's.
This is used to improve package C residency by sending the highest
latency tolerance requirement (LTR) when the planes are done with the
frame until the next frame programming window (set context latency,
window 2) starts.
Bspec: 68986
--v2
-Fix indentation [Chaitanya]
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 31 ++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 051a02ac01a4..1ce4b33a407a 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -3394,6 +3394,34 @@ static void skl_read_wm_latency(struct drm_i915_private *i915, u16 wm[])
adjust_wm_latency(i915, wm, num_levels, read_latency);
}
+/*
+ * Program PKG_C_LATENCY Pkg C with highest valid latency from
+ * watermark level1 and up and above. If watermark level 1 is
+ * invalid program it with all 1's.
+ * Program PKG_C_LATENCY Added Wake Time = 0.
+ */
+static void intel_program_pkgc_latency(struct drm_i915_private *i915,
+ u16 wm_latency[])
+{
+ u16 max_value = 0;
+ u32 clear = 0, val = 0;
+ int max_level = i915->display.wm.num_levels, i;
+
+ for (i = 1; i <= max_level; i++) {
+ if (wm_latency[i] == 0)
+ break;
+ else if (wm_latency[i] > max_value)
+ max_value = wm_latency[i];
+ }
+
+ if (max_value == 0)
+ max_value = ~0 & LNL_PKG_C_LATENCY_MASK;
+
+ clear |= LNL_ADDED_WAKE_TIME_MASK | LNL_PKG_C_LATENCY_MASK;
+ val |= max_value;
+ intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val);
+}
+
static void skl_setup_wm_latency(struct drm_i915_private *i915)
{
if (HAS_HW_SAGV_WM(i915))
@@ -3407,6 +3435,9 @@ static void skl_setup_wm_latency(struct drm_i915_private *i915)
skl_read_wm_latency(i915, i915->display.wm.skl_latency);
intel_print_wm_latency(i915, "Gen9 Plane", i915->display.wm.skl_latency);
+
+ if (DISPLAY_VER(i915) >= 20)
+ intel_program_pkgc_latency(i915, i915->display.wm.skl_latency);
}
static const struct intel_wm_funcs skl_wm_funcs = {
--
2.25.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev2)
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (4 preceding siblings ...)
2024-02-01 21:56 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-02-05 9:47 ` Patchwork
2024-02-05 10:01 ` ✓ Fi.CI.BAT: success " Patchwork
` (8 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-05 9:47 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
== Series Details ==
Series: Program Deep PKG_C_LATENCY register (rev2)
URL : https://patchwork.freedesktop.org/series/129407/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/linux/find.h:203:45: warning: shift count is negative (-12)
+./include/linux/find.h:203:45: warning: shift count is negative (-12)
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✓ Fi.CI.BAT: success for Program Deep PKG_C_LATENCY register (rev2)
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (5 preceding siblings ...)
2024-02-05 9:47 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev2) Patchwork
@ 2024-02-05 10:01 ` Patchwork
2024-02-05 12:37 ` ✗ Fi.CI.IGT: failure " Patchwork
` (7 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-05 10:01 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 6916 bytes --]
== Series Details ==
Series: Program Deep PKG_C_LATENCY register (rev2)
URL : https://patchwork.freedesktop.org/series/129407/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14218 -> Patchwork_129407v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/index.html
Participating hosts (35 -> 39)
------------------------------
Additional (4): fi-elk-e7500 bat-kbl-2 bat-atsm-1 fi-bsw-n3050
Known issues
------------
Here are the changes found in Patchwork_129407v2 that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- fi-bsw-n3050: NOTRUN -> [FAIL][1] ([i915#8293])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/fi-bsw-n3050/boot.html
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1849])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-kbl-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][3] ([fdo#109271]) +35 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][8] ([i915#6077]) +37 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#6078]) +17 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#6093]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#1836]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-elk-e7500: NOTRUN -> [SKIP][12] ([fdo#109271]) +20 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/fi-elk-e7500/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#7357])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][14] ([i915#6094])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-atsm-1: NOTRUN -> [SKIP][15] ([fdo#109295] / [i915#6078])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-atsm-1: NOTRUN -> [SKIP][16] ([fdo#109295] / [i915#4077]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][17] ([fdo#109295]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-atsm-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- {bat-adls-6}: [DMESG-WARN][18] ([i915#5591]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/bat-adls-6/igt@i915_selftest@live@hangcheck.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/bat-adls-6/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
Build changes
-------------
* Linux: CI_DRM_14218 -> Patchwork_129407v2
CI-20190529: 20190529
CI_DRM_14218: 200b5a40e45282dfa868d4cb363dca46fc2cf60e @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7702: bf075a74ece1956fc0e554291591b9da3eab54cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_129407v2: 200b5a40e45282dfa868d4cb363dca46fc2cf60e @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
16d377c5cc40 drm/i915/lnl: Program PKGC_LATENCY register
cc2b50865b69 drm/i915/lnl: Add pkgc related register
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/index.html
[-- Attachment #2: Type: text/html, Size: 8308 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-05 8:01 ` Suraj Kandpal
@ 2024-02-05 10:19 ` Jani Nikula
2024-02-05 17:22 ` Kandpal, Suraj
2024-02-07 11:21 ` Govindapillai, Vinod
2024-02-13 6:28 ` Suraj Kandpal
2 siblings, 1 reply; 28+ messages in thread
From: Jani Nikula @ 2024-02-05 10:19 UTC (permalink / raw)
To: Suraj Kandpal, intel-gfx; +Cc: Suraj Kandpal, Chaitanya Kumar Borah
On Mon, 05 Feb 2024, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> Program the PKGC_LATENCY register with the highest latency from
> level 1 and above LP registers else program with all 1's.
> This is used to improve package C residency by sending the highest
> latency tolerance requirement (LTR) when the planes are done with the
> frame until the next frame programming window (set context latency,
> window 2) starts.
> Bspec: 68986
>
> --v2
> -Fix indentation [Chaitanya]
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_watermark.c | 31 ++++++++++++++++++++
> 1 file changed, 31 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
> index 051a02ac01a4..1ce4b33a407a 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> @@ -3394,6 +3394,34 @@ static void skl_read_wm_latency(struct drm_i915_private *i915, u16 wm[])
> adjust_wm_latency(i915, wm, num_levels, read_latency);
> }
>
> +/*
> + * Program PKG_C_LATENCY Pkg C with highest valid latency from
> + * watermark level1 and up and above. If watermark level 1 is
> + * invalid program it with all 1's.
> + * Program PKG_C_LATENCY Added Wake Time = 0.
> + */
> +static void intel_program_pkgc_latency(struct drm_i915_private *i915,
> + u16 wm_latency[])
> +{
> + u16 max_value = 0;
> + u32 clear = 0, val = 0;
> + int max_level = i915->display.wm.num_levels, i;
max_level seems useless, only used once.
> +
> + for (i = 1; i <= max_level; i++) {
Array access goes out of bounds. Boom.
> + if (wm_latency[i] == 0)
> + break;
> + else if (wm_latency[i] > max_value)
> + max_value = wm_latency[i];
> + }
> +
> + if (max_value == 0)
> + max_value = ~0 & LNL_PKG_C_LATENCY_MASK;
What does "~0 &" gain you here?
> +
> + clear |= LNL_ADDED_WAKE_TIME_MASK | LNL_PKG_C_LATENCY_MASK;
> + val |= max_value;
If you have fields defined for the register, why not use it for setting
max value too?
> + intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val);
> +}
> +
> static void skl_setup_wm_latency(struct drm_i915_private *i915)
> {
> if (HAS_HW_SAGV_WM(i915))
> @@ -3407,6 +3435,9 @@ static void skl_setup_wm_latency(struct drm_i915_private *i915)
> skl_read_wm_latency(i915, i915->display.wm.skl_latency);
>
> intel_print_wm_latency(i915, "Gen9 Plane", i915->display.wm.skl_latency);
> +
> + if (DISPLAY_VER(i915) >= 20)
> + intel_program_pkgc_latency(i915, i915->display.wm.skl_latency);
Before this, nothing in the skl_wm_init() path actually writes any
registers, it's all readout. Is this the right place to be doing this?
> }
>
> static const struct intel_wm_funcs skl_wm_funcs = {
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✗ Fi.CI.IGT: failure for Program Deep PKG_C_LATENCY register (rev2)
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (6 preceding siblings ...)
2024-02-05 10:01 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-02-05 12:37 ` Patchwork
2024-02-13 7:34 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev3) Patchwork
` (6 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-05 12:37 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 95636 bytes --]
== Series Details ==
Series: Program Deep PKG_C_LATENCY register (rev2)
URL : https://patchwork.freedesktop.org/series/129407/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14218_full -> Patchwork_129407v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_129407v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_129407v2_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_129407v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list:
- shard-rkl: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-dg2: NOTRUN -> [FAIL][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset:
- shard-dg2: NOTRUN -> [DMESG-WARN][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
- shard-mtlp: [PASS][4] -> [DMESG-WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-mtlp-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888:
- shard-glk: [PASS][6] -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb332:
- shard-snb: [PASS][8] -> [ABORT][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-snb6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb332.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb332.html
- shard-mtlp: [PASS][10] -> [ABORT][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-mtlp-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb332.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb332.html
- shard-dg2: NOTRUN -> [ABORT][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb332.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xbgr8888:
- shard-glk: [PASS][13] -> [DMESG-WARN][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xbgr8888.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xbgr8888.html
#### Warnings ####
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list:
- shard-mtlp: [DMESG-FAIL][15] -> [FAIL][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-mtlp-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset:
- shard-rkl: [DMESG-FAIL][17] -> [DMESG-WARN][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
Known issues
------------
Here are the changes found in Patchwork_129407v2_full that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- shard-rkl: ([PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [FAIL][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43]) ([i915#8293]) -> ([PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-1/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-1/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-1/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-1/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-1/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-2/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-2/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-2/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-2/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-3/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-3/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-4/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-4/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-4/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-4/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-5/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-5/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-5/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-5/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-6/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-6/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-7/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-7/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-7/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-7/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-1/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-1/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-1/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-2/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-2/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-2/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-3/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-3/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-3/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-5/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-5/boot.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-5/boot.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-5/boot.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-6/boot.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-6/boot.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-6/boot.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-6/boot.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/boot.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/boot.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/boot.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/boot.html
- shard-glk: ([PASS][68], [PASS][69], [FAIL][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [FAIL][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91]) ([i915#8293]) -> ([PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk1/boot.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk1/boot.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk1/boot.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk2/boot.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk2/boot.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk2/boot.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk3/boot.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk3/boot.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk3/boot.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk3/boot.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk4/boot.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk4/boot.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk4/boot.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk4/boot.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk6/boot.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk6/boot.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk7/boot.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk7/boot.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk8/boot.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk8/boot.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk8/boot.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk9/boot.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk9/boot.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-glk9/boot.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk3/boot.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk4/boot.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk4/boot.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk4/boot.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk6/boot.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk6/boot.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk6/boot.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk7/boot.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk7/boot.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk7/boot.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk8/boot.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk8/boot.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk8/boot.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk9/boot.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk9/boot.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk9/boot.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk1/boot.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk1/boot.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk1/boot.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk2/boot.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk2/boot.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk2/boot.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk3/boot.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk3/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#8411])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#7701])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@device_reset@cold-reset-bound.html
* igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit:
- shard-rkl: NOTRUN -> [DMESG-WARN][118] ([i915#10140])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit.html
* igt@drm_fdinfo@busy-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#8414]) +11 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@drm_fdinfo@busy-check-all@ccs3.html
* igt@drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#8414]) +12 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@drm_fdinfo@isolation@rcs0.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [PASS][121] -> [FAIL][122] ([i915#7742]) +1 other test fail
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#4873])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@gem_caching@reads.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][124] ([i915#10137] / [i915#7297])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-6/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#7697]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][126] -> [FAIL][127] ([i915#6268])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#8555]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#8555]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#5882]) +9 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#280])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#280])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@in-flight-suspend:
- shard-tglu: [PASS][133] -> [ABORT][134] ([i915#10030])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-tglu-3/igt@gem_eio@in-flight-suspend.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-9/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4771])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#4771])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#4812]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#8555])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#6334]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][140] ([i915#9606]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-glk: NOTRUN -> [FAIL][141] ([i915#9606])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk3/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_endless@dispatch@vecs0:
- shard-dg1: [PASS][142] -> [TIMEOUT][143] ([i915#3778])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-dg1-18/igt@gem_exec_endless@dispatch@vecs0.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-15/igt@gem_exec_endless@dispatch@vecs0.html
* igt@gem_exec_fair@basic-none-solo:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#4473])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none-vip:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#4473] / [i915#4771])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@gem_exec_fair@basic-none-vip.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][146] ([i915#2842])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][147] -> [FAIL][148] ([i915#2842])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#3539] / [i915#4852]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#7697])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-tglu: NOTRUN -> [SKIP][151] ([fdo#109283])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-mtlp: NOTRUN -> [SKIP][152] ([fdo#112283])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-gtt:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#3281]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#3281]) +10 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3281]) +5 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#4537] / [i915#4812]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4537] / [i915#4812])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [PASS][158] -> [INCOMPLETE][159] ([i915#9275])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#4860])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#4860])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-glk: NOTRUN -> [SKIP][162] ([fdo#109271] / [i915#4613]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#4613]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#4613]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3282]) +6 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8289])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@basic:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#4083])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic-copy:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#4077]) +9 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@gem_mmap_gtt@basic-copy.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#4077]) +8 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#4083]) +5 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@invalid-flags:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#4083]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#3282])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#4270]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-valid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#4270]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#4270]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#4270])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@read-write:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#3282]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8428]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#4079])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#4079]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#4879])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3297]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3297])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3297]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#3297])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen7_exec_parse@basic-offset:
- shard-rkl: NOTRUN -> [SKIP][186] ([fdo#109289]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][187] ([fdo#109289]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#2856]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#2527] / [i915#2856])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#2856]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: NOTRUN -> [INCOMPLETE][191] ([i915#10137] / [i915#9200] / [i915#9849])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [INCOMPLETE][192] ([i915#10137] / [i915#9820] / [i915#9849])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#7091])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#8399])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-dg1: [PASS][195] -> [FAIL][196] ([i915#3591]) +1 other test fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- shard-tglu: NOTRUN -> [WARN][197] ([i915#2681]) +3 other tests warn
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#6621])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#8925])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8437])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][201] ([i915#7443])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#7707])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#4212]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#6228])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][206] ([fdo#111614]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#4538] / [i915#5286])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#5286]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][209] ([fdo#111615] / [i915#5286]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][210] -> [FAIL][211] ([i915#5138]) +2 other tests fail
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][212] ([fdo#111614]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111614] / [i915#3638])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][214] -> [FAIL][215] ([i915#3743]) +1 other test fail
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][216] ([fdo#111615]) +7 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#5190]) +6 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#4538] / [i915#5190]) +8 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#4538])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][220] ([fdo#111615])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#6187])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][222] ([fdo#110723]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#5354] / [i915#6095]) +11 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#5354] / [i915#6095]) +6 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#5354]) +63 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#5354] / [i915#6095]) +5 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#5354] / [i915#6095]) +27 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_ccs@pipe-c-crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#5354]) +9 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#7213]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#7828])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-glk: NOTRUN -> [SKIP][231] ([fdo#109271]) +110 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk3/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-dg2: NOTRUN -> [SKIP][232] ([fdo#111827]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-rkl: NOTRUN -> [SKIP][233] ([fdo#111827])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-mtlp: NOTRUN -> [SKIP][234] ([fdo#111827])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#7828]) +5 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#7828])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#7828]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#7828]) +6 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#3299])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#7118])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#7118]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3359]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][243] ([fdo#109279] / [i915#3359])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8814]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#3555])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#3555]) +4 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#8814])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#3359])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][249] ([fdo#111767])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][250] ([fdo#111825]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#4103])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][252] ([fdo#109274] / [i915#5354]) +4 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-tglu: NOTRUN -> [SKIP][253] ([fdo#109274])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#9809]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][255] ([i915#2346])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][256] ([fdo#110189] / [i915#9227])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
- shard-rkl: NOTRUN -> [SKIP][257] ([fdo#110189] / [i915#9723])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][258] ([fdo#110189] / [i915#9723])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#8588])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#3804])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#8812])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#3840])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#3840] / [i915#9053])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#4854])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#1839])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#658]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][267] ([fdo#111825] / [i915#9934])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][268] ([fdo#109274] / [i915#3637]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3637]) +5 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][270] ([fdo#111767] / [i915#3637])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][271] ([fdo#109274]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#8381]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#8381])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#2587] / [i915#2672])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#2672]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#2672]) +3 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#2672] / [i915#3555])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-snb: [PASS][278] -> [SKIP][279] ([fdo#109271]) +11 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][280] ([fdo#111767] / [i915#1825]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
- shard-snb: [PASS][281] -> [SKIP][282] ([fdo#109271] / [fdo#111767])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][283] ([fdo#111767] / [fdo#111825])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][284] ([fdo#109280] / [fdo#111767])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#5439])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#3458]) +17 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#1825]) +23 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu: NOTRUN -> [SKIP][288] ([fdo#109280]) +5 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][289] ([fdo#111767] / [fdo#111825] / [i915#1825]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][290] ([fdo#111767] / [i915#5354])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#8708]) +18 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#3023]) +6 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#5439])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#10070])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#8708])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#8708]) +5 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#3458]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][298] ([fdo#111825] / [i915#1825]) +9 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][299] ([fdo#111825]) +2 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][300] ([fdo#110189]) +2 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#8228])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8228])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8821])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][305] ([i915#8292])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][306] ([i915#8292])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#9423]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#9423]) +3 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#9423]) +3 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#5176] / [i915#9423]) +3 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#5235]) +7 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#5235] / [i915#9423]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#5235]) +5 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#5235]) +5 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#5235]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-edp-1.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#9519]) +2 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-rkl: [PASS][317] -> [SKIP][318] ([i915#9519]) +3 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][319] ([fdo#109293] / [fdo#109506])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#6524])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-rkl: NOTRUN -> [SKIP][321] ([fdo#111068] / [i915#9683]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#9683]) +2 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][323] ([fdo#111068] / [i915#9683])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#9685])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][325] ([i915#4235]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][326] ([i915#5289]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][327] ([fdo#111615] / [i915#5289])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#5030]) +3 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#3555]) +2 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][330] ([i915#3555] / [i915#8809])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][331] -> [FAIL][332] ([i915#9196])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#9906])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#2437] / [i915#9412])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][335] ([i915#2437]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][336] ([fdo#109271] / [i915#2437])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk3/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#2437])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][338] ([fdo#109289]) +2 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#7387])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: [PASS][340] -> [FAIL][341] ([i915#4349])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-1/igt@perf_pmu@most-busy-check-all@rcs0.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-5/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#8516])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-mtlp: NOTRUN -> [SKIP][343] ([fdo#109291])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@prime_udl.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#3291] / [i915#3708])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-3/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][345] ([i915#3708])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][346] ([fdo#109295] / [fdo#111656] / [i915#3708])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][347] ([fdo#109295] / [i915#3708])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#3708]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#9917])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@sriov_basic@bind-unbind-vf.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-glk: NOTRUN -> [FAIL][350] ([i915#9781])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-glk2/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#2575]) +9 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-8/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-dg2: NOTRUN -> [SKIP][352] ([i915#2575]) +10 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-7/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_cl@single-in-sync:
- shard-rkl: NOTRUN -> [SKIP][353] ([fdo#109315]) +5 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/igt@v3d/v3d_submit_cl@single-in-sync.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-dg1: NOTRUN -> [SKIP][354] ([i915#2575])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@vc4/vc4_create_bo@create-bo-0:
- shard-mtlp: NOTRUN -> [SKIP][355] ([i915#7711]) +5 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-7/igt@vc4/vc4_create_bo@create-bo-0.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#2575])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#7711]) +6 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-2/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_tiling@set-get:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#7711]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@vc4/vc4_tiling@set-get.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][359] ([i915#7297]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][361] ([i915#6268]) -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@hibernate:
- shard-tglu: [ABORT][363] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-tglu-10/igt@gem_eio@hibernate.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-2/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][365] ([i915#5784]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-dg1-17/igt@gem_eio@reset-stress.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-17/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: [FAIL][367] ([i915#2842]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-7/igt@gem_exec_fair@basic-none-rrul@rcs0.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][369] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][371] ([i915#3591]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [FAIL][373] ([i915#3743]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size:
- shard-rkl: [INCOMPLETE][375] -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-snb: [SKIP][377] ([fdo#109271] / [fdo#111767]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-snb: [SKIP][379] ([fdo#109271]) -> [PASS][380] +9 other tests pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][381] ([i915#9519]) -> [PASS][382] +1 other test pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_gray8:
- shard-mtlp: [ABORT][383] -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-mtlp-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_gray8.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_gray8.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb565:
- shard-snb: [ABORT][385] -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-snb6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb565.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb565.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-mtlp: [FAIL][387] ([i915#9196]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][389] ([i915#9196]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
#### Warnings ####
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][391] ([i915#9433]) -> [SKIP][392] ([i915#9424])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg1-18/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][393] ([fdo#110189] / [i915#3955]) -> [SKIP][394] ([i915#3955])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-snb: [SKIP][395] ([fdo#109271]) -> [SKIP][396] ([fdo#109271] / [fdo#111767])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-snb2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [CRASH][397] ([i915#9351]) -> [INCOMPLETE][398] ([i915#5493])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14218/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10140]: https://gitlab.freedesktop.org/drm/intel/issues/10140
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* Linux: CI_DRM_14218 -> Patchwork_129407v2
CI-20190529: 20190529
CI_DRM_14218: 200b5a40e45282dfa868d4cb363dca46fc2cf60e @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7702: bf075a74ece1956fc0e554291591b9da3eab54cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_129407v2: 200b5a40e45282dfa868d4cb363dca46fc2cf60e @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v2/index.html
[-- Attachment #2: Type: text/html, Size: 114624 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* RE: [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-05 10:19 ` Jani Nikula
@ 2024-02-05 17:22 ` Kandpal, Suraj
2024-02-08 8:59 ` Jani Nikula
0 siblings, 1 reply; 28+ messages in thread
From: Kandpal, Suraj @ 2024-02-05 17:22 UTC (permalink / raw)
To: Jani Nikula, intel-gfx@lists.freedesktop.org; +Cc: Borah, Chaitanya Kumar
> Subject: Re: [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
>
> On Mon, 05 Feb 2024, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> > Program the PKGC_LATENCY register with the highest latency from level
> > 1 and above LP registers else program with all 1's.
> > This is used to improve package C residency by sending the highest
> > latency tolerance requirement (LTR) when the planes are done with the
> > frame until the next frame programming window (set context latency,
> > window 2) starts.
> > Bspec: 68986
> >
> > --v2
> > -Fix indentation [Chaitanya]
> >
> > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> > Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/skl_watermark.c | 31
> > ++++++++++++++++++++
> > 1 file changed, 31 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c
> > b/drivers/gpu/drm/i915/display/skl_watermark.c
> > index 051a02ac01a4..1ce4b33a407a 100644
> > --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> > +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> > @@ -3394,6 +3394,34 @@ static void skl_read_wm_latency(struct
> drm_i915_private *i915, u16 wm[])
> > adjust_wm_latency(i915, wm, num_levels, read_latency); }
> >
> > +/*
> > + * Program PKG_C_LATENCY Pkg C with highest valid latency from
> > + * watermark level1 and up and above. If watermark level 1 is
> > + * invalid program it with all 1's.
> > + * Program PKG_C_LATENCY Added Wake Time = 0.
> > + */
> > +static void intel_program_pkgc_latency(struct drm_i915_private *i915,
> > + u16 wm_latency[])
> > +{
> > + u16 max_value = 0;
> > + u32 clear = 0, val = 0;
> > + int max_level = i915->display.wm.num_levels, i;
>
> max_level seems useless, only used once.
Sure will fix this.
>
> > +
> > + for (i = 1; i <= max_level; i++) {
>
> Array access goes out of bounds. Boom.
>
Will fix this
> > + if (wm_latency[i] == 0)
> > + break;
> > + else if (wm_latency[i] > max_value)
> > + max_value = wm_latency[i];
> > + }
> > +
> > + if (max_value == 0)
> > + max_value = ~0 & LNL_PKG_C_LATENCY_MASK;
>
> What does "~0 &" gain you here?
>
So max value is 0 for all bits except 0-12 as we need to set them as all 1's to disable deep pkgc State
> > +
> > + clear |= LNL_ADDED_WAKE_TIME_MASK |
> LNL_PKG_C_LATENCY_MASK;
> > + val |= max_value;
>
> If you have fields defined for the register, why not use it for setting max value
> too?
Sorry I didn't get you here .
>
> > + intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val); }
> > +
> > static void skl_setup_wm_latency(struct drm_i915_private *i915) {
> > if (HAS_HW_SAGV_WM(i915))
> > @@ -3407,6 +3435,9 @@ static void skl_setup_wm_latency(struct
> drm_i915_private *i915)
> > skl_read_wm_latency(i915, i915->display.wm.skl_latency);
> >
> > intel_print_wm_latency(i915, "Gen9 Plane",
> > i915->display.wm.skl_latency);
> > +
> > + if (DISPLAY_VER(i915) >= 20)
> > + intel_program_pkgc_latency(i915, i915-
> >display.wm.skl_latency);
>
> Before this, nothing in the skl_wm_init() path actually writes any registers, it's
> all readout. Is this the right place to be doing this?
>
Yes since all latency values are all ready and available for use which we can program in the deep pkgc register.
Regards,
Suraj Kandpal
> > }
> >
> > static const struct intel_wm_funcs skl_wm_funcs = {
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH 1/2] drm/i915/lnl: Add pkgc related register
2024-02-01 8:51 ` [PATCH 1/2] drm/i915/lnl: Add pkgc related register Suraj Kandpal
2024-02-02 7:37 ` Borah, Chaitanya Kumar
@ 2024-02-07 10:46 ` Govindapillai, Vinod
1 sibling, 0 replies; 28+ messages in thread
From: Govindapillai, Vinod @ 2024-02-07 10:46 UTC (permalink / raw)
To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org
On Thu, 2024-02-01 at 14:21 +0530, Suraj Kandpal wrote:
> Add the register that needs to read and written onto for
> deep pkgc programming.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_watermark_regs.h | 4 ++++
> 1 file changed, 4 insertions(+)
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
>
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark_regs.h
> b/drivers/gpu/drm/i915/display/skl_watermark_regs.h
> index 628c5920ad49..20b30c9a6613 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark_regs.h
> +++ b/drivers/gpu/drm/i915/display/skl_watermark_regs.h
> @@ -157,4 +157,8 @@
> #define MTL_LATENCY_SAGV _MMIO(0x4578c)
> #define MTL_LATENCY_QCLK_SAGV REG_GENMASK(12, 0)
>
> +#define LNL_PKG_C_LATENCY _MMIO(0x46460)
> +#define LNL_ADDED_WAKE_TIME_MASK REG_GENMASK(28, 16)
> +#define LNL_PKG_C_LATENCY_MASK REG_GENMASK(12, 0)
> +
> #endif /* __SKL_WATERMARK_REGS_H__ */
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-05 8:01 ` Suraj Kandpal
2024-02-05 10:19 ` Jani Nikula
@ 2024-02-07 11:21 ` Govindapillai, Vinod
2024-02-13 6:28 ` Suraj Kandpal
2 siblings, 0 replies; 28+ messages in thread
From: Govindapillai, Vinod @ 2024-02-07 11:21 UTC (permalink / raw)
To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org; +Cc: Borah, Chaitanya Kumar
Hi Suraj,
On Mon, 2024-02-05 at 13:31 +0530, Suraj Kandpal wrote:
> Program the PKGC_LATENCY register with the highest latency from
> level 1 and above LP registers else program with all 1's.
> This is used to improve package C residency by sending the highest
> latency tolerance requirement (LTR) when the planes are done with the
> frame until the next frame programming window (set context latency,
> window 2) starts.
> Bspec: 68986
>
> --v2
> -Fix indentation [Chaitanya]
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_watermark.c | 31 ++++++++++++++++++++
> 1 file changed, 31 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c
> b/drivers/gpu/drm/i915/display/skl_watermark.c
> index 051a02ac01a4..1ce4b33a407a 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> @@ -3394,6 +3394,34 @@ static void skl_read_wm_latency(struct drm_i915_private *i915, u16 wm[])
> adjust_wm_latency(i915, wm, num_levels, read_latency);
> }
>
> +/*
> + * Program PKG_C_LATENCY Pkg C with highest valid latency from
> + * watermark level1 and up and above. If watermark level 1 is
> + * invalid program it with all 1's.
> + * Program PKG_C_LATENCY Added Wake Time = 0.
> + */
Could you please confirm if the added wake time = 0 always? The Bspec says the otherway!
> +static void intel_program_pkgc_latency(struct drm_i915_private *i915,
> + u16 wm_latency[])
> +{
> + u16 max_value = 0;
> + u32 clear = 0, val = 0;
> + int max_level = i915->display.wm.num_levels, i;
> +
> + for (i = 1; i <= max_level; i++) {
> + if (wm_latency[i] == 0)
> + break;
> + else if (wm_latency[i] > max_value)
> + max_value = wm_latency[i];
> + }
May be efficient to iterate max to 1 (skl_max_wm_level_for_vblank())
Also better to call skl_wm_lateny() instead of accessing the lantency values directly as there are
some latency adjustments been done per platforms.
> +
> + if (max_value == 0)
> + max_value = ~0 & LNL_PKG_C_LATENCY_MASK;
> +
> + clear |= LNL_ADDED_WAKE_TIME_MASK | LNL_PKG_C_LATENCY_MASK;
As mentioned above the waketime is cleared here. Please double check if it is as expected.
> + val |= max_value;
> + intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val);
> +}
> +
> static void skl_setup_wm_latency(struct drm_i915_private *i915)
> {
> if (HAS_HW_SAGV_WM(i915))
> @@ -3407,6 +3435,9 @@ static void skl_setup_wm_latency(struct drm_i915_private *i915)
> skl_read_wm_latency(i915, i915->display.wm.skl_latency);
>
> intel_print_wm_latency(i915, "Gen9 Plane", i915->display.wm.skl_latency);
> +
> + if (DISPLAY_VER(i915) >= 20)
> + intel_program_pkgc_latency(i915, i915->display.wm.skl_latency);
skl_setup_wm_latency() gets called only at the init time. Though latency values dont change, but as
per bspec you need to disable this for VRR. I guess you would need to have provision to update this
based on that. So should this check be moved to intel_atomic_check()?
BR
Vinod
> }
>
> static const struct intel_wm_funcs skl_wm_funcs = {
^ permalink raw reply [flat|nested] 28+ messages in thread
* RE: [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-05 17:22 ` Kandpal, Suraj
@ 2024-02-08 8:59 ` Jani Nikula
0 siblings, 0 replies; 28+ messages in thread
From: Jani Nikula @ 2024-02-08 8:59 UTC (permalink / raw)
To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org; +Cc: Borah, Chaitanya Kumar
On Mon, 05 Feb 2024, "Kandpal, Suraj" <suraj.kandpal@intel.com> wrote:
>> On Mon, 05 Feb 2024, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
>> > + if (wm_latency[i] == 0)
>> > + break;
>> > + else if (wm_latency[i] > max_value)
>> > + max_value = wm_latency[i];
>> > + }
>> > +
>> > + if (max_value == 0)
>> > + max_value = ~0 & LNL_PKG_C_LATENCY_MASK;
>>
>> What does "~0 &" gain you here?
>>
>
> So max value is 0 for all bits except 0-12 as we need to set them as all 1's to disable deep pkgc State
How is ~0 & LNL_PKG_C_LATENCY_MASK different from
LNL_PKG_C_LATENCY_MASK?
>> > +
>> > + clear |= LNL_ADDED_WAKE_TIME_MASK |
>> LNL_PKG_C_LATENCY_MASK;
>> > + val |= max_value;
>>
>> If you have fields defined for the register, why not use it for setting max value
>> too?
>
> Sorry I didn't get you here .
val |= REG_FIELD_PREP(LNL_PKG_C_LATENCY_MASK, max_value);
>
>>
>> > + intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val); }
>> > +
>> > static void skl_setup_wm_latency(struct drm_i915_private *i915) {
>> > if (HAS_HW_SAGV_WM(i915))
>> > @@ -3407,6 +3435,9 @@ static void skl_setup_wm_latency(struct
>> drm_i915_private *i915)
>> > skl_read_wm_latency(i915, i915->display.wm.skl_latency);
>> >
>> > intel_print_wm_latency(i915, "Gen9 Plane",
>> > i915->display.wm.skl_latency);
>> > +
>> > + if (DISPLAY_VER(i915) >= 20)
>> > + intel_program_pkgc_latency(i915, i915-
>> >display.wm.skl_latency);
>>
>> Before this, nothing in the skl_wm_init() path actually writes any registers, it's
>> all readout. Is this the right place to be doing this?
>>
>
> Yes since all latency values are all ready and available for use which
> we can program in the deep pkgc register.
Is that a good reason to change a function that only reads hardware to
something writes the hardware?
BR,
Jani.
>
> Regards,
> Suraj Kandpal
>> > }
>> >
>> > static const struct intel_wm_funcs skl_wm_funcs = {
>>
>> --
>> Jani Nikula, Intel
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-05 8:01 ` Suraj Kandpal
2024-02-05 10:19 ` Jani Nikula
2024-02-07 11:21 ` Govindapillai, Vinod
@ 2024-02-13 6:28 ` Suraj Kandpal
2024-02-14 10:43 ` Govindapillai, Vinod
2024-02-19 6:36 ` Suraj Kandpal
2 siblings, 2 replies; 28+ messages in thread
From: Suraj Kandpal @ 2024-02-13 6:28 UTC (permalink / raw)
To: intel-gfx; +Cc: vinod.govindapillai, Suraj Kandpal, Chaitanya Kumar Borah
If fixed refresh rate program the PKGC_LATENCY register
with the highest latency from level 1 and above LP registers
and program ADDED_WAKE_TIME = DSB execution time.
else program PKGC_LATENCY with all 1's and ADDED_WAKE_TIME as 0.
This is used to improve package C residency by sending the highest
latency tolerance requirement (LTR) when the planes are done with the
frame until the next frame programming window (set context latency,
window 2) starts.
Bspec: 68986
--v2
-Fix indentation [Chaitanya]
--v3
-Take into account if fixed refrersh rate or not [Vinod]
-Added wake time dependengt on DSB execution time [Vinod]
-Use REG_FIELD_PREP [Jani]
-Call program_pkgc_latency from appropriate place [Jani]
-no need for the ~0 while setting max latency [Jani]
-change commit message to add the new changes made in.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
drivers/gpu/drm/i915/display/intel_dsb.c | 2 +-
drivers/gpu/drm/i915/display/skl_watermark.c | 59 +++++++++++++++++++-
drivers/gpu/drm/i915/display/skl_watermark.h | 4 +-
3 files changed, 60 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c b/drivers/gpu/drm/i915/display/intel_dsb.c
index a6c7122fd671..d62e050185e7 100644
--- a/drivers/gpu/drm/i915/display/intel_dsb.c
+++ b/drivers/gpu/drm/i915/display/intel_dsb.c
@@ -325,7 +325,7 @@ static int intel_dsb_dewake_scanline(const struct intel_crtc_state *crtc_state)
{
struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev);
const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
- unsigned int latency = skl_watermark_max_latency(i915);
+ unsigned int latency = skl_watermark_max_latency(i915, 0);
int vblank_start;
if (crtc_state->vrr.enable) {
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 614f319d754e..1d423ce0f42d 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -23,6 +23,12 @@
#include "skl_watermark.h"
#include "skl_watermark_regs.h"
+/*It is expected that DSB can do posted writes to every register in
+ * the pipe and planes within 100us. For flip queue use case, the
+ * recommended DSB execution time is 100us + one SAGV block time.
+ */
+#define DSB_EXE_TIME 100
+
static void skl_sagv_disable(struct drm_i915_private *i915);
/* Stores plane specific WM parameters */
@@ -2904,12 +2910,51 @@ static int skl_wm_add_affected_planes(struct intel_atomic_state *state,
return 0;
}
+/*
+ * If Fixed Refresh Rate:
+ * Program DEEP PKG_C_LATENCY Pkg C with highest valid latency from
+ * watermark level1 and up and above. If watermark level 1 is
+ * invalid program it with all 1's.
+ * Program PKG_C_LATENCY Added Wake Time = DSB execution time
+ * If Variable Refresh Rate:
+ * Program DEEP PKG_C_LATENCY Pkg C with all 1's.
+ * Program PKG_C_LATENCY Added Wake Time = 0
+ */
+static void
+skl_program_dpkgc_latency(struct drm_i915_private *i915, bool vrr_enabled)
+{
+ u32 max_latency = 0;
+ u32 clear = 0, val = 0;
+ u32 added_wake_time = 0;
+
+ if (DISPLAY_VER(i915) < 20)
+ return;
+
+ if (vrr_enabled) {
+ max_latency = LNL_PKG_C_LATENCY_MASK;
+ added_wake_time = 0;
+ } else {
+ max_latency = skl_watermark_max_latency(i915, 1);
+ if (max_latency == 0)
+ max_latency = LNL_PKG_C_LATENCY_MASK;
+ added_wake_time = DSB_EXE_TIME +
+ i915->display.sagv.block_time_us;
+ }
+
+ clear |= LNL_ADDED_WAKE_TIME_MASK | LNL_PKG_C_LATENCY_MASK;
+ val |= REG_FIELD_PREP(LNL_PKG_C_LATENCY_MASK, max_latency);
+ val |= REG_FIELD_PREP(LNL_ADDED_WAKE_TIME_MASK, added_wake_time);
+
+ intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val);
+}
+
static int
skl_compute_wm(struct intel_atomic_state *state)
{
struct intel_crtc *crtc;
struct intel_crtc_state __maybe_unused *new_crtc_state;
int ret, i;
+ bool vrr_enabled = false;
for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
ret = skl_build_pipe_wm(state, crtc);
@@ -2936,6 +2981,15 @@ skl_compute_wm(struct intel_atomic_state *state)
return ret;
}
+ for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
+ if (new_crtc_state->vrr.enable) {
+ vrr_enabled = true;
+ break;
+ }
+ }
+
+ skl_program_dpkgc_latency(to_i915(state->base.dev), vrr_enabled);
+
skl_print_wm_changes(state);
return 0;
@@ -3415,6 +3469,7 @@ static void skl_setup_wm_latency(struct drm_i915_private *i915)
skl_read_wm_latency(i915, i915->display.wm.skl_latency);
intel_print_wm_latency(i915, "Gen9 Plane", i915->display.wm.skl_latency);
+
}
static const struct intel_wm_funcs skl_wm_funcs = {
@@ -3731,11 +3786,11 @@ void skl_watermark_debugfs_register(struct drm_i915_private *i915)
&intel_sagv_status_fops);
}
-unsigned int skl_watermark_max_latency(struct drm_i915_private *i915)
+unsigned int skl_watermark_max_latency(struct drm_i915_private *i915, int initial_wm_level)
{
int level;
- for (level = i915->display.wm.num_levels - 1; level >= 0; level--) {
+ for (level = i915->display.wm.num_levels - 1; level >= initial_wm_level; level--) {
unsigned int latency = skl_wm_latency(i915, level, NULL);
if (latency)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.h b/drivers/gpu/drm/i915/display/skl_watermark.h
index fb0da36fd3ec..e3d1d74a7b17 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.h
+++ b/drivers/gpu/drm/i915/display/skl_watermark.h
@@ -46,8 +46,8 @@ void skl_watermark_ipc_update(struct drm_i915_private *i915);
bool skl_watermark_ipc_enabled(struct drm_i915_private *i915);
void skl_watermark_debugfs_register(struct drm_i915_private *i915);
-unsigned int skl_watermark_max_latency(struct drm_i915_private *i915);
-
+unsigned int skl_watermark_max_latency(struct drm_i915_private *i915,
+ int initial_wm_level);
void skl_wm_init(struct drm_i915_private *i915);
struct intel_dbuf_state {
--
2.25.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev3)
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (7 preceding siblings ...)
2024-02-05 12:37 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-02-13 7:34 ` Patchwork
2024-02-13 7:48 ` ✓ Fi.CI.BAT: success " Patchwork
` (5 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-13 7:34 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
== Series Details ==
Series: Program Deep PKG_C_LATENCY register (rev3)
URL : https://patchwork.freedesktop.org/series/129407/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✓ Fi.CI.BAT: success for Program Deep PKG_C_LATENCY register (rev3)
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (8 preceding siblings ...)
2024-02-13 7:34 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev3) Patchwork
@ 2024-02-13 7:48 ` Patchwork
2024-02-13 9:25 ` ✓ Fi.CI.IGT: " Patchwork
` (4 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-13 7:48 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 2596 bytes --]
== Series Details ==
Series: Program Deep PKG_C_LATENCY register (rev3)
URL : https://patchwork.freedesktop.org/series/129407/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14259 -> Patchwork_129407v3
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/index.html
Participating hosts (37 -> 35)
------------------------------
Additional (2): bat-kbl-2 fi-bsw-n3050
Missing (4): bat-atsm-1 bat-adlm-1 bat-arls-1 fi-snb-2520m
New tests
---------
New tests have been introduced between CI_DRM_14259 and Patchwork_129407v3:
### New IGT tests (1) ###
* igt@i915_module_load:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in Patchwork_129407v3 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1849])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/bat-kbl-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271]) +35 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@random-engines:
- fi-bsw-n3050: NOTRUN -> [SKIP][3] ([fdo#109271]) +15 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
Build changes
-------------
* Linux: CI_DRM_14259 -> Patchwork_129407v3
CI-20190529: 20190529
CI_DRM_14259: e370df7a4fb4125cb8eee1b00ff1592808ed9786 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7710: d87a5d85a60fba1283821d5212c3aece64cb36ba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_129407v3: e370df7a4fb4125cb8eee1b00ff1592808ed9786 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
bfbf35a7e6bb drm/i915/lnl: Program PKGC_LATENCY register
b8a2cabe3a99 drm/i915/lnl: Add pkgc related register
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/index.html
[-- Attachment #2: Type: text/html, Size: 3437 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✓ Fi.CI.IGT: success for Program Deep PKG_C_LATENCY register (rev3)
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (9 preceding siblings ...)
2024-02-13 7:48 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-02-13 9:25 ` Patchwork
2024-02-19 7:21 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev4) Patchwork
` (3 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-13 9:25 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 82805 bytes --]
== Series Details ==
Series: Program Deep PKG_C_LATENCY register (rev3)
URL : https://patchwork.freedesktop.org/series/129407/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14259_full -> Patchwork_129407v3_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between CI_DRM_14259_full and Patchwork_129407v3_full:
### New IGT tests (8) ###
* igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [3.76] s
* igt@kms_cursor_edge_walk@128x128-top-edge@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [3.41] s
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [3.31] s
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [3.20] s
* igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [3.32] s
* igt@kms_cursor_edge_walk@64x64-right-edge@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [3.20] s
* igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [3.68] s
* igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [3.67] s
Known issues
------------
Here are the changes found in Patchwork_129407v3_full that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- shard-glk: ([PASS][1], [FAIL][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [FAIL][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [FAIL][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24]) ([i915#8293]) -> ([PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk1/boot.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk1/boot.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk2/boot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk2/boot.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk2/boot.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk3/boot.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk3/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk3/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk4/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk4/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk4/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk5/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk5/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk6/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk6/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk6/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk7/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk7/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk8/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk8/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk8/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk9/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk9/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk9/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk9/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk9/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk8/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk8/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk8/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk7/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk7/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk7/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk6/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk6/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk6/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk6/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk5/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk4/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk4/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk4/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk3/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk3/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk3/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk2/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk2/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk1/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk1/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk1/boot.html
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#7701])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#8414]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#9323])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#9323])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][53] -> [INCOMPLETE][54] ([i915#7297])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#8555]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#280])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#280])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4771])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#4525])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4812]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#6334])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][62] ([i915#9606])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk7/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-tglu: NOTRUN -> [FAIL][63] ([i915#9606])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@gem_exec_capture@many-4k-zero.html
- shard-mtlp: NOTRUN -> [FAIL][64] ([i915#9606])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-flow:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4473] / [i915#4771])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-tglu: NOTRUN -> [FAIL][66] ([i915#2842]) +4 other tests fail
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][67] -> [FAIL][68] ([i915#2842])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: NOTRUN -> [FAIL][69] ([i915#2842])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][70] -> [FAIL][71] ([i915#2842]) +4 other tests fail
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3539])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: NOTRUN -> [FAIL][73] ([i915#2842]) +1 other test fail
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3539] / [i915#4852])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#7697])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@secure-non-root:
- shard-tglu: NOTRUN -> [SKIP][76] ([fdo#112283])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@gem_exec_params@secure-non-root.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([fdo#112283])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3281]) +9 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3281]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3281]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4537] / [i915#4812])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: NOTRUN -> [ABORT][82] ([i915#7975] / [i915#8213])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4860]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_lmem_swapping@random:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4613]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#4613]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk7/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#4613])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#4613]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8289])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4083]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4077]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4077]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#4083]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3282]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#3282])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pread@snoop:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#3282]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][96] ([i915#2658])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4270]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#4270])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4270]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#4270])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#8428]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4079])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#8411])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4079]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4879])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#3297])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#3297])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#3282] / [i915#3297])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#3297])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][111] ([fdo#109289]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gen7_exec_parse@bitmasks.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-tglu: NOTRUN -> [SKIP][112] ([fdo#109289]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#2527] / [i915#2856])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#2856]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#2527])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#2856]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [INCOMPLETE][117] ([i915#10137] / [i915#9820] / [i915#9849])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [PASS][118] -> [INCOMPLETE][119] ([i915#10137] / [i915#9820] / [i915#9849])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#7091])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rpm@gem-mmap-type@gtt-smem0:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#8431])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#8925])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#8925])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_rps@thresholds@gt1:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3555] / [i915#8925])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@i915_pm_rps@thresholds@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8437])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#6245])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6188])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: NOTRUN -> [SKIP][128] ([fdo#109303])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-tglu: NOTRUN -> [SKIP][129] ([fdo#109302])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@i915_query@query-topology-unsupported.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([fdo#109302])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#4212]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#5190]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#4215] / [i915#5190])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#8709]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][135] ([fdo#111614])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][137] ([fdo#111615] / [i915#5286]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [FAIL][138] ([i915#5138])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][139] ([fdo#111614]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][140] ([fdo#111614] / [i915#3638])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][141] ([fdo#111614]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [FAIL][142] ([i915#3743])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][143] -> [FAIL][144] ([i915#3743]) +2 other tests fail
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5190]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][146] ([fdo#110723]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][147] ([fdo#111615]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][148] ([fdo#111615]) +8 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#5354] / [i915#6095]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#5354]) +42 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#5354]) +7 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#5354] / [i915#6095]) +24 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_ccs@pipe-d-bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-dg2-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#5354] / [i915#6095]) +30 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#7213]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#4087]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#7828]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][157] ([fdo#111827])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-tglu: NOTRUN -> [SKIP][158] ([fdo#111827]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_chamelium_color@ctm-limited-range.html
- shard-mtlp: NOTRUN -> [SKIP][159] ([fdo#111827])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#7828]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#7828]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#7828]) +5 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3299])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#3116])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#3299])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#7118] / [i915#9424])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3359])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3359]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8814]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8814]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3555]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][172] ([fdo#109274] / [i915#5354]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#9809]) +3 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#4103]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#4213])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-tglu: NOTRUN -> [SKIP][176] ([fdo#109274])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#9723])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#9833])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][180] ([fdo#110189] / [i915#9723])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][181] ([i915#9841]) +3 other tests fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-snb7/igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3804])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#1257])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#8812])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#658])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][187] ([fdo#111825])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][188] ([fdo#109274] / [fdo#111767])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3637]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][190] ([fdo#109274] / [fdo#111767] / [i915#3637])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109274]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][192] ([fdo#109274] / [i915#3637]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#2672])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#2587] / [i915#2672]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#5274])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][199] ([fdo#111767] / [i915#1825])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][200] ([fdo#109280]) +13 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][201] ([fdo#111825] / [i915#1825]) +8 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#1825]) +22 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [PASS][203] -> [SKIP][204] ([fdo#109271]) +4 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8708]) +8 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#5439])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3023]) +4 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-glk: NOTRUN -> [SKIP][208] ([fdo#109271]) +179 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#3458]) +10 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][210] ([fdo#110189]) +8 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][211] ([fdo#111767] / [fdo#111825] / [i915#1825]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][212] ([fdo#111767] / [i915#5354]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109280] / [fdo#111767])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#8708]) +6 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#6301])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][219] ([fdo#109289]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#6953])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][221] ([i915#8292])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#9423]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#9423]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5176]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#5176] / [i915#9423]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#5235]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#5235]) +8 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#5235]) +7 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#5235]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg1-12/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#5235]) +7 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#9812])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#10139])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#9685]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][235] -> [SKIP][236] ([i915#9519]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][237] ([fdo#109293])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_pm_rpm@pc8-residency.html
- shard-tglu: NOTRUN -> [SKIP][238] ([fdo#109293] / [fdo#109506])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#6524] / [i915#6805]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#9683])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][241] ([fdo#111068] / [i915#9683])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][242] ([fdo#111068] / [i915#9683])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#9683]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#4235])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#5289])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5289])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu: NOTRUN -> [SKIP][247] ([fdo#111615] / [i915#5289])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#4235]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic@pipe-a-vga-1-pipe-b-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][249] ([i915#5465]) +3 other tests fail
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1-pipe-b-hdmi-a-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#3555]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#3555]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#8623])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][253] -> [FAIL][254] ([i915#9196]) +1 other test fail
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_writeback@writeback-fb-id:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#2437])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][256] ([fdo#109271] / [i915#2437]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#2436])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#2434])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#2433])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][260] ([i915#4349]) +3 other tests fail
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#8850])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-3/igt@perf_pmu@cpu-hotplug.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#3708] / [i915#4077])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-3/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#3708])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#9917])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@sriov_basic@bind-unbind-vf.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-glk: NOTRUN -> [FAIL][265] ([i915#9781])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk7/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@v3d/v3d_submit_cl@bad-multisync-pad:
- shard-tglu: NOTRUN -> [SKIP][266] ([fdo#109315] / [i915#2575]) +5 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@v3d/v3d_submit_cl@bad-multisync-pad.html
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#2575]) +7 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@v3d/v3d_submit_cl@bad-multisync-pad.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#2575]) +5 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_csd@valid-multisync-submission:
- shard-rkl: NOTRUN -> [SKIP][269] ([fdo#109315]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
* igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#2575]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#7711]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-7/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_perfmon@get-values-valid-perfmon:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#7711])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-7/igt@vc4/vc4_perfmon@get-values-valid-perfmon.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#7711]) +5 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@vc4/vc4_tiling@set-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [FAIL][274] ([i915#7742]) -> [PASS][275] +1 other test pass
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
* igt@gem_eio@kms:
- shard-dg1: [FAIL][276] ([i915#5784]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-dg1-13/igt@gem_eio@kms.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg1-15/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-rkl: [FAIL][278] ([i915#2842]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-rkl-3/igt@gem_exec_fair@basic-none-solo@rcs0.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-4/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [FAIL][280] ([i915#2842]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-tglu-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [INCOMPLETE][282] ([i915#10137] / [i915#9200]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][284] ([i915#10131] / [i915#9820]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [FAIL][286] ([i915#10031]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][288] ([i915#3743]) -> [PASS][289] +1 other test pass
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][290] ([i915#2346]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [FAIL][292] ([i915#6880]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-snb: [SKIP][294] ([fdo#109271] / [fdo#111767]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [SKIP][296] ([fdo#109271]) -> [PASS][297] +9 other tests pass
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [SKIP][298] ([i915#9519]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg2-6/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][300] ([i915#9519]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [FAIL][302] ([i915#9196]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [FAIL][304] ([i915#9196]) -> [PASS][305] +1 other test pass
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
#### Warnings ####
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][306] ([i915#9424]) -> [SKIP][307] ([i915#9433])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-dg1-14/igt@kms_content_protection@mei-interface.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][308] ([i915#3955]) -> [SKIP][309] ([fdo#110189] / [i915#3955])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:
- shard-snb: [SKIP][310] ([fdo#109271]) -> [SKIP][311] ([fdo#109271] / [fdo#111767])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-snb: [SKIP][312] ([fdo#109271] / [fdo#111767]) -> [SKIP][313] ([fdo#109271])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][314] ([i915#4816]) -> [SKIP][315] ([i915#4070] / [i915#4816])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14259/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9841]: https://gitlab.freedesktop.org/drm/intel/issues/9841
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
Build changes
-------------
* Linux: CI_DRM_14259 -> Patchwork_129407v3
CI-20190529: 20190529
CI_DRM_14259: e370df7a4fb4125cb8eee1b00ff1592808ed9786 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7710: d87a5d85a60fba1283821d5212c3aece64cb36ba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_129407v3: e370df7a4fb4125cb8eee1b00ff1592808ed9786 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v3/index.html
[-- Attachment #2: Type: text/html, Size: 100829 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-13 6:28 ` Suraj Kandpal
@ 2024-02-14 10:43 ` Govindapillai, Vinod
2024-02-19 6:36 ` Suraj Kandpal
1 sibling, 0 replies; 28+ messages in thread
From: Govindapillai, Vinod @ 2024-02-14 10:43 UTC (permalink / raw)
To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org
Cc: Borah, Chaitanya Kumar, Syrjala, Ville
Hi Suraj,
+Ville - please comment if you see anything wrong with my explanation here
I think there could be a problem with the current logic and a possibility for underrun. As per the
bspec we need to configure highest latency to soc.
As per this patch, skl_program_dpkgc_latency() is called from skl_compute_wm() and
skl_program_dpkgc_latency() uses skl_watermark_max_latency() to get the maximum memory latency. As
per the current implementation this skl_watermark_max_latency() always return latency from the
highest level.
I think, that might not be the right approach. In skl_compute_wm() we calculate the basic wm levels
using skl_build_pipe_wm(). Then based on the ddb availability these initial wm levels are adjusted
again and some of the higher wm levels are pruned (skl_compute_ddb()). As far as I understood from
the purpose of the bspec 68986, we need to configure the latency of corresponding the available wm
level.
These wm levels are plane specific. So to find the best - highest wm levels used, you have to
iterate through all the planes and find out the "least" of highest enabled wm levels in these
planes. Then use the corresponding memory latency of that level to program this register.
Otherwise you might end up programming a higher latency value than what is used and can cause a FIFO
underrun I think.
In case of async flip cases, minimal wm0 is used and that makes wm level 1 to above not enabled and
in that case you need to set all 1's to this register. This is what I meant previously. This async
flip case will be covered automatically if the logic as per the above comments.
BR
Vinod
On Tue, 2024-02-13 at 11:58 +0530, Suraj Kandpal wrote:
> If fixed refresh rate program the PKGC_LATENCY register
> with the highest latency from level 1 and above LP registers
> and program ADDED_WAKE_TIME = DSB execution time.
> else program PKGC_LATENCY with all 1's and ADDED_WAKE_TIME as 0.
> This is used to improve package C residency by sending the highest
> latency tolerance requirement (LTR) when the planes are done with the
> frame until the next frame programming window (set context latency,
> window 2) starts.
> Bspec: 68986
>
> --v2
> -Fix indentation [Chaitanya]
>
> --v3
> -Take into account if fixed refrersh rate or not [Vinod]
> -Added wake time dependengt on DSB execution time [Vinod]
> -Use REG_FIELD_PREP [Jani]
> -Call program_pkgc_latency from appropriate place [Jani]
> -no need for the ~0 while setting max latency [Jani]
> -change commit message to add the new changes made in.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dsb.c | 2 +-
> drivers/gpu/drm/i915/display/skl_watermark.c | 59 +++++++++++++++++++-
> drivers/gpu/drm/i915/display/skl_watermark.h | 4 +-
> 3 files changed, 60 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c b/drivers/gpu/drm/i915/display/intel_dsb.c
> index a6c7122fd671..d62e050185e7 100644
> --- a/drivers/gpu/drm/i915/display/intel_dsb.c
> +++ b/drivers/gpu/drm/i915/display/intel_dsb.c
> @@ -325,7 +325,7 @@ static int intel_dsb_dewake_scanline(const struct intel_crtc_state
> *crtc_state)
> {
> struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev);
> const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
> - unsigned int latency = skl_watermark_max_latency(i915);
> + unsigned int latency = skl_watermark_max_latency(i915, 0);
> int vblank_start;
>
> if (crtc_state->vrr.enable) {
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c
> b/drivers/gpu/drm/i915/display/skl_watermark.c
> index 614f319d754e..1d423ce0f42d 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> @@ -23,6 +23,12 @@
> #include "skl_watermark.h"
> #include "skl_watermark_regs.h"
>
> +/*It is expected that DSB can do posted writes to every register in
> + * the pipe and planes within 100us. For flip queue use case, the
> + * recommended DSB execution time is 100us + one SAGV block time.
> + */
> +#define DSB_EXE_TIME 100
> +
> static void skl_sagv_disable(struct drm_i915_private *i915);
>
> /* Stores plane specific WM parameters */
> @@ -2904,12 +2910,51 @@ static int skl_wm_add_affected_planes(struct intel_atomic_state *state,
> return 0;
> }
>
> +/*
> + * If Fixed Refresh Rate:
> + * Program DEEP PKG_C_LATENCY Pkg C with highest valid latency from
> + * watermark level1 and up and above. If watermark level 1 is
> + * invalid program it with all 1's.
> + * Program PKG_C_LATENCY Added Wake Time = DSB execution time
> + * If Variable Refresh Rate:
> + * Program DEEP PKG_C_LATENCY Pkg C with all 1's.
> + * Program PKG_C_LATENCY Added Wake Time = 0
> + */
> +static void
> +skl_program_dpkgc_latency(struct drm_i915_private *i915, bool vrr_enabled)
> +{
> + u32 max_latency = 0;
> + u32 clear = 0, val = 0;
> + u32 added_wake_time = 0;
> +
> + if (DISPLAY_VER(i915) < 20)
> + return;
> +
> + if (vrr_enabled) {
> + max_latency = LNL_PKG_C_LATENCY_MASK;
> + added_wake_time = 0;
> + } else {
> + max_latency = skl_watermark_max_latency(i915, 1);
> + if (max_latency == 0)
> + max_latency = LNL_PKG_C_LATENCY_MASK;
> + added_wake_time = DSB_EXE_TIME +
> + i915->display.sagv.block_time_us;
> + }
> +
> + clear |= LNL_ADDED_WAKE_TIME_MASK | LNL_PKG_C_LATENCY_MASK;
> + val |= REG_FIELD_PREP(LNL_PKG_C_LATENCY_MASK, max_latency);
> + val |= REG_FIELD_PREP(LNL_ADDED_WAKE_TIME_MASK, added_wake_time);
> +
> + intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val);
> +}
> +
> static int
> skl_compute_wm(struct intel_atomic_state *state)
> {
> struct intel_crtc *crtc;
> struct intel_crtc_state __maybe_unused *new_crtc_state;
> int ret, i;
> + bool vrr_enabled = false;
>
> for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
> ret = skl_build_pipe_wm(state, crtc);
> @@ -2936,6 +2981,15 @@ skl_compute_wm(struct intel_atomic_state *state)
> return ret;
> }
>
> + for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
> + if (new_crtc_state->vrr.enable) {
> + vrr_enabled = true;
> + break;
can't we combine this to the previous crtc state iteration loop something like
vrr_enabled |= new_crtc_state->vrr.enable
> + }
> + }
> +
> + skl_program_dpkgc_latency(to_i915(state->base.dev), vrr_enabled);
> +
> skl_print_wm_changes(state);
>
> return 0;
> @@ -3415,6 +3469,7 @@ static void skl_setup_wm_latency(struct drm_i915_private *i915)
> skl_read_wm_latency(i915, i915->display.wm.skl_latency);
>
> intel_print_wm_latency(i915, "Gen9 Plane", i915->display.wm.skl_latency);
> +
extra blank line
> }
>
> static const struct intel_wm_funcs skl_wm_funcs = {
> @@ -3731,11 +3786,11 @@ void skl_watermark_debugfs_register(struct drm_i915_private *i915)
> &intel_sagv_status_fops);
> }
>
> -unsigned int skl_watermark_max_latency(struct drm_i915_private *i915)
> +unsigned int skl_watermark_max_latency(struct drm_i915_private *i915, int initial_wm_level)
> {
> int level;
>
> - for (level = i915->display.wm.num_levels - 1; level >= 0; level--) {
> + for (level = i915->display.wm.num_levels - 1; level >= initial_wm_level; level--) {
> unsigned int latency = skl_wm_latency(i915, level, NULL);
>
> if (latency)
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.h
> b/drivers/gpu/drm/i915/display/skl_watermark.h
> index fb0da36fd3ec..e3d1d74a7b17 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.h
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.h
> @@ -46,8 +46,8 @@ void skl_watermark_ipc_update(struct drm_i915_private *i915);
> bool skl_watermark_ipc_enabled(struct drm_i915_private *i915);
> void skl_watermark_debugfs_register(struct drm_i915_private *i915);
>
> -unsigned int skl_watermark_max_latency(struct drm_i915_private *i915);
> -
> +unsigned int skl_watermark_max_latency(struct drm_i915_private *i915,
> + int initial_wm_level);
> void skl_wm_init(struct drm_i915_private *i915);
>
> struct intel_dbuf_state {
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-13 6:28 ` Suraj Kandpal
2024-02-14 10:43 ` Govindapillai, Vinod
@ 2024-02-19 6:36 ` Suraj Kandpal
2024-02-19 9:23 ` Govindapillai, Vinod
1 sibling, 1 reply; 28+ messages in thread
From: Suraj Kandpal @ 2024-02-19 6:36 UTC (permalink / raw)
To: intel-gfx; +Cc: vinod.govindapillai, Suraj Kandpal, Chaitanya Kumar Borah
If fixed refresh rate program the PKGC_LATENCY register
with the highest latency from level 1 and above LP registers
and program ADDED_WAKE_TIME = DSB execution time.
else program PKGC_LATENCY with all 1's and ADDED_WAKE_TIME as 0.
This is used to improve package C residency by sending the highest
latency tolerance requirement (LTR) when the planes are done with the
frame until the next frame programming window (set context latency,
window 2) starts.
Bspec: 68986
--v2
-Fix indentation [Chaitanya]
--v3
-Take into account if fixed refrersh rate or not [Vinod]
-Added wake time dependengt on DSB execution time [Vinod]
-Use REG_FIELD_PREP [Jani]
-Call program_pkgc_latency from appropriate place [Jani]
-no need for the ~0 while setting max latency [Jani]
-change commit message to add the new changes made in.
--v4
-Remove extra blank line [Vinod]
-move the vrr.enable check to previous loop [Vinod]
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
drivers/gpu/drm/i915/display/intel_dsb.c | 2 +-
drivers/gpu/drm/i915/display/skl_watermark.c | 54 +++++++++++++++++++-
drivers/gpu/drm/i915/display/skl_watermark.h | 4 +-
3 files changed, 55 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c b/drivers/gpu/drm/i915/display/intel_dsb.c
index a6c7122fd671..d62e050185e7 100644
--- a/drivers/gpu/drm/i915/display/intel_dsb.c
+++ b/drivers/gpu/drm/i915/display/intel_dsb.c
@@ -325,7 +325,7 @@ static int intel_dsb_dewake_scanline(const struct intel_crtc_state *crtc_state)
{
struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev);
const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
- unsigned int latency = skl_watermark_max_latency(i915);
+ unsigned int latency = skl_watermark_max_latency(i915, 0);
int vblank_start;
if (crtc_state->vrr.enable) {
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 614f319d754e..c6b9be80d83c 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -23,6 +23,12 @@
#include "skl_watermark.h"
#include "skl_watermark_regs.h"
+/*It is expected that DSB can do posted writes to every register in
+ * the pipe and planes within 100us. For flip queue use case, the
+ * recommended DSB execution time is 100us + one SAGV block time.
+ */
+#define DSB_EXE_TIME 100
+
static void skl_sagv_disable(struct drm_i915_private *i915);
/* Stores plane specific WM parameters */
@@ -2904,12 +2910,51 @@ static int skl_wm_add_affected_planes(struct intel_atomic_state *state,
return 0;
}
+/*
+ * If Fixed Refresh Rate:
+ * Program DEEP PKG_C_LATENCY Pkg C with highest valid latency from
+ * watermark level1 and up and above. If watermark level 1 is
+ * invalid program it with all 1's.
+ * Program PKG_C_LATENCY Added Wake Time = DSB execution time
+ * If Variable Refresh Rate:
+ * Program DEEP PKG_C_LATENCY Pkg C with all 1's.
+ * Program PKG_C_LATENCY Added Wake Time = 0
+ */
+static void
+skl_program_dpkgc_latency(struct drm_i915_private *i915, bool vrr_enabled)
+{
+ u32 max_latency = 0;
+ u32 clear = 0, val = 0;
+ u32 added_wake_time = 0;
+
+ if (DISPLAY_VER(i915) < 20)
+ return;
+
+ if (vrr_enabled) {
+ max_latency = LNL_PKG_C_LATENCY_MASK;
+ added_wake_time = 0;
+ } else {
+ max_latency = skl_watermark_max_latency(i915, 1);
+ if (max_latency == 0)
+ max_latency = LNL_PKG_C_LATENCY_MASK;
+ added_wake_time = DSB_EXE_TIME +
+ i915->display.sagv.block_time_us;
+ }
+
+ clear |= LNL_ADDED_WAKE_TIME_MASK | LNL_PKG_C_LATENCY_MASK;
+ val |= REG_FIELD_PREP(LNL_PKG_C_LATENCY_MASK, max_latency);
+ val |= REG_FIELD_PREP(LNL_ADDED_WAKE_TIME_MASK, added_wake_time);
+
+ intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val);
+}
+
static int
skl_compute_wm(struct intel_atomic_state *state)
{
struct intel_crtc *crtc;
struct intel_crtc_state __maybe_unused *new_crtc_state;
int ret, i;
+ bool vrr_enabled = false;
for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
ret = skl_build_pipe_wm(state, crtc);
@@ -2934,8 +2979,13 @@ skl_compute_wm(struct intel_atomic_state *state)
ret = skl_wm_add_affected_planes(state, crtc);
if (ret)
return ret;
+
+ if (new_crtc_state->vrr.enable)
+ vrr_enabled = true;
}
+ skl_program_dpkgc_latency(to_i915(state->base.dev), vrr_enabled);
+
skl_print_wm_changes(state);
return 0;
@@ -3731,11 +3781,11 @@ void skl_watermark_debugfs_register(struct drm_i915_private *i915)
&intel_sagv_status_fops);
}
-unsigned int skl_watermark_max_latency(struct drm_i915_private *i915)
+unsigned int skl_watermark_max_latency(struct drm_i915_private *i915, int initial_wm_level)
{
int level;
- for (level = i915->display.wm.num_levels - 1; level >= 0; level--) {
+ for (level = i915->display.wm.num_levels - 1; level >= initial_wm_level; level--) {
unsigned int latency = skl_wm_latency(i915, level, NULL);
if (latency)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.h b/drivers/gpu/drm/i915/display/skl_watermark.h
index fb0da36fd3ec..e3d1d74a7b17 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.h
+++ b/drivers/gpu/drm/i915/display/skl_watermark.h
@@ -46,8 +46,8 @@ void skl_watermark_ipc_update(struct drm_i915_private *i915);
bool skl_watermark_ipc_enabled(struct drm_i915_private *i915);
void skl_watermark_debugfs_register(struct drm_i915_private *i915);
-unsigned int skl_watermark_max_latency(struct drm_i915_private *i915);
-
+unsigned int skl_watermark_max_latency(struct drm_i915_private *i915,
+ int initial_wm_level);
void skl_wm_init(struct drm_i915_private *i915);
struct intel_dbuf_state {
--
2.25.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev4)
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (10 preceding siblings ...)
2024-02-13 9:25 ` ✓ Fi.CI.IGT: " Patchwork
@ 2024-02-19 7:21 ` Patchwork
2024-02-19 7:34 ` ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-19 7:21 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
== Series Details ==
Series: Program Deep PKG_C_LATENCY register (rev4)
URL : https://patchwork.freedesktop.org/series/129407/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✓ Fi.CI.BAT: success for Program Deep PKG_C_LATENCY register (rev4)
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (11 preceding siblings ...)
2024-02-19 7:21 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev4) Patchwork
@ 2024-02-19 7:34 ` Patchwork
2024-02-19 9:19 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-02-20 11:22 ` ✓ Fi.CI.IGT: success " Patchwork
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-19 7:34 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 2662 bytes --]
== Series Details ==
Series: Program Deep PKG_C_LATENCY register (rev4)
URL : https://patchwork.freedesktop.org/series/129407/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14288 -> Patchwork_129407v4
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/index.html
Participating hosts (34 -> 33)
------------------------------
Additional (1): bat-kbl-2
Missing (2): bat-adlp-9 fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_129407v4 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1849])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/bat-kbl-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271]) +35 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- {bat-arls-2}: [ABORT][3] ([i915#10237]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/bat-arls-2/igt@core_hotunplug@unbind-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/bat-arls-2/igt@core_hotunplug@unbind-rebind.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194
[i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213
[i915#10215]: https://gitlab.freedesktop.org/drm/intel/issues/10215
[i915#10237]: https://gitlab.freedesktop.org/drm/intel/issues/10237
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
Build changes
-------------
* Linux: CI_DRM_14288 -> Patchwork_129407v4
CI-20190529: 20190529
CI_DRM_14288: cb7db7997fcacd6792fd2fd6e9e93309a408587a @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7716: 7716
Patchwork_129407v4: cb7db7997fcacd6792fd2fd6e9e93309a408587a @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
816207164a57 drm/i915/lnl: Program PKGC_LATENCY register
49b6eaaf2fe6 drm/i915/lnl: Add pkgc related register
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/index.html
[-- Attachment #2: Type: text/html, Size: 3193 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✗ Fi.CI.IGT: failure for Program Deep PKG_C_LATENCY register (rev4)
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (12 preceding siblings ...)
2024-02-19 7:34 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-02-19 9:19 ` Patchwork
2024-02-20 11:22 ` ✓ Fi.CI.IGT: success " Patchwork
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-19 9:19 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 71637 bytes --]
== Series Details ==
Series: Program Deep PKG_C_LATENCY register (rev4)
URL : https://patchwork.freedesktop.org/series/129407/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14288_full -> Patchwork_129407v4_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_129407v4_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_129407v4_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 8)
------------------------------
Additional (1): shard-glk-0
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_129407v4_full:
### IGT changes ###
#### Possible regressions ####
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@api_intel_bb@render-ccs.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][2] -> [INCOMPLETE][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-2.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-6/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-2.html
* igt@runner@aborted:
- shard-glk: NOTRUN -> [FAIL][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-glk1/igt@runner@aborted.html
New tests
---------
New tests have been introduced between CI_DRM_14288_full and Patchwork_129407v4_full:
### New IGT tests (14) ###
* igt@kms_cursor_edge_walk@256x256-right-edge@pipe-a-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [3.29] s
* igt@kms_cursor_edge_walk@256x256-right-edge@pipe-d-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [3.19, 3.20] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.03] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.16] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.09] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.16] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
Known issues
------------
Here are the changes found in Patchwork_129407v4_full that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- shard-rkl: ([PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [FAIL][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28]) ([i915#8293]) -> ([PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-2/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-2/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-2/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-3/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-3/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-3/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-3/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-3/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-6/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-6/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#8411])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#8414]) +12 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@virtual-busy:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8414])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@drm_fdinfo@virtual-busy.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3555] / [i915#9323])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][58] -> [INCOMPLETE][59] ([i915#7297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][60] -> [FAIL][61] ([i915#6268])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][62] ([fdo#109314])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_ctx_param@set-priority-not-supported.html
- shard-dg2: NOTRUN -> [SKIP][63] ([fdo#109314])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#8555]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8555])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#1099])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb7/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#280])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][68] ([i915#7975] / [i915#8213])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/igt@gem_eio@hibernate.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#6344])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][70] ([i915#9606])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3539] / [i915#4852]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][72] -> [FAIL][73] ([i915#2842]) +1 other test fail
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [PASS][74] -> [FAIL][75] ([i915#2842])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3539])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@gem_exec_fair@basic-pace-solo.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4473])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][78] -> [FAIL][79] ([i915#2842])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-rkl: NOTRUN -> [SKIP][80] ([fdo#109283])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3281]) +12 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3281]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4537] / [i915#4812])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4860])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][85] -> [TIMEOUT][86] ([i915#5493])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4613])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4077]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@hang:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4077]) +15 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_mmap_gtt@hang.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4083]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@read:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4083])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3282]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pwrite@basic-exhaustion:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3282])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#4270])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4270])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4270])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#5190]) +9 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#8428])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4885])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3297])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3297]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4880]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gen7_exec_parse@basic-offset:
- shard-dg2: NOTRUN -> [SKIP][104] ([fdo#109289]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@basic-rejected:
- shard-rkl: NOTRUN -> [SKIP][105] ([fdo#109289])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#2856])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#2856]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][108] -> [FAIL][109] ([i915#3591])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][110] -> [INCOMPLETE][111] ([i915#10137] / [i915#7790])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb1/igt@i915_pm_rps@reset.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb2/igt@i915_pm_rps@reset.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4387])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#8437])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][114] ([fdo#109302])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4212]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3:
- shard-dg1: [PASS][116] -> [FAIL][117] ([i915#2521])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#8709]) +11 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#8709]) +7 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#8709]) +11 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#6228])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111614]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111614]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][127] -> [FAIL][128] ([i915#3743]) +1 other test fail
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +9 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([fdo#111615]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][131] ([fdo#110723]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +5 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#5354] / [i915#6095]) +8 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#5354]) +7 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#7828]) +7 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@gamma:
- shard-mtlp: NOTRUN -> [SKIP][136] ([fdo#111827])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_chamelium_color@gamma.html
- shard-dg2: NOTRUN -> [SKIP][137] ([fdo#111827]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#7828]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7828]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#7118] / [i915#9424]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#6944] / [i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-snb: NOTRUN -> [SKIP][142] ([fdo#109271]) +42 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb5/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#3359])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#8814])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#3555])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#3555]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#3359])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8814])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][149] ([fdo#109274] / [i915#5354]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#9809])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][151] -> [FAIL][152] ([i915#2346])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#4103] / [i915#4213])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-snb: [PASS][154] -> [DMESG-WARN][155] ([i915#10166])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb5/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb1/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#9833])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][157] ([fdo#109271])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-glk2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#1257])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840] / [i915#9053])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#3840] / [i915#9053])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#1839])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#9337])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-rkl: NOTRUN -> [SKIP][164] ([fdo#111825]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8381])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#8381])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111767] / [fdo#111825])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3637]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109274]) +7 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#2672]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#2672])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#2672]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: NOTRUN -> [SKIP][173] ([fdo#109285])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8708]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#5354]) +74 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][176] ([fdo#111825] / [i915#1825]) +7 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-dg2: NOTRUN -> [FAIL][177] ([i915#6880])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3023]) +7 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#1825]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#9766])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#8708]) +15 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3458]) +15 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][183] ([fdo#111767] / [i915#5354]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][184] ([fdo#111767] / [i915#1825])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8228]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_hdr@static-toggle.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#4816])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-mtlp: NOTRUN -> [SKIP][188] ([fdo#109289])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8821])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_plane_lowres@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8821])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8821])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][192] ([fdo#109274] / [i915#5354] / [i915#9423])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#6953] / [i915#9423])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][194] ([i915#8292])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#9423]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#9423]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#5176] / [i915#9423]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#9423]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#5235]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#5235])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4 (NEW):
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#5235]) +7 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#5235] / [i915#9423]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#5235]) +5 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#10139])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#9685]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][207] -> [SKIP][208] ([i915#4281])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#9519])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][210] -> [SKIP][211] ([i915#9519])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][212] -> [SKIP][213] ([i915#9519]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#9683])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#9683]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#4348])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_rotation_crc@bad-tiling:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#4235]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_rotation_crc@bad-tiling.html
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#4235]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8809])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [PASS][220] -> [FAIL][221] ([i915#9196]) +1 other test fail
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
- shard-rkl: NOTRUN -> [FAIL][222] ([i915#9196])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#2437] / [i915#9412])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#2437])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#2437] / [i915#9412])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#2437] / [i915#9412])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#2436])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#7387])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#8516])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3291] / [i915#3708])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#3708])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][232] ([fdo#109295] / [i915#3708])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9917])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#9917])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@sriov_basic@bind-unbind-vf.html
* igt@v3d/v3d_perfmon@create-single-perfmon:
- shard-rkl: NOTRUN -> [SKIP][235] ([fdo#109315]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@v3d/v3d_perfmon@create-single-perfmon.html
* igt@v3d/v3d_perfmon@create-two-perfmon:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#2575]) +9 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@v3d/v3d_perfmon@create-two-perfmon.html
* igt@v3d/v3d_submit_csd@bad-flag:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2575]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@v3d/v3d_submit_csd@bad-flag.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#7711]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#7711]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@vc4/vc4_wait_bo@bad-pad.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#7711]) +8 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][241] ([i915#7742]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_eio@kms:
- shard-dg1: [FAIL][243] ([i915#5784]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-18/igt@gem_eio@kms.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [FAIL][245] ([i915#2842]) -> [PASS][246] +2 other tests pass
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-8/igt@gem_exec_fair@basic-none-share@rcs0.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][247] ([i915#2842]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][249] ([i915#5493]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][251] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][253] ([i915#3591]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [DMESG-FAIL][255] ([i915#10010]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/igt@i915_selftest@live@gt_pm.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/igt@i915_selftest@live@gt_pm.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][257] ([i915#3743]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-snb: [DMESG-WARN][259] ([i915#10166]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb1/igt@kms_cursor_legacy@torture-move@pipe-a.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb2/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
- shard-dg2: [FAIL][261] ([i915#6880]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][263] ([i915#9519]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][265] ([i915#9519]) -> [PASS][266] +1 other test pass
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [ABORT][267] ([i915#9618]) -> [INCOMPLETE][268] ([i915#10137] / [i915#9618])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-tglu: [FAIL][269] ([i915#3591]) -> [WARN][270] ([i915#2681])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-tglu: [WARN][271] ([i915#2681]) -> [FAIL][272] ([i915#3591])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][273] ([fdo#110189] / [i915#3955]) -> [SKIP][274] ([i915#3955])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][275] ([i915#3361]) -> [SKIP][276] ([i915#4281])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: [SKIP][277] ([fdo#109289]) -> [SKIP][278] ([fdo#109289] / [i915#7387])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-mtlp-1/igt@perf@gen8-unprivileged-single-ctx-counters.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-dg2: [SKIP][279] ([i915#2436]) -> [SKIP][280] ([i915#2436] / [i915#7387])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-10/igt@perf@gen8-unprivileged-single-ctx-counters.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#10010]: https://gitlab.freedesktop.org/drm/intel/issues/10010
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
Build changes
-------------
* Linux: CI_DRM_14288 -> Patchwork_129407v4
CI-20190529: 20190529
CI_DRM_14288: cb7db7997fcacd6792fd2fd6e9e93309a408587a @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7716: 7716
Patchwork_129407v4: cb7db7997fcacd6792fd2fd6e9e93309a408587a @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/index.html
[-- Attachment #2: Type: text/html, Size: 85934 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register
2024-02-19 6:36 ` Suraj Kandpal
@ 2024-02-19 9:23 ` Govindapillai, Vinod
0 siblings, 0 replies; 28+ messages in thread
From: Govindapillai, Vinod @ 2024-02-19 9:23 UTC (permalink / raw)
To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org; +Cc: Borah, Chaitanya Kumar
On Mon, 2024-02-19 at 12:06 +0530, Suraj Kandpal wrote:
> If fixed refresh rate program the PKGC_LATENCY register
> with the highest latency from level 1 and above LP registers
> and program ADDED_WAKE_TIME = DSB execution time.
> else program PKGC_LATENCY with all 1's and ADDED_WAKE_TIME as 0.
> This is used to improve package C residency by sending the highest
> latency tolerance requirement (LTR) when the planes are done with the
> frame until the next frame programming window (set context latency,
> window 2) starts.
> Bspec: 68986
>
> --v2
> -Fix indentation [Chaitanya]
>
> --v3
> -Take into account if fixed refrersh rate or not [Vinod]
> -Added wake time dependengt on DSB execution time [Vinod]
> -Use REG_FIELD_PREP [Jani]
> -Call program_pkgc_latency from appropriate place [Jani]
> -no need for the ~0 while setting max latency [Jani]
> -change commit message to add the new changes made in.
>
> --v4
> -Remove extra blank line [Vinod]
> -move the vrr.enable check to previous loop [Vinod]
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dsb.c | 2 +-
> drivers/gpu/drm/i915/display/skl_watermark.c | 54 +++++++++++++++++++-
> drivers/gpu/drm/i915/display/skl_watermark.h | 4 +-
> 3 files changed, 55 insertions(+), 5 deletions(-)
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c b/drivers/gpu/drm/i915/display/intel_dsb.c
> index a6c7122fd671..d62e050185e7 100644
> --- a/drivers/gpu/drm/i915/display/intel_dsb.c
> +++ b/drivers/gpu/drm/i915/display/intel_dsb.c
> @@ -325,7 +325,7 @@ static int intel_dsb_dewake_scanline(const struct intel_crtc_state
> *crtc_state)
> {
> struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev);
> const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
> - unsigned int latency = skl_watermark_max_latency(i915);
> + unsigned int latency = skl_watermark_max_latency(i915, 0);
> int vblank_start;
>
> if (crtc_state->vrr.enable) {
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c
> b/drivers/gpu/drm/i915/display/skl_watermark.c
> index 614f319d754e..c6b9be80d83c 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> @@ -23,6 +23,12 @@
> #include "skl_watermark.h"
> #include "skl_watermark_regs.h"
>
> +/*It is expected that DSB can do posted writes to every register in
> + * the pipe and planes within 100us. For flip queue use case, the
> + * recommended DSB execution time is 100us + one SAGV block time.
> + */
> +#define DSB_EXE_TIME 100
> +
> static void skl_sagv_disable(struct drm_i915_private *i915);
>
> /* Stores plane specific WM parameters */
> @@ -2904,12 +2910,51 @@ static int skl_wm_add_affected_planes(struct intel_atomic_state *state,
> return 0;
> }
>
> +/*
> + * If Fixed Refresh Rate:
> + * Program DEEP PKG_C_LATENCY Pkg C with highest valid latency from
> + * watermark level1 and up and above. If watermark level 1 is
> + * invalid program it with all 1's.
> + * Program PKG_C_LATENCY Added Wake Time = DSB execution time
> + * If Variable Refresh Rate:
> + * Program DEEP PKG_C_LATENCY Pkg C with all 1's.
> + * Program PKG_C_LATENCY Added Wake Time = 0
> + */
> +static void
> +skl_program_dpkgc_latency(struct drm_i915_private *i915, bool vrr_enabled)
> +{
> + u32 max_latency = 0;
> + u32 clear = 0, val = 0;
> + u32 added_wake_time = 0;
> +
> + if (DISPLAY_VER(i915) < 20)
> + return;
> +
> + if (vrr_enabled) {
> + max_latency = LNL_PKG_C_LATENCY_MASK;
> + added_wake_time = 0;
> + } else {
> + max_latency = skl_watermark_max_latency(i915, 1);
> + if (max_latency == 0)
> + max_latency = LNL_PKG_C_LATENCY_MASK;
> + added_wake_time = DSB_EXE_TIME +
> + i915->display.sagv.block_time_us;
> + }
> +
> + clear |= LNL_ADDED_WAKE_TIME_MASK | LNL_PKG_C_LATENCY_MASK;
> + val |= REG_FIELD_PREP(LNL_PKG_C_LATENCY_MASK, max_latency);
> + val |= REG_FIELD_PREP(LNL_ADDED_WAKE_TIME_MASK, added_wake_time);
> +
> + intel_uncore_rmw(&i915->uncore, LNL_PKG_C_LATENCY, clear, val);
> +}
> +
> static int
> skl_compute_wm(struct intel_atomic_state *state)
> {
> struct intel_crtc *crtc;
> struct intel_crtc_state __maybe_unused *new_crtc_state;
> int ret, i;
> + bool vrr_enabled = false;
>
> for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
> ret = skl_build_pipe_wm(state, crtc);
> @@ -2934,8 +2979,13 @@ skl_compute_wm(struct intel_atomic_state *state)
> ret = skl_wm_add_affected_planes(state, crtc);
> if (ret)
> return ret;
> +
> + if (new_crtc_state->vrr.enable)
> + vrr_enabled = true;
> }
>
> + skl_program_dpkgc_latency(to_i915(state->base.dev), vrr_enabled);
> +
> skl_print_wm_changes(state);
>
> return 0;
> @@ -3731,11 +3781,11 @@ void skl_watermark_debugfs_register(struct drm_i915_private *i915)
> &intel_sagv_status_fops);
> }
>
> -unsigned int skl_watermark_max_latency(struct drm_i915_private *i915)
> +unsigned int skl_watermark_max_latency(struct drm_i915_private *i915, int initial_wm_level)
> {
> int level;
>
> - for (level = i915->display.wm.num_levels - 1; level >= 0; level--) {
> + for (level = i915->display.wm.num_levels - 1; level >= initial_wm_level; level--) {
> unsigned int latency = skl_wm_latency(i915, level, NULL);
>
> if (latency)
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.h
> b/drivers/gpu/drm/i915/display/skl_watermark.h
> index fb0da36fd3ec..e3d1d74a7b17 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.h
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.h
> @@ -46,8 +46,8 @@ void skl_watermark_ipc_update(struct drm_i915_private *i915);
> bool skl_watermark_ipc_enabled(struct drm_i915_private *i915);
> void skl_watermark_debugfs_register(struct drm_i915_private *i915);
>
> -unsigned int skl_watermark_max_latency(struct drm_i915_private *i915);
> -
> +unsigned int skl_watermark_max_latency(struct drm_i915_private *i915,
> + int initial_wm_level);
> void skl_wm_init(struct drm_i915_private *i915);
>
> struct intel_dbuf_state {
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✓ Fi.CI.IGT: success for Program Deep PKG_C_LATENCY register (rev4)
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
` (13 preceding siblings ...)
2024-02-19 9:19 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-02-20 11:22 ` Patchwork
14 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2024-02-20 11:22 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 69280 bytes --]
== Series Details ==
Series: Program Deep PKG_C_LATENCY register (rev4)
URL : https://patchwork.freedesktop.org/series/129407/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14288_full -> Patchwork_129407v4_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
Additional (1): shard-glk-0
Missing (1): pig-kbl-iris
Known issues
------------
Here are the changes found in Patchwork_129407v4_full that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- shard-rkl: ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [FAIL][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24]) ([i915#8293]) -> ([PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-2/boot.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-2/boot.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-2/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-3/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-3/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-3/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-3/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-3/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-6/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-6/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#8411])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][51] ([i915#10288])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@api_intel_bb@render-ccs.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#8414]) +12 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@virtual-busy:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8414])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@drm_fdinfo@virtual-busy.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3555] / [i915#9323])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][55] -> [INCOMPLETE][56] ([i915#7297])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][57] -> [FAIL][58] ([i915#6268])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][59] ([fdo#109314])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_ctx_param@set-priority-not-supported.html
- shard-dg2: NOTRUN -> [SKIP][60] ([fdo#109314])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#8555]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8555])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#1099])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb7/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#280])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][65] ([i915#7975] / [i915#8213])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/igt@gem_eio@hibernate.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#6344])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][67] ([i915#9606])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3539] / [i915#4852]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][69] -> [FAIL][70] ([i915#2842]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [PASS][71] -> [FAIL][72] ([i915#2842])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3539])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@gem_exec_fair@basic-pace-solo.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4473])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][75] -> [FAIL][76] ([i915#2842])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-rkl: NOTRUN -> [SKIP][77] ([fdo#109283])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3281]) +12 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3281]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4537] / [i915#4812])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4860])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][82] -> [TIMEOUT][83] ([i915#5493])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4613])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4077]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@hang:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4077]) +15 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_mmap_gtt@hang.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4083]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@read:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4083])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#3282])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3282]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pwrite@basic-exhaustion:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3282])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#4270])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4270])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#4270])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190]) +9 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8428])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4885])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4880]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gen7_exec_parse@basic-offset:
- shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109289]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@basic-rejected:
- shard-rkl: NOTRUN -> [SKIP][102] ([fdo#109289])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#2856]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][105] -> [FAIL][106] ([i915#3591])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][107] -> [INCOMPLETE][108] ([i915#10137] / [i915#7790])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb1/igt@i915_pm_rps@reset.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb2/igt@i915_pm_rps@reset.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4387])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8437])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][111] ([fdo#109302])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3:
- shard-dg1: [PASS][113] -> [FAIL][114] ([i915#2521])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#8709]) +11 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#8709]) +7 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#8709]) +11 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#6228])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][121] ([fdo#111614]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][122] ([fdo#111614] / [i915#3638])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#111614]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][124] -> [FAIL][125] ([i915#3743]) +1 other test fail
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +9 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][127] ([fdo#111615]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][128] ([fdo#110723]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354] / [i915#6095]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_ccs@pipe-a-random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +8 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#5354]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#7828]) +7 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@gamma:
- shard-mtlp: NOTRUN -> [SKIP][133] ([fdo#111827])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_chamelium_color@gamma.html
- shard-dg2: NOTRUN -> [SKIP][134] ([fdo#111827]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#7828]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#7828]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#7118] / [i915#9424]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3555] / [i915#6944] / [i915#9424])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-snb: NOTRUN -> [SKIP][139] ([fdo#109271]) +42 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb5/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#3359])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#8814])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3555])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#3555]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3359])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#8814])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274] / [i915#5354]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#9809])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][148] -> [FAIL][149] ([i915#2346])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4103] / [i915#4213])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-snb: [PASS][151] -> [DMESG-WARN][152] ([i915#10166])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb5/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb1/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#9833])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][154] ([fdo#109271])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-glk2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#1257])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#3840])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#3840] / [i915#9053])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#3840] / [i915#9053])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#1839])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#9337])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-rkl: NOTRUN -> [SKIP][161] ([fdo#111825]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#8381])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#8381])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-rkl: NOTRUN -> [SKIP][164] ([fdo#111767] / [fdo#111825])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3637]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][166] ([fdo#109274]) +7 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#2672]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#2672])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#2672]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: NOTRUN -> [SKIP][170] ([fdo#109285])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#8708]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#5354]) +74 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][173] ([fdo#111825] / [i915#1825]) +7 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-dg2: NOTRUN -> [FAIL][174] ([i915#6880])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3023]) +7 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#1825]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#9766])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#8708]) +15 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3458]) +15 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][180] ([fdo#111767] / [i915#5354]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([fdo#111767] / [i915#1825])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8228])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_hdr@static-toggle.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#4816])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#109289])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][186] -> [INCOMPLETE][187] ([i915#10292])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-2.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-6/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8821])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_plane_lowres@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#8821])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8821])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109274] / [i915#5354] / [i915#9423])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#6953] / [i915#9423])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][193] ([i915#8292])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#9423]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#9423]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#5176] / [i915#9423]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#9423]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#5235]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#5235])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#5235]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#5235] / [i915#9423]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#5235]) +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#10139])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#9685]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][206] -> [SKIP][207] ([i915#4281])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#9519])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][209] -> [SKIP][210] ([i915#9519])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][211] -> [SKIP][212] ([i915#9519]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#9683])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9683]) +3 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#4348])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_rotation_crc@bad-tiling:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#4235]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_rotation_crc@bad-tiling.html
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#4235]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8809])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [PASS][219] -> [FAIL][220] ([i915#9196]) +1 other test fail
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
- shard-rkl: NOTRUN -> [FAIL][221] ([i915#9196])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#2437] / [i915#9412])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#2437])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#2437] / [i915#9412])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#2437] / [i915#9412])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#2436])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#7387])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#8516])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#3291] / [i915#3708])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3708])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][231] ([fdo#109295] / [i915#3708])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@prime_vgem@fence-write-hang.html
* igt@runner@aborted:
- shard-glk: NOTRUN -> [FAIL][232] ([i915#10291])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-glk1/igt@runner@aborted.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9917])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#9917])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@sriov_basic@bind-unbind-vf.html
* igt@v3d/v3d_perfmon@create-single-perfmon:
- shard-rkl: NOTRUN -> [SKIP][235] ([fdo#109315]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@v3d/v3d_perfmon@create-single-perfmon.html
* igt@v3d/v3d_perfmon@create-two-perfmon:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#2575]) +9 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@v3d/v3d_perfmon@create-two-perfmon.html
* igt@v3d/v3d_submit_csd@bad-flag:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2575]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@v3d/v3d_submit_csd@bad-flag.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#7711]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-6/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#7711]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-2/igt@vc4/vc4_wait_bo@bad-pad.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#7711]) +8 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][241] ([i915#7742]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_eio@kms:
- shard-dg1: [FAIL][243] ([i915#5784]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-18/igt@gem_eio@kms.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [FAIL][245] ([i915#2842]) -> [PASS][246] +2 other tests pass
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-8/igt@gem_exec_fair@basic-none-share@rcs0.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][247] ([i915#2842]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][249] ([i915#5493]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][251] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][253] ([i915#3591]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [DMESG-FAIL][255] ([i915#10010]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/igt@i915_selftest@live@gt_pm.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/igt@i915_selftest@live@gt_pm.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][257] ([i915#3743]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-snb: [DMESG-WARN][259] ([i915#10166]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb1/igt@kms_cursor_legacy@torture-move@pipe-a.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-snb2/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
- shard-dg2: [FAIL][261] ([i915#6880]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][263] ([i915#9519]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][265] ([i915#9519]) -> [PASS][266] +1 other test pass
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [ABORT][267] ([i915#9618]) -> [INCOMPLETE][268] ([i915#10137] / [i915#9618])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-tglu: [FAIL][269] ([i915#3591]) -> [WARN][270] ([i915#2681])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-tglu: [WARN][271] ([i915#2681]) -> [FAIL][272] ([i915#3591])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][273] ([fdo#110189] / [i915#3955]) -> [SKIP][274] ([i915#3955])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][275] ([i915#3361]) -> [SKIP][276] ([i915#4281])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: [SKIP][277] ([fdo#109289]) -> [SKIP][278] ([fdo#109289] / [i915#7387])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-mtlp-1/igt@perf@gen8-unprivileged-single-ctx-counters.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-mtlp-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-dg2: [SKIP][279] ([i915#2436]) -> [SKIP][280] ([i915#2436] / [i915#7387])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-10/igt@perf@gen8-unprivileged-single-ctx-counters.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/shard-dg2-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#10010]: https://gitlab.freedesktop.org/drm/intel/issues/10010
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#10288]: https://gitlab.freedesktop.org/drm/intel/issues/10288
[i915#10291]: https://gitlab.freedesktop.org/drm/intel/issues/10291
[i915#10292]: https://gitlab.freedesktop.org/drm/intel/issues/10292
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
Build changes
-------------
* Linux: CI_DRM_14288 -> Patchwork_129407v4
CI-20190529: 20190529
CI_DRM_14288: cb7db7997fcacd6792fd2fd6e9e93309a408587a @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7716: 7716
Patchwork_129407v4: cb7db7997fcacd6792fd2fd6e9e93309a408587a @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129407v4/index.html
[-- Attachment #2: Type: text/html, Size: 83005 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
end of thread, other threads:[~2024-02-20 11:22 UTC | newest]
Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-01 8:51 [PATCH 0/2] Program Deep PKG_C_LATENCY register Suraj Kandpal
2024-02-01 8:51 ` [PATCH 1/2] drm/i915/lnl: Add pkgc related register Suraj Kandpal
2024-02-02 7:37 ` Borah, Chaitanya Kumar
2024-02-07 10:46 ` Govindapillai, Vinod
2024-02-01 8:51 ` [PATCH 2/2] drm/i915/lnl: Program PKGC_LATENCY register Suraj Kandpal
2024-02-05 7:55 ` Borah, Chaitanya Kumar
2024-02-05 8:01 ` Suraj Kandpal
2024-02-05 10:19 ` Jani Nikula
2024-02-05 17:22 ` Kandpal, Suraj
2024-02-08 8:59 ` Jani Nikula
2024-02-07 11:21 ` Govindapillai, Vinod
2024-02-13 6:28 ` Suraj Kandpal
2024-02-14 10:43 ` Govindapillai, Vinod
2024-02-19 6:36 ` Suraj Kandpal
2024-02-19 9:23 ` Govindapillai, Vinod
2024-02-01 16:36 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register Patchwork
2024-02-01 19:55 ` ✓ Fi.CI.BAT: success " Patchwork
2024-02-01 21:56 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-02-05 9:47 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev2) Patchwork
2024-02-05 10:01 ` ✓ Fi.CI.BAT: success " Patchwork
2024-02-05 12:37 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-02-13 7:34 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev3) Patchwork
2024-02-13 7:48 ` ✓ Fi.CI.BAT: success " Patchwork
2024-02-13 9:25 ` ✓ Fi.CI.IGT: " Patchwork
2024-02-19 7:21 ` ✗ Fi.CI.SPARSE: warning for Program Deep PKG_C_LATENCY register (rev4) Patchwork
2024-02-19 7:34 ` ✓ Fi.CI.BAT: success " Patchwork
2024-02-19 9:19 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-02-20 11:22 ` ✓ Fi.CI.IGT: success " Patchwork
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.