* [PATCH i-g-t v2 0/2] Extend gpgpu fill support to XE3P
@ 2026-05-06 6:55 Zbigniew Kempczyński
2026-05-06 6:55 ` [PATCH i-g-t v2 1/2] lib/gpgpu_fill: Add support for xe3p gpgpu fill Zbigniew Kempczyński
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2026-05-06 6:55 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Priyanka Dandamudi, Andrzej Hajda
Add pipeline + shader for XE3P and extend test with 4x4 position.
Cc: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
CC: Andrzej Hajda <andrzej.hajda@intel.com>
Zbigniew Kempczyński (2):
lib/gpgpu_fill: Add support for xe3p gpgpu fill
tests/xe_gpgpu_fill: Add subtest with 4x4 position for XE3P
lib/gpgpu_fill.c | 117 ++++++++++++++++++++++++++-
lib/gpgpu_fill.c.gen.iga64_codes.c | 46 ++++++++++-
lib/gpgpu_fill.h | 8 ++
lib/gpgpu_shader.c | 6 +-
lib/gpgpu_shader.c.gen.iga64_codes.c | 6 +-
lib/gpu_cmds.c | 96 ++++++++++++++++++----
lib/gpu_cmds.h | 16 ++++
lib/intel_batchbuffer.c | 4 +-
tests/intel/xe_gpgpu_fill.c | 11 +++
9 files changed, 288 insertions(+), 22 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 1/2] lib/gpgpu_fill: Add support for xe3p gpgpu fill
2026-05-06 6:55 [PATCH i-g-t v2 0/2] Extend gpgpu fill support to XE3P Zbigniew Kempczyński
@ 2026-05-06 6:55 ` Zbigniew Kempczyński
2026-05-06 11:08 ` Hajda, Andrzej
2026-05-06 6:55 ` [PATCH i-g-t v2 2/2] tests/xe_gpgpu_fill: Add subtest with 4x4 position for XE3P Zbigniew Kempczyński
` (3 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Zbigniew Kempczyński @ 2026-05-06 6:55 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Priyanka Dandamudi, Andrzej Hajda
XE3P uses in non-legacy mode COMPUTE_WALKER_2 so adopt pipeline and
shader in gpgpu library to properly handle gpgpu fill.
Difference between previous platforms shaders is no surface state
is used so all geometry must be handled by the pipeline / shader
(accesses to memory are via untyped global [ugm]). Threads spawned
here are still SIMD16, but due to conditional writing to ugm memory
with 4B vector using 4x1 sizes and positions become possible.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
Cc: Andrzej Hajda <andrzej.hajda@intel.com>
---
v2: drop buffer patching and pass its offset via inline (Andrzej)
---
lib/gpgpu_fill.c | 117 ++++++++++++++++++++++++++-
lib/gpgpu_fill.c.gen.iga64_codes.c | 46 ++++++++++-
lib/gpgpu_fill.h | 8 ++
lib/gpgpu_shader.c | 6 +-
lib/gpgpu_shader.c.gen.iga64_codes.c | 6 +-
lib/gpu_cmds.c | 96 ++++++++++++++++++----
lib/gpu_cmds.h | 16 ++++
lib/intel_batchbuffer.c | 4 +-
8 files changed, 277 insertions(+), 22 deletions(-)
diff --git a/lib/gpgpu_fill.c b/lib/gpgpu_fill.c
index f83eee5f21..d4d477fd81 100644
--- a/lib/gpgpu_fill.c
+++ b/lib/gpgpu_fill.c
@@ -26,13 +26,14 @@
*/
#include <i915_drm.h>
-
+#include <ioctl_wrappers.h>
#include "intel_reg.h"
#include "drmtest.h"
#include "gpgpu_fill.h"
#include "gpgpu_shader.h"
#include "gpu_cmds.h"
+#include "xe/xe_util.h"
/* lib/i915/shaders/gpgpu/gpgpu_fill.gxa */
static const uint32_t gen7_gpgpu_kernel[][4] = {
@@ -328,6 +329,79 @@ mov (1|M0) r4.14<1>:w 0xF:w \n\
send.tgm (16|M0) null r4 null 0x0 0x64000007 \n\
#endif \n\
");
+ gpgpu_shader__eot(kernel);
+ return kernel;
+}
+
+static struct gpgpu_shader *__xe3p_gpgpu_kernel(int xe)
+{
+ struct gpgpu_shader *kernel = gpgpu_shader_create(xe);
+
+ emit_iga64_code(kernel, xe3p_gpgpu_fill, R"(
+#define RX r0.1
+#define RY r0.6
+#define COLOR r1.0
+#define SURFWIDTH r1.1
+#define SURFHEIGHT r1.2
+#define WIDTH r1.3
+#define HEIGHT r1.4
+#define XPOS r1.5
+#define YPOS r1.6
+#define ADDR_BO_LOW r1.7
+#define ADDR_BO_HIGH r1.8
+#define OFFSET r3.0
+#define XOFFSET r3.1
+#define YOFFSET r3.2
+#define XEND r3.3
+#define XCURRENT r3.4
+#define TMP r3.7
+#define ADDR_LO r4.0
+#if GEN_VER >= 3500
+(W) add (1) XEND<1>:ud XPOS:ud WIDTH:ud
+(W) mov (1) OFFSET<1>:ud 0x0:ud
+
+(W) shl (1) XOFFSET<1>:ud RX:ud 0x4:ud
+(W) add (1) XOFFSET<1>:ud XOFFSET:ud XPOS:ud
+(W) mov (1) XCURRENT<1>:ud XOFFSET:ud
+
+(W) add (1) TMP<1>:ud RY:ud YPOS:ud
+(W) mul (1) YOFFSET<1>:ud TMP:ud SURFWIDTH:ud
+(W) add (1) OFFSET<1>:ud XOFFSET:ud YOFFSET:ud
+
+// Set base address with scalar register
+(W) add (1) ADDR_LO<1>:ud OFFSET:ud ADDR_BO_LOW:ud
+(W) mov (1) s0.0<1>:ud ADDR_LO:ud
+(W) mov (1) s0.1<1>:ud ADDR_BO_HIGH:ud
+
+// color
+(W) mov (4) r20.0<1>:ub COLOR:ub
+
+// A64 offset
+(W) mov (8) r30.0<1>:uq 0x0:uq
+
+//dword: 0
+(W) cmp (1) (lt)f0.0 null:ud XCURRENT:ud XEND:ud
+(W&f0.0)sendg.ugm (1) null r30:1 r20:1 s0.0 0x29404
+//dword: 1
+(W) add (1) XCURRENT<1>:ud XCURRENT:ud 4:ud
+(W) add (1) ADDR_LO<1>:ud ADDR_LO:ud 0x4:ud
+(W) mov (1) s0.0<1>:ud ADDR_LO:ud
+(W) cmp (1) (lt)f0.0 null:ud XCURRENT:ud XEND:ud
+(W&f0.0)sendg.ugm (1) null r30:1 r20:1 s0.0 0x29404
+//dword: 2
+(W) add (1) XCURRENT<1>:ud XCURRENT:ud 4:ud
+(W) add (1) ADDR_LO<1>:ud ADDR_LO:ud 0x4:ud
+(W) mov (1) s0.0<1>:ud ADDR_LO:ud
+(W) cmp (1) (lt)f0.0 null:ud XCURRENT:ud XEND:ud
+(W&f0.0)sendg.ugm (1) null r30:1 r20:1 s0.0 0x29404
+//dword: 3
+(W) add (1) XCURRENT<1>:ud XCURRENT:ud 4:ud
+(W) add (1) ADDR_LO<1>:ud ADDR_LO:ud 0x4:ud
+(W) mov (1) s0.0<1>:ud ADDR_LO:ud
+(W) cmp (1) (lt)f0.0 null:ud XCURRENT:ud XEND:ud
+(W&f0.0)sendg.ugm (1) null r30:1 r20:1 s0.0 0x29404
+#endif
+)");
gpgpu_shader__eot(kernel);
return kernel;
@@ -373,6 +447,47 @@ void xehp_gpgpu_fillfunc(int i915,
intel_bb_destroy(ibb);
}
+void xe3p_gpgpu_fillfunc(int fd,
+ struct intel_buf *buf,
+ unsigned int x, unsigned int y,
+ unsigned int width, unsigned int height,
+ uint8_t color)
+{
+ struct intel_bb *ibb;
+ struct gpgpu_shader *kernel;
+ struct xe3p_interface_descriptor_data idd;
+
+ ibb = intel_bb_create(fd, PAGE_SIZE);
+ intel_bb_add_intel_buf(ibb, buf, true);
+
+ intel_bb_ptr_set(ibb, BATCH_STATE_SPLIT);
+
+ kernel = __xe3p_gpgpu_kernel(fd);
+ xe3p_fill_interface_descriptor(ibb, buf, kernel->instr,
+ kernel->size * 4, &idd);
+ gpgpu_shader_destroy(kernel);
+
+ intel_bb_ptr_set(ibb, 0);
+
+ /* GPGPU pipeline */
+ intel_bb_out(ibb, GEN7_PIPELINE_SELECT | GEN9_PIPELINE_SELECTION_MASK |
+ PIPELINE_SELECT_GPGPU);
+ xe3p_emit_state_base_address(ibb);
+ xehp_emit_state_compute_mode(ibb, false);
+ xe3p_emit_fill_compute_walk2(ibb, buf->width * buf->bpp / 8, buf->height,
+ xe_canonical_va(fd, buf->addr.offset),
+ x, y, width, height, &idd, color);
+
+ intel_bb_out(ibb, MI_BATCH_BUFFER_END);
+ intel_bb_ptr_align(ibb, 32);
+
+ intel_bb_exec(ibb, intel_bb_offset(ibb),
+ I915_EXEC_RENDER | I915_EXEC_NO_RELOC, true);
+
+ intel_bb_destroy(ibb);
+}
+
+
void gen9_gpgpu_fillfunc(int i915,
struct intel_buf *buf,
unsigned x, unsigned y,
diff --git a/lib/gpgpu_fill.c.gen.iga64_codes.c b/lib/gpgpu_fill.c.gen.iga64_codes.c
index 400ff7b18a..8c61ce9984 100644
--- a/lib/gpgpu_fill.c.gen.iga64_codes.c
+++ b/lib/gpgpu_fill.c.gen.iga64_codes.c
@@ -3,7 +3,51 @@
#include "gpgpu_shader.h"
-#define MD5_SUM_IGA64_ASMS ebaa9e23021939d874c576c7cea482bf
+#define MD5_SUM_IGA64_ASMS a2e53c9b23d1d1bcb0e2271f8b47c7c7
+
+struct iga64_template const iga64_code_xe3p_gpgpu_fill[] = {
+ { .gen_ver = 3500, .size = 144, .code = (const uint32_t []) {
+ 0x80000040, 0x03350220, 0x02000154, 0x00100134,
+ 0x80000061, 0x03054220, 0x00000000, 0x00000000,
+ 0x80000069, 0x03158220, 0x02000014, 0x00000004,
+ 0x80001940, 0x03150220, 0x02000314, 0x00100154,
+ 0x80001961, 0x03450220, 0x00000314, 0x00000000,
+ 0x80000040, 0x03750220, 0x02000064, 0x00100164,
+ 0x80001941, 0x03250220, 0x02000374, 0x00100114,
+ 0x80001940, 0x03050220, 0x02000314, 0x00100324,
+ 0x80001940, 0x04050220, 0x02000304, 0x00100174,
+ 0x80001961, 0x60010220, 0x00000404, 0x00000000,
+ 0x80000061, 0x60110220, 0x00000184, 0x00000000,
+ 0x80080061, 0x14050000, 0x00000104, 0x00000000,
+ 0x800c0061, 0x1e054330, 0x00000000, 0x00000000,
+ 0x80001f70, 0x00010220, 0x52000344, 0x00100334,
+ 0x84032033, 0x00000004, 0xf0021e0c, 0x9404140c,
+ 0x80000040, 0x03458220, 0x02000344, 0x00000004,
+ 0x80000040, 0x04058220, 0x02000404, 0x00000004,
+ 0x8000a001, 0x00010000, 0x00000000, 0x00000000,
+ 0x80001961, 0x60010220, 0x00000404, 0x00000000,
+ 0x80001b70, 0x00010220, 0x52000344, 0x00100334,
+ 0x84032133, 0x00000004, 0xf0021e0c, 0x9404140c,
+ 0x80000040, 0x03458220, 0x02000344, 0x00000004,
+ 0x80000040, 0x04058220, 0x02000404, 0x00000004,
+ 0x8000a101, 0x00010000, 0x00000000, 0x00000000,
+ 0x80001961, 0x60010220, 0x00000404, 0x00000000,
+ 0x80001b70, 0x00010220, 0x52000344, 0x00100334,
+ 0x84032233, 0x00000004, 0xf0021e0c, 0x9404140c,
+ 0x80000040, 0x03458220, 0x02000344, 0x00000004,
+ 0x80000040, 0x04058220, 0x02000404, 0x00000004,
+ 0x8000a201, 0x00010000, 0x00000000, 0x00000000,
+ 0x80001961, 0x60010220, 0x00000404, 0x00000000,
+ 0x80001b70, 0x00010220, 0x52000344, 0x00100334,
+ 0x84032333, 0x00000004, 0xf0021e0c, 0x9404140c,
+ 0x80000001, 0x00010000, 0x20000000, 0x00000000,
+ 0x80000001, 0x00010000, 0x30000000, 0x00000000,
+ 0x80000901, 0x00010000, 0x00000000, 0x00000000,
+ }},
+ { .gen_ver = 0, .size = 0, .code = (const uint32_t []) {
+
+ }}
+};
struct iga64_template const iga64_code_gpgpu_fill[] = {
{ .gen_ver = 2000, .size = 44, .code = (const uint32_t []) {
diff --git a/lib/gpgpu_fill.h b/lib/gpgpu_fill.h
index a483859e5e..96d291c987 100644
--- a/lib/gpgpu_fill.h
+++ b/lib/gpgpu_fill.h
@@ -68,4 +68,12 @@ xehp_gpgpu_fillfunc(int i915,
unsigned int width, unsigned int height,
uint8_t color);
+void
+xe3p_gpgpu_fillfunc(int fd,
+ struct intel_buf *dst,
+ unsigned int x, unsigned int y,
+ unsigned int width, unsigned int height,
+ uint8_t color);
+
+
#endif /* GPGPU_FILL_H */
diff --git a/lib/gpgpu_shader.c b/lib/gpgpu_shader.c
index ffa357eeb1..ccab4d4b0f 100644
--- a/lib/gpgpu_shader.c
+++ b/lib/gpgpu_shader.c
@@ -599,8 +599,12 @@ void gpgpu_shader__eot(struct gpgpu_shader *shdr)
(W) mov (8|M0) r112.0<1>:ud r0.0<8;8,1>:ud \n\
#if GEN_VER < 1250 \n\
(W) send.ts (16|M0) null r112 null 0x10000000 0x02000010 {EOT,@1} \n\
-#else \n\
+ \n\
+#elif GEN_VER <= 3000 \n\
(W) send.gtwy (8|M0) null r112 src1_null 0 0x02000000 {EOT} \n\
+ \n\
+#else \n\
+(W) sendg.gtwy (1|M0) null r0:1 null:0 0x0 {EOT} \n\
#endif \n\
");
}
diff --git a/lib/gpgpu_shader.c.gen.iga64_codes.c b/lib/gpgpu_shader.c.gen.iga64_codes.c
index 59172cdfd1..064564cfb2 100644
--- a/lib/gpgpu_shader.c.gen.iga64_codes.c
+++ b/lib/gpgpu_shader.c.gen.iga64_codes.c
@@ -3,7 +3,7 @@
#include "gpgpu_shader.h"
-#define MD5_SUM_IGA64_ASMS 4311fff3bece03802f3220b7d239c33b
+#define MD5_SUM_IGA64_ASMS bd1d8e873d1021863cf0b0cde7c332ea
struct iga64_template const iga64_code_read_a64_d32[] = {
{ .gen_ver = 2000, .size = 40, .code = (const uint32_t []) {
@@ -843,6 +843,10 @@ struct iga64_template const iga64_code_jump[] = {
};
struct iga64_template const iga64_code_eot[] = {
+ { .gen_ver = 3500, .size = 8, .code = (const uint32_t []) {
+ 0x800c0061, 0x70050220, 0x00460005, 0x00000000,
+ 0x8000c033, 0x00000001, 0x3000000c, 0x00000000,
+ }},
{ .gen_ver = 2000, .size = 8, .code = (const uint32_t []) {
0x800c0061, 0x70050220, 0x00460005, 0x00000000,
0x800f2031, 0x00000004, 0x3000700c, 0x00000000,
diff --git a/lib/gpu_cmds.c b/lib/gpu_cmds.c
index 10c8bfb8dd..f7b6c8703f 100644
--- a/lib/gpu_cmds.c
+++ b/lib/gpu_cmds.c
@@ -1267,13 +1267,14 @@ xehp_emit_compute_walk(struct intel_bb *ibb,
}
}
-void
-xe3p_emit_compute_walk2(struct intel_bb *ibb,
- unsigned int x, unsigned int y,
- unsigned int width, unsigned int height,
- struct xe3p_interface_descriptor_data *pidd,
- uint32_t max_threads,
- struct xe3p_cw2_interrupt_data *intdata)
+static void
+__xe3p_emit_compute_walk2(struct intel_bb *ibb,
+ unsigned int x, unsigned int y,
+ unsigned int width, unsigned int height,
+ struct xe3p_interface_descriptor_data *pidd,
+ uint32_t max_threads,
+ struct xe3p_cw2_interrupt_data *intdata,
+ struct xe3p_cw2_gpgpu_fill_data *filldata)
{
/*
* Max Threads represent range: [1, 2^16-1],
@@ -1282,6 +1283,14 @@ xe3p_emit_compute_walk2(struct intel_bb *ibb,
const uint32_t MAX_THREADS = (1 << 16) - 1;
uint32_t x_dim, y_dim, mask, max;
+ if (filldata) {
+ if (width + x > filldata->buf_width)
+ width = filldata->buf_width - x;
+
+ if (height + y > filldata->buf_height)
+ height = filldata->buf_height - y;
+ }
+
/*
* Simply do SIMD16 based dispatch, so every thread uses
* SIMD16 channels.
@@ -1294,7 +1303,7 @@ xe3p_emit_compute_walk2(struct intel_bb *ibb,
* thread group Y = height;
*/
x_dim = (x + width + 15) / 16;
- y_dim = y + height;
+ y_dim = height + y * (filldata ? 0 : 1);
mask = (x + width) & 15;
if (mask == 0)
@@ -1332,9 +1341,15 @@ xe3p_emit_compute_walk2(struct intel_bb *ibb,
intel_bb_out(ibb, 1); //dw8
/* Thread Group ID Starting X, Y, Z */
- intel_bb_out(ibb, x / 16); //dw9
- intel_bb_out(ibb, y); //dw10
- intel_bb_out(ibb, 0); //dw11
+ if (filldata) {
+ intel_bb_out(ibb, 0); //dw9
+ intel_bb_out(ibb, 0); //dw10
+ intel_bb_out(ibb, 0); //dw11
+ } else {
+ intel_bb_out(ibb, x / 16); //dw9
+ intel_bb_out(ibb, y); //dw10
+ intel_bb_out(ibb, 0); //dw11
+ }
/* partition type / id / size */
intel_bb_out(ibb, 0); //dw12-13
@@ -1366,12 +1381,27 @@ xe3p_emit_compute_walk2(struct intel_bb *ibb,
}
}
- /* Inline data */
- /* DW31 and DW32 of Inline data will be copied into R0.14 and R0.15. */
- /* The rest of DW33 through DW46 will be copied to the following GRFs. */
- intel_bb_out(ibb, x_dim); //dw31
- for (int i = 0; i < 15; i++) { //dw32-46
- intel_bb_out(ibb, 0);
+ if (filldata) {
+ /* Inline data */
+ intel_bb_out(ibb, filldata->color); //dw31
+ intel_bb_out(ibb, filldata->buf_width); //dw32
+ intel_bb_out(ibb, filldata->buf_height); //dw33
+ intel_bb_out(ibb, width); //dw34
+ intel_bb_out(ibb, height); //dw35
+ intel_bb_out(ibb, x); //dw36
+ intel_bb_out(ibb, y); //dw37
+ intel_bb_out(ibb, filldata->buf_addr); //dw38
+ intel_bb_out(ibb, filldata->buf_addr >> 32); //dw39
+ for (int i = 0; i < 7; i++) //dw40-46
+ intel_bb_out(ibb, 0x0);
+
+ } else {
+ /* Inline data */
+ /* DW31 and DW32 of Inline data will be copied into R0.14 and R0.15. */
+ /* The rest of DW33 through DW46 will be copied to the following GRFs. */
+ intel_bb_out(ibb, x_dim); //dw31
+ for (int i = 0; i < 15; i++) //dw32-46
+ intel_bb_out(ibb, 0);
}
/* Post Sync command payload 1 */
@@ -1392,3 +1422,35 @@ xe3p_emit_compute_walk2(struct intel_bb *ibb,
/* Preempt CS Interrupt Vector: Saved by HW on a TG preemption */
intel_bb_out(ibb, 0); //dw62
}
+
+void
+xe3p_emit_compute_walk2(struct intel_bb *ibb,
+ unsigned int x, unsigned int y,
+ unsigned int width, unsigned int height,
+ struct xe3p_interface_descriptor_data *pidd,
+ uint32_t max_threads,
+ struct xe3p_cw2_interrupt_data *intdata)
+{
+ __xe3p_emit_compute_walk2(ibb, x, y, width, height,
+ pidd, max_threads, intdata, NULL);
+}
+
+void
+xe3p_emit_fill_compute_walk2(struct intel_bb *ibb,
+ unsigned int buf_width, unsigned int buf_height,
+ uint64_t buf_addr,
+ unsigned int x, unsigned int y,
+ unsigned int width, unsigned int height,
+ struct xe3p_interface_descriptor_data *pidd,
+ uint8_t color)
+{
+ struct xe3p_cw2_gpgpu_fill_data filldata = {
+ .buf_width = buf_width,
+ .buf_height = buf_height,
+ .buf_addr = buf_addr,
+ .color = color,
+ };
+
+ __xe3p_emit_compute_walk2(ibb, x, y, width, height,
+ pidd, 64, NULL, &filldata);
+}
diff --git a/lib/gpu_cmds.h b/lib/gpu_cmds.h
index b3bfb137b0..b9895801e8 100644
--- a/lib/gpu_cmds.h
+++ b/lib/gpu_cmds.h
@@ -45,6 +45,13 @@ struct xe3p_cw2_interrupt_data {
uint64_t post_sync_val;
};
+struct xe3p_cw2_gpgpu_fill_data {
+ uint32_t buf_width;
+ uint32_t buf_height;
+ uint64_t buf_addr;
+ uint8_t color;
+};
+
uint32_t
gen7_fill_curbe_buffer_data(struct intel_bb *ibb, uint8_t color);
@@ -168,4 +175,13 @@ xe3p_emit_compute_walk2(struct intel_bb *ibb,
uint32_t max_threads,
struct xe3p_cw2_interrupt_data *intdata);
+void
+xe3p_emit_fill_compute_walk2(struct intel_bb *ibb,
+ unsigned int buf_width, unsigned int buf_height,
+ uint64_t buf_addr,
+ unsigned int x, unsigned int y,
+ unsigned int width, unsigned int height,
+ struct xe3p_interface_descriptor_data *pidd,
+ uint8_t color);
+
#endif /* GPU_CMDS_H */
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index b095065746..189a411968 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -769,7 +769,9 @@ igt_fillfunc_t igt_get_gpgpu_fillfunc(int devid)
{
igt_fillfunc_t fill = NULL;
- if (intel_graphics_ver(devid) >= IP_VER(12, 50))
+ if (intel_graphics_ver(devid) >= IP_VER(35, 0))
+ fill = xe3p_gpgpu_fillfunc;
+ else if (intel_graphics_ver(devid) >= IP_VER(12, 50))
fill = xehp_gpgpu_fillfunc;
else if (IS_GEN12(devid))
fill = gen12_gpgpu_fillfunc;
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 2/2] tests/xe_gpgpu_fill: Add subtest with 4x4 position for XE3P
2026-05-06 6:55 [PATCH i-g-t v2 0/2] Extend gpgpu fill support to XE3P Zbigniew Kempczyński
2026-05-06 6:55 ` [PATCH i-g-t v2 1/2] lib/gpgpu_fill: Add support for xe3p gpgpu fill Zbigniew Kempczyński
@ 2026-05-06 6:55 ` Zbigniew Kempczyński
2026-05-06 7:38 ` ✗ i915.CI.BAT: failure for Extend gpgpu fill support to XE3P (rev2) Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2026-05-06 6:55 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Priyanka Dandamudi, Andrzej Hajda
Gpgpu pipeline for XE3P allows passing x which is multiplied of 4
(y may be incremented by 1). Exercise this is working properly
on platforms like NVLP and CRI.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
Cc: Andrzej Hajda <andrzej.hajda@intel.com>
---
tests/intel/xe_gpgpu_fill.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/tests/intel/xe_gpgpu_fill.c b/tests/intel/xe_gpgpu_fill.c
index ce6222ddd7..9ab8b51e78 100644
--- a/tests/intel/xe_gpgpu_fill.c
+++ b/tests/intel/xe_gpgpu_fill.c
@@ -91,6 +91,8 @@ static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color)
* SUBTEST: offset-16x16
* Description: run gpgpu fill with <x,y> start position == <16,16>
*
+ * SUBTEST: offset-4x4
+ * Description: run gpgpu fillwith <x,y> start position == <4,4>
*/
static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region,
@@ -201,6 +203,15 @@ int igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
surfheight / 2);
}
+ igt_subtest("offset-4x4") {
+ igt_require(intel_graphics_ver(data.devid) >= IP_VER(35, 0));
+ gpgpu_fill(&data, fill_fn, 0,
+ surfwidth, surfheight,
+ 4, 4,
+ surfwidth / 2,
+ surfheight / 2);
+ }
+
igt_fixture() {
buf_ops_destroy(data.bops);
drm_close_driver(data.drm_fd);
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✗ i915.CI.BAT: failure for Extend gpgpu fill support to XE3P (rev2)
2026-05-06 6:55 [PATCH i-g-t v2 0/2] Extend gpgpu fill support to XE3P Zbigniew Kempczyński
2026-05-06 6:55 ` [PATCH i-g-t v2 1/2] lib/gpgpu_fill: Add support for xe3p gpgpu fill Zbigniew Kempczyński
2026-05-06 6:55 ` [PATCH i-g-t v2 2/2] tests/xe_gpgpu_fill: Add subtest with 4x4 position for XE3P Zbigniew Kempczyński
@ 2026-05-06 7:38 ` Patchwork
2026-05-06 7:58 ` ✓ Xe.CI.BAT: success " Patchwork
2026-05-06 8:59 ` ✗ Xe.CI.FULL: failure " Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-05-06 7:38 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3515 bytes --]
== Series Details ==
Series: Extend gpgpu fill support to XE3P (rev2)
URL : https://patchwork.freedesktop.org/series/165308/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8888 -> IGTPW_15107
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15107 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15107, 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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15107/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15107:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@guc:
- bat-twl-2: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/bat-twl-2/igt@i915_selftest@live@guc.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15107/bat-twl-2/igt@i915_selftest@live@guc.html
Known issues
------------
Here are the changes found in IGTPW_15107 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/bat-arls-5/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15107/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/bat-arls-6/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15107/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [PASS][7] -> [FAIL][8] ([i915#14867])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15107/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-dg2-8: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/bat-dg2-8/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15107/bat-dg2-8/igt@i915_selftest@live.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8888 -> IGTPW_15107
CI-20190529: 20190529
CI_DRM_18417: 835de80ce9b34b618442ba91483170201b50b553 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15107: ee35bc09086290ba5522bd7c791d5285105bdf7c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8888: 77f31f709ee65bb20ad7d64d8aa012ba7688b112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15107/index.html
[-- Attachment #2: Type: text/html, Size: 4362 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for Extend gpgpu fill support to XE3P (rev2)
2026-05-06 6:55 [PATCH i-g-t v2 0/2] Extend gpgpu fill support to XE3P Zbigniew Kempczyński
` (2 preceding siblings ...)
2026-05-06 7:38 ` ✗ i915.CI.BAT: failure for Extend gpgpu fill support to XE3P (rev2) Patchwork
@ 2026-05-06 7:58 ` Patchwork
2026-05-06 8:59 ` ✗ Xe.CI.FULL: failure " Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-05-06 7:58 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2552 bytes --]
== Series Details ==
Series: Extend gpgpu fill support to XE3P (rev2)
URL : https://patchwork.freedesktop.org/series/165308/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8888_BAT -> XEIGTPW_15107_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15107_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@basic:
- bat-lnl-2: [SKIP][5] ([Intel XE#2235] / [Intel XE#2548]) -> [SKIP][6] ([Intel XE#2235] / [Intel XE#2548] / [Intel XE#7779])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
[Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779
Build changes
-------------
* IGT: IGT_8888 -> IGTPW_15107
IGTPW_15107: ee35bc09086290ba5522bd7c791d5285105bdf7c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8888: 77f31f709ee65bb20ad7d64d8aa012ba7688b112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4990-835de80ce9b34b618442ba91483170201b50b553: 835de80ce9b34b618442ba91483170201b50b553
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/index.html
[-- Attachment #2: Type: text/html, Size: 3358 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.FULL: failure for Extend gpgpu fill support to XE3P (rev2)
2026-05-06 6:55 [PATCH i-g-t v2 0/2] Extend gpgpu fill support to XE3P Zbigniew Kempczyński
` (3 preceding siblings ...)
2026-05-06 7:58 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2026-05-06 8:59 ` Patchwork
2026-05-06 13:09 ` Zbigniew Kempczyński
4 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2026-05-06 8:59 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 45876 bytes --]
== Series Details ==
Series: Extend gpgpu fill support to XE3P (rev2)
URL : https://patchwork.freedesktop.org/series/165308/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8888_FULL -> XEIGTPW_15107_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15107_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15107_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15107_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][1] +5 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [PASS][2] -> [SKIP][3] +19 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@xe_gpgpu_fill@offset-4x4 (NEW):
- shard-lnl: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@xe_gpgpu_fill@offset-4x4.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-2/igt@xe_wedged@wedged-mode-toggle.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-9/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][7] ([Intel XE#2311]) -> [SKIP][8] +10 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-4/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-shrfb-msflip-blt:
- shard-lnl: [SKIP][9] ([Intel XE#7905]) -> [ABORT][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-shrfb-msflip-blt.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][11] ([Intel XE#2313]) -> [SKIP][12] +12 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-render.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-render.html
New tests
---------
New tests have been introduced between XEIGT_8888_FULL and XEIGTPW_15107_FULL:
### New IGT tests (1) ###
* igt@xe_gpgpu_fill@offset-4x4:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_15107_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][13] -> [FAIL][14] ([Intel XE#7445])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1407])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2327]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7679]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#7676])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2887])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +8 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#3432]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#3432])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252]) +6 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-1/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#373]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#6974])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6974])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1424])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#2291]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4354] / [Intel XE#5882])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2244]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp.html
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2244])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#6126] / [Intel XE#776])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2374] / [Intel XE#6127])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2316]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1421])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-5/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#2316]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7178] / [Intel XE#7349])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7178] / [Intel XE#7349]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7178] / [Intel XE#7351])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7179])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-9/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4141]) +7 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#656] / [Intel XE#7905]) +8 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6312]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#7905]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2311]) +35 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#7865]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7061]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#7061])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-3/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2313]) +31 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7061] / [Intel XE#7356])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1470] / [Intel XE#2853])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-8/igt@kms_hdmi_inject@inject-audio.html
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7308])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-9/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7283])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7283]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-9/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-4:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#599] / [Intel XE#7382]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-5/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#5021] / [Intel XE#7377])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#3307])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#7376] / [Intel XE#870])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][70] -> [FAIL][71] ([Intel XE#7340])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1489]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2893] / [Intel XE#7304])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2387] / [Intel XE#7429])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-4/igt@kms_psr@fbc-pr-primary-render.html
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7795])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#3904] / [Intel XE#7342])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-90.html
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2413])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [PASS][81] -> [SKIP][82] ([Intel XE#1435])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#6503]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-8/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1499])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-8/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#2142]) +1 other test fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_eudebug@basic-client:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#7636]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-5/igt@xe_eudebug@basic-client.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#7636]) +8 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-4/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_evict@evict-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-7/igt@xe_evict@evict-large-external-cm.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#7140])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-2/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_balancer@virtual-all-active:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#7482]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-3/igt@xe_exec_balancer@virtual-all-active.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1392]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#7136]) +5 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-7/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_fault_mode@once-multi-queue-prefetch:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#7136]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-1/igt@xe_exec_fault_mode@once-multi-queue-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-basic-smem:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#6874]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic-smem.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#6874]) +15 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-1/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html
* igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#7866]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-6/igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7138]) +5 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#7138]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-atomic-op-prefetch:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#6964])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html
* igt@xe_multigpu_svm@mgpu-migration-prefetch:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6964]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-8/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-8/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_page_reclaim@binds-full-pd:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#7793])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-7/igt@xe_page_reclaim@binds-full-pd.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#1420] / [Intel XE#7590])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2236] / [Intel XE#7590])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-2/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#4650] / [Intel XE#7347])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#4733] / [Intel XE#7417])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#944]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-9/igt@xe_query@multigpu-query-invalid-cs-cycles.html
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#944])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][114] -> [FAIL][115] ([Intel XE#6569])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-10/igt@xe_sriov_flr@flr-vfs-parallel.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-8/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_vfio@open-basic:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#7724])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-2/igt@xe_sriov_vfio@open-basic.html
* igt@xe_vm@overcommit-nonfault-vram-lr-defer:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#7892])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-4/igt@xe_vm@overcommit-nonfault-vram-lr-defer.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][118] ([Intel XE#7084]) -> [PASS][119] +1 other test pass
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][120] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][121] +1 other test pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][122] ([Intel XE#301]) -> [PASS][123] +1 other test pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][124] ([Intel XE#1503]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-bmg: [FAIL][126] ([Intel XE#5937]) -> [PASS][127] +2 other tests pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-2/igt@xe_sriov_vram@vf-access-after-resize-up.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-10/igt@xe_sriov_vram@vf-access-after-resize-up.html
#### Warnings ####
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: [FAIL][128] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][129] ([Intel XE#7642]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-9/igt@kms_content_protection@atomic-hdcp14.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-move:
- shard-lnl: [ABORT][130] -> [SKIP][131] ([Intel XE#7905])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-7/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-move.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-7/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-move.html
- shard-bmg: [ABORT][132] -> [SKIP][133] ([Intel XE#2311])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-2/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-move.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-7/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][134] ([Intel XE#4141]) -> [SKIP][135] ([Intel XE#2312]) +5 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][136] ([Intel XE#2311]) -> [SKIP][137] ([Intel XE#2312]) +11 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][138] ([Intel XE#2313]) -> [SKIP][139] ([Intel XE#2312]) +10 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: [SKIP][140] ([Intel XE#656]) -> [SKIP][141] ([Intel XE#656] / [Intel XE#7905]) +225 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][142] ([Intel XE#3544]) -> [SKIP][143] ([Intel XE#3374] / [Intel XE#3544])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: [SKIP][144] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][145] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][146] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][147] ([Intel XE#2426] / [Intel XE#5848])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
[Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8888 -> IGTPW_15107
IGTPW_15107: ee35bc09086290ba5522bd7c791d5285105bdf7c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8888: 77f31f709ee65bb20ad7d64d8aa012ba7688b112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4990-835de80ce9b34b618442ba91483170201b50b553: 835de80ce9b34b618442ba91483170201b50b553
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/index.html
[-- Attachment #2: Type: text/html, Size: 52154 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2 1/2] lib/gpgpu_fill: Add support for xe3p gpgpu fill
2026-05-06 6:55 ` [PATCH i-g-t v2 1/2] lib/gpgpu_fill: Add support for xe3p gpgpu fill Zbigniew Kempczyński
@ 2026-05-06 11:08 ` Hajda, Andrzej
0 siblings, 0 replies; 8+ messages in thread
From: Hajda, Andrzej @ 2026-05-06 11:08 UTC (permalink / raw)
To: Zbigniew Kempczyński, igt-dev; +Cc: Priyanka Dandamudi
W dniu 6.05.2026 o 08:55, Zbigniew KempczyÅski pisze:
> XE3P uses in non-legacy mode COMPUTE_WALKER_2 so adopt pipeline and
> shader in gpgpu library to properly handle gpgpu fill.
>
> Difference between previous platforms shaders is no surface state
> is used so all geometry must be handled by the pipeline / shader
> (accesses to memory are via untyped global [ugm]). Threads spawned
> here are still SIMD16, but due to conditional writing to ugm memory
> with 4B vector using 4x1 sizes and positions become possible.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
> Cc: Andrzej Hajda <andrzej.hajda@intel.com>
> ---
> v2: drop buffer patching and pass its offset via inline (Andrzej)
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
Regards
Andrzej
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ Xe.CI.FULL: failure for Extend gpgpu fill support to XE3P (rev2)
2026-05-06 8:59 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-05-06 13:09 ` Zbigniew Kempczyński
0 siblings, 0 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2026-05-06 13:09 UTC (permalink / raw)
To: igt-dev
On Wed, May 06, 2026 at 08:59:11AM +0000, Patchwork wrote:
> Patch Details
>
> Series: Extend gpgpu fill support to XE3P (rev2)
> URL: https://patchwork.freedesktop.org/series/165308/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15107/index.html
>
> CI Bug Log - changes from XEIGT_8888_FULL -> XEIGTPW_15107_FULL
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with XEIGTPW_15107_FULL absolutely need to
> be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_15107_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 (2 -> 2)
>
> No changes in participating hosts
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> XEIGTPW_15107_FULL:
>
> IGT changes
>
> Possible regressions
>
> * igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y:
>
> * shard-bmg: NOTRUN -> SKIP +5 other tests skip
> * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render:
>
> * shard-bmg: PASS -> SKIP +19 other tests skip
> * igt@xe_gpgpu_fill@offset-4x4 (NEW):
This skip is expected, test was designed to Xe3p+.
Other regressions are not related to the series.
--
Zbigniew
>
> * shard-lnl: NOTRUN -> SKIP
> * igt@xe_wedged@wedged-mode-toggle:
>
> * shard-bmg: PASS -> ABORT
>
> Warnings
>
> * igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render:
>
> * shard-bmg: SKIP (Intel XE#2311) -> SKIP +10 other tests skip
> * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-shrfb-msflip-blt:
>
> * shard-lnl: SKIP (Intel XE#7905) -> ABORT
> * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-render:
>
> * shard-bmg: SKIP (Intel XE#2313) -> SKIP +12 other tests skip
>
> New tests
>
> New tests have been introduced between XEIGT_8888_FULL and
> XEIGTPW_15107_FULL:
>
> New IGT tests (1)
>
> * igt@xe_gpgpu_fill@offset-4x4:
> * Statuses : 2 skip(s)
> * Exec time: [0.0] s
>
> Known issues
>
> Here are the changes found in XEIGTPW_15107_FULL that come from known
> issues:
>
> IGT changes
>
> Issues hit
>
> * igt@intel_hwmon@hwmon-write:
>
> * shard-bmg: PASS -> FAIL (Intel XE#7445)
> * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1407)
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2327) +1 other test skip
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +1 other test skip
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#1124) +4 other tests skip
> * igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7679) +1 other test skip
> * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7676)
> * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2669 / Intel XE#7389) +3
> other tests skip
> * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2887)
> * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2887) +8 other tests skip
> * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#3432) +2 other tests skip
> * shard-lnl: NOTRUN -> SKIP (Intel XE#3432)
> * igt@kms_chamelium_frames@hdmi-crc-single:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2252) +6 other tests skip
> * igt@kms_chamelium_hpd@hdmi-hpd:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +2 other tests skip
> * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#6974)
> * shard-bmg: NOTRUN -> SKIP (Intel XE#6974)
> * igt@kms_cursor_crc@cursor-onscreen-128x42:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2320) +3 other tests skip
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1424)
> * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
>
> * shard-bmg: PASS -> SKIP (Intel XE#2291) +1 other test skip
> * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#309 / Intel XE#7343) +1 other
> test skip
> * igt@kms_dp_link_training@non-uhbr-mst:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#4354 / Intel XE#5882)
> * igt@kms_dsc@dsc-fractional-bpp:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2244) +1 other test skip
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2244)
> * igt@kms_fbcon_fbt@psr:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#6126 / Intel XE#776)
> * igt@kms_feature_discovery@psr1:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2374 / Intel XE#6127)
> * igt@kms_flip@2x-absolute-wf_vblank:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2316) +1 other test skip
> * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1421)
> * igt@kms_flip@2x-plain-flip-fb-recreate:
>
> * shard-bmg: PASS -> SKIP (Intel XE#2316) +4 other tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7178 / Intel XE#7349)
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7178 / Intel XE#7349) +1
> other test skip
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7178 / Intel XE#7351)
> * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7179)
> * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#6312 / Intel XE#651) +2 other
> tests skip
> * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#4141) +7 other tests skip
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#656 / Intel XE#7905) +8 other
> tests skip
> * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-msflip-blt:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#6312) +4 other tests skip
> * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-indfb-draw-blt:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7905) +5 other tests skip
> * igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2311) +35 other tests skip
> * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7865) +5 other tests skip
> * igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-blt:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7061) +1 other test skip
> * igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7061)
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2313) +31 other tests skip
> * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7061 / Intel XE#7356) +1
> other test skip
> * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7061 / Intel XE#7356)
> * igt@kms_hdmi_inject@inject-audio:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1470 / Intel XE#2853)
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7308)
> * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#4329 / Intel XE#6912 / Intel
> XE#7375)
> * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7283)
> * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7283) +2 other tests skip
> * igt@kms_plane_lowres@tiling-4:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#599 / Intel XE#7382) +3 other
> tests skip
> * igt@kms_plane_multiple@2x-tiling-yf:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#5021 / Intel XE#7377)
> * igt@kms_plane_scaling@intel-max-src-size:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#3307)
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2763 / Intel XE#6886) +3
> other tests skip
> * igt@kms_pm_backlight@fade:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7376 / Intel XE#870)
> * igt@kms_pm_dc@dc6-dpms:
>
> * shard-lnl: PASS -> FAIL (Intel XE#7340)
> * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#1489) +3 other tests skip
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2893 / Intel XE#7304)
> * igt@kms_psr2_su@page_flip-p010:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2387 / Intel XE#7429)
> * igt@kms_psr@fbc-pr-primary-render:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2234 / Intel XE#2850) +4
> other tests skip
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1406)
> * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7795)
> * igt@kms_rotation_crc@primary-rotation-90:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#3904 / Intel XE#7342)
> * shard-lnl: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904 / Intel
> XE#7342) +1 other test skip
> * igt@kms_scaling_modes@scaling-mode-full-aspect:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2413)
> * igt@kms_setmode@invalid-clone-single-crtc:
>
> * shard-bmg: PASS -> SKIP (Intel XE#1435)
> * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#6503) +1 other test skip
> * igt@kms_vrr@flip-dpms:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#1499)
> * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
>
> * shard-lnl: PASS -> FAIL (Intel XE#2142) +1 other test fail
> * igt@xe_eudebug@basic-client:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7636) +2 other tests skip
> * igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7636) +8 other tests skip
> * igt@xe_evict@evict-large-external-cm:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#6540 / Intel XE#688) +1 other
> test skip
> * igt@xe_evict@evict-small-external-multi-queue-cm:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7140)
> * igt@xe_exec_balancer@virtual-all-active:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7482) +3 other tests skip
> * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2322 / Intel XE#7372) +5
> other tests skip
> * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +1 other test skip
> * igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7136) +5 other tests skip
> * igt@xe_exec_fault_mode@once-multi-queue-prefetch:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7136) +1 other test skip
> * igt@xe_exec_multi_queue@few-execs-preempt-mode-basic-smem:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#6874) +3 other tests skip
> * igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#6874) +15 other tests skip
> * igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7866) +1 other test skip
> * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7138) +5 other tests skip
> * igt@xe_exec_threads@threads-multi-queue-userptr-rebind:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7138) +2 other tests skip
> * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#6964)
> * igt@xe_multigpu_svm@mgpu-migration-prefetch:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#6964) +1 other test skip
> * igt@xe_oa@oa-tlb-invalidate:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2248 / Intel XE#7325 / Intel
> XE#7393)
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2248 / Intel XE#7325 / Intel
> XE#7393)
> * igt@xe_page_reclaim@binds-full-pd:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#7793)
> * igt@xe_pat@pat-index-xehpc:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#1420 / Intel XE#7590)
> * igt@xe_pat@pat-index-xelpg:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2236 / Intel XE#7590)
> * igt@xe_pm@d3cold-multiple-execs:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#7370) +1
> other test skip
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366 / Intel
> XE#7370)
> * igt@xe_pmu@fn-engine-activity-load:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#4650 / Intel XE#7347)
> * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#4733 / Intel XE#7417)
> * igt@xe_query@multigpu-query-invalid-cs-cycles:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#944) +1 other test skip
> * shard-lnl: NOTRUN -> SKIP (Intel XE#944)
> * igt@xe_sriov_flr@flr-vfs-parallel:
>
> * shard-bmg: PASS -> FAIL (Intel XE#6569)
> * igt@xe_sriov_vfio@open-basic:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7724)
> * igt@xe_vm@overcommit-nonfault-vram-lr-defer:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#7892)
>
> Possible fixes
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>
> * shard-bmg: INCOMPLETE (Intel XE#7084) -> PASS +1 other test pass
> * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
>
> * shard-lnl: FAIL (Intel XE#301 / Intel XE#3149) -> PASS +1 other
> test pass
> * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
>
> * shard-lnl: FAIL (Intel XE#301) -> PASS +1 other test pass
> * igt@kms_hdr@invalid-hdr:
>
> * shard-bmg: SKIP (Intel XE#1503) -> PASS
> * igt@xe_sriov_vram@vf-access-after-resize-up:
>
> * shard-bmg: FAIL (Intel XE#5937) -> PASS +2 other tests pass
>
> Warnings
>
> * igt@kms_content_protection@atomic-hdcp14:
>
> * shard-bmg: FAIL (Intel XE#1178 / Intel XE#3304 / Intel XE#7374)
> -> SKIP (Intel XE#7642) +2 other tests skip
> * igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-move:
>
> * shard-lnl: ABORT -> SKIP (Intel XE#7905)
> * shard-bmg: ABORT -> SKIP (Intel XE#2311)
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
>
> * shard-bmg: SKIP (Intel XE#4141) -> SKIP (Intel XE#2312) +5 other
> tests skip
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
>
> * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2312) +11 other
> tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
>
> * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2312) +10 other
> tests skip
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
>
> * shard-lnl: SKIP (Intel XE#656) -> SKIP (Intel XE#656 / Intel
> XE#7905) +225 other tests skip
> * igt@kms_hdr@brightness-with-hdr:
>
> * shard-bmg: SKIP (Intel XE#3544) -> SKIP (Intel XE#3374 / Intel
> XE#3544)
> * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>
> * shard-bmg: SKIP (Intel XE#3904 / Intel XE#7342) -> SKIP (Intel
> XE#3414 / Intel XE#3904 / Intel XE#7342)
> * igt@kms_tiled_display@basic-test-pattern:
>
> * shard-bmg: FAIL (Intel XE#1729 / Intel XE#7424) -> SKIP (Intel
> XE#2426 / Intel XE#5848)
>
> Build changes
>
> * IGT: IGT_8888 -> IGTPW_15107
>
> IGTPW_15107: ee35bc09086290ba5522bd7c791d5285105bdf7c @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8888: 77f31f709ee65bb20ad7d64d8aa012ba7688b112 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-4990-835de80ce9b34b618442ba91483170201b50b553:
> 835de80ce9b34b618442ba91483170201b50b553
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-05-06 13:10 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-06 6:55 [PATCH i-g-t v2 0/2] Extend gpgpu fill support to XE3P Zbigniew Kempczyński
2026-05-06 6:55 ` [PATCH i-g-t v2 1/2] lib/gpgpu_fill: Add support for xe3p gpgpu fill Zbigniew Kempczyński
2026-05-06 11:08 ` Hajda, Andrzej
2026-05-06 6:55 ` [PATCH i-g-t v2 2/2] tests/xe_gpgpu_fill: Add subtest with 4x4 position for XE3P Zbigniew Kempczyński
2026-05-06 7:38 ` ✗ i915.CI.BAT: failure for Extend gpgpu fill support to XE3P (rev2) Patchwork
2026-05-06 7:58 ` ✓ Xe.CI.BAT: success " Patchwork
2026-05-06 8:59 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-06 13:09 ` Zbigniew Kempczyński
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox