* [PATCH i-g-t] GPGPU support for MTL platform
@ 2024-12-04 14:53 nishit.sharma
0 siblings, 0 replies; 19+ messages in thread
From: nishit.sharma @ 2024-12-04 14:53 UTC (permalink / raw)
To: zbigniew.kempczynski, igt-dev, nishit.sharma
From: Nishit Sharma <nishit.sharma@intel.com>
GPGPU shader and pipeline was missing for MTL platform
Added GPGPU Shader and Compute Pipeline for exercising
gpgpu in MTL for i915 and XE
Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
---
lib/intel_compute.c | 219 ++++++++++++++++++++++++++++-
lib/intel_compute_square_kernels.c | 49 +++++++
2 files changed, 266 insertions(+), 2 deletions(-)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index 879928ab6..14f71c303 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -9,6 +9,7 @@
#include <stdint.h>
#include "i915/gem_create.h"
+#include "i915/gem_vm.h"
#include "igt.h"
#include "gen7_media.h"
#include "gen8_media.h"
@@ -102,6 +103,7 @@ static void bo_execenv_create(int fd, struct bo_execenv *execenv,
}
}
+
static void bo_execenv_destroy(struct bo_execenv *execenv)
{
igt_assert(execenv);
@@ -1014,7 +1016,7 @@ static void xehpc_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
addr_bo_buffer_batch[b++] = 0x00002580;
- addr_bo_buffer_batch[b++] = 0x00060002;
+ addr_bo_buffer_batch[b++] = 0x90080000;
addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x41;
@@ -1161,6 +1163,126 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel,
bo_execenv_destroy(&execenv);
}
+static void xelpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
+ uint64_t addr_general_state_base,
+ uint64_t addr_surface_state_base,
+ uint64_t addr_dynamic_state_base,
+ uint64_t addr_instruction_state_base,
+ uint64_t offset_indirect_data_start,
+ uint64_t kernel_start_pointer)
+{
+ int b = 0;
+
+ igt_debug("general state base: %"PRIx64"\n", addr_general_state_base);
+ igt_debug("surface state base: %"PRIx64"\n", addr_surface_state_base);
+ igt_debug("dynamic state base: %"PRIx64"\n", addr_dynamic_state_base);
+ igt_debug("instruct base addr: %"PRIx64"\n", addr_instruction_state_base);
+ igt_debug("bindless base addr: %"PRIx64"\n", addr_surface_state_base);
+ igt_debug("offset indirect addr: %"PRIx64"\n", offset_indirect_data_start);
+ igt_debug("kernel start pointer: %"PRIx64"\n", kernel_start_pointer);
+
+
+ addr_bo_buffer_batch[b++] = GEN7_PIPELINE_SELECT | GEN9_PIPELINE_SELECTION_MASK |
+ PIPELINE_SELECT_GPGPU;
+
+ addr_bo_buffer_batch[b++] = XEHP_STATE_COMPUTE_MODE;
+ addr_bo_buffer_batch[b++] = 0x80000000;
+
+ addr_bo_buffer_batch[b++] = XEHP_CFE_STATE | 0x4;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x03808800;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
+ addr_bo_buffer_batch[b++] = 0x00002580;
+ addr_bo_buffer_batch[b++] = 0x00060002;
+
+
+ addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
+ addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_general_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00028000;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = (addr_dynamic_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_dynamic_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = (addr_instruction_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_instruction_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = 0x00010001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00007fbf;
+ addr_bo_buffer_batch[b++] = 0x5E70F021;
+ addr_bo_buffer_batch[b++] = 0x00007F6A;
+ addr_bo_buffer_batch[b++] = 0x00010000;
+
+
+ addr_bo_buffer_batch[b++] = GEN8_3DSTATE_BINDING_TABLE_POOL_ALLOC | 0x2;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x2;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x001ff000;
+
+ addr_bo_buffer_batch[b++] = XEHP_COMPUTE_WALKER | 0x25;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000040;
+ addr_bo_buffer_batch[b++] = offset_indirect_data_start;
+ addr_bo_buffer_batch[b++] = 0xbe040000;
+ addr_bo_buffer_batch[b++] = 0xffffffff;
+ addr_bo_buffer_batch[b++] = 0x000003ff;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = kernel_start_pointer;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001080;
+ addr_bo_buffer_batch[b++] = 0x0c000020;
+
+ addr_bo_buffer_batch[b++] = 0x00000008;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001087;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000400;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = PIPE_CONTROL;
+ addr_bo_buffer_batch[b++] = 0x00100000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_BATCH_BUFFER_END;
+}
+
+
static void xe2lpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
uint64_t addr_general_state_base,
uint64_t addr_surface_state_base,
@@ -1321,6 +1443,94 @@ static void xe2_create_indirect_data_inc_kernel(uint32_t *addr_bo_buffer_batch,
addr_bo_buffer_batch[b++] = 0x00000000;
}
+/**
+ * xelpg_compute_exec - run a pipeline compatible with MTL
+ *
+ * @fd: file descriptor of the opened DRM device
+ * @kernel: GPU Kernel binary to be executed
+ * @size: size of @kernel.
+ * @eci: xelpg engine class instance if device is MTL
+ */
+static void xelpg_compute_exec(int fd, const unsigned char *kernel,
+ unsigned int size,
+ struct drm_xe_engine_class_instance *eci)
+{
+#define XELPG_BO_DICT_ENTRIES 9
+ struct bo_dict_entry bo_dict[XELPG_BO_DICT_ENTRIES] = {
+ { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL,
+ .name = "instr state base"},
+ { .addr = ADDR_DYNAMIC_STATE_BASE,
+ .size = 0x100000,
+ .name = "dynamic state base"},
+ { .addr = ADDR_SURFACE_STATE_BASE,
+ .size = 0x1000,
+ .name = "surface state base"},
+ { .addr = ADDR_GENERAL_STATE_BASE + OFFSET_INDIRECT_DATA_START,
+ .size = 0x1000,
+ .name = "indirect object base"},
+ { .addr = ADDR_INPUT, .size = SIZE_BUFFER_INPUT,
+ .name = "addr input"},
+ { .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT,
+ .name = "addr output" },
+ { .addr = ADDR_GENERAL_STATE_BASE, .size = 0x100000,
+ .name = "general state base" },
+ { .addr = ADDR_SURFACE_STATE_BASE + OFFSET_BINDING_TABLE,
+ .size = 0x1000,
+ .name = "binding table" },
+ { .addr = ADDR_BATCH,
+ .size = SIZE_BATCH,
+ .name = "batch" },
+ };
+
+ struct bo_execenv execenv;
+ float *dinput;
+
+ bo_execenv_create(fd, &execenv, eci);
+
+ /* Sets Kernel size */
+ bo_dict[0].size = ALIGN(size, 0x1000);
+
+ bo_execenv_bind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
+
+ memcpy(bo_dict[0].data, kernel, size);
+
+ create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL);
+ xehp_create_surface_state(bo_dict[2].data, ADDR_INPUT, ADDR_OUTPUT);
+ xehp_create_indirect_data(bo_dict[3].data, ADDR_INPUT, ADDR_OUTPUT);
+ xehp_create_surface_state(bo_dict[7].data, ADDR_INPUT, ADDR_OUTPUT);
+
+ dinput = (float *)bo_dict[4].data;
+ srand(time(NULL));
+
+ for (int i = 0; i < SIZE_DATA; i++)
+ ((float *)dinput)[i] = rand() / (float)RAND_MAX;
+
+ xelpg_compute_exec_compute(bo_dict[8].data,
+ ADDR_GENERAL_STATE_BASE,
+ ADDR_SURFACE_STATE_BASE,
+ ADDR_DYNAMIC_STATE_BASE,
+ ADDR_INSTRUCTION_STATE_BASE,
+ OFFSET_INDIRECT_DATA_START,
+ OFFSET_KERNEL);
+
+ bo_execenv_exec(&execenv, ADDR_BATCH);
+
+ for (int i = 0; i < SIZE_DATA; i++) {
+ float f1, f2;
+
+ f1 = ((float *) bo_dict[5].data)[i];
+ f2 = ((float *) bo_dict[4].data)[i];
+
+ if (f1 != f2 * f2)
+ igt_debug("[%4d] f1: %f != %f %f\n", i, f1, f2 * f2, f2);
+
+ igt_assert(f1 == f2 * f2);
+ }
+
+ bo_execenv_unbind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
+ bo_execenv_destroy(&execenv);
+}
+
/**
* xe2lpg_compute_exec - run a pipeline compatible with XE2
*
@@ -1406,7 +1616,7 @@ static void xe2lpg_compute_exec(int fd, const unsigned char *kernel,
igt_assert(f1 == f2 * f2);
}
- bo_execenv_unbind(&execenv, bo_dict, XE2_BO_DICT_ENTRIES);
+ bo_execenv_unbind(&execenv, bo_dict, XEHPC_BO_DICT_ENTRIES);
bo_execenv_destroy(&execenv);
}
@@ -1449,6 +1659,11 @@ static const struct {
.compute_exec = xehpc_compute_exec,
.compat = COMPAT_DRIVER_XE,
},
+ {
+ .ip_ver = IP_VER(12, 70),
+ .compute_exec = xelpg_compute_exec,
+ .compat = COMPAT_DRIVER_I915,
+ },
{
.ip_ver = IP_VER(20, 01),
.compute_exec = xe2lpg_compute_exec,
diff --git a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
index a1f3b46da..b0912e7e4 100644
--- a/lib/intel_compute_square_kernels.c
+++ b/lib/intel_compute_square_kernels.c
@@ -3844,6 +3844,50 @@ static const unsigned char xe2lpg_kernel_inc_bin[] = {
0x00, 0x00, 0x00, 0x00
};
+unsigned char xelpg_kernel_square_bin[] = {
+ 0x61, 0x00, 0x03, 0x80, 0x20, 0x42, 0x05, 0x7f, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x80, 0x20, 0x82, 0x45, 0x7f,
+ 0x04, 0x00, 0x00, 0x02, 0xc0, 0xff, 0xff, 0xff, 0x40, 0x19, 0x00, 0x80,
+ 0x20, 0x82, 0x45, 0x7f, 0x44, 0x7f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x03, 0x80, 0x00, 0x00, 0x14, 0x08,
+ 0x0c, 0x7f, 0xfa, 0xa7, 0x00, 0x00, 0x10, 0x02, 0x61, 0x00, 0x03, 0x80,
+ 0x20, 0x02, 0x05, 0x03, 0x04, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x09, 0x00, 0x80,
+ 0x20, 0x82, 0x01, 0x80, 0x00, 0x80, 0x00, 0x01, 0xc0, 0x04, 0xc0, 0x04,
+ 0x01, 0x09, 0x00, 0xe8, 0x01, 0x00, 0x11, 0x00, 0x41, 0x1a, 0x20, 0x22,
+ 0x16, 0x09, 0x11, 0x03, 0x49, 0x00, 0x04, 0xa2, 0x12, 0x09, 0x11, 0x03,
+ 0x52, 0x19, 0x04, 0x00, 0x60, 0x06, 0x04, 0x05, 0x04, 0x04, 0x0e, 0x01,
+ 0x04, 0x01, 0x04, 0x07, 0x52, 0x00, 0x24, 0x00, 0x60, 0x06, 0x04, 0x0a,
+ 0x04, 0x04, 0x0e, 0x01, 0x04, 0x02, 0x04, 0x07, 0x70, 0x1a, 0x04, 0x00,
+ 0x60, 0x02, 0x01, 0x00, 0x04, 0x05, 0x10, 0x52, 0x84, 0x08, 0x00, 0x00,
+ 0x70, 0x1a, 0x24, 0x00, 0x60, 0x02, 0x01, 0x00, 0x04, 0x0a, 0x10, 0x52,
+ 0x84, 0x08, 0x00, 0x00, 0x2e, 0x00, 0x05, 0x11, 0x00, 0xc0, 0x00, 0x00,
+ 0xd0, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x69, 0x00, 0x0c, 0x60,
+ 0x02, 0x05, 0x20, 0x00, 0x69, 0x00, 0x0e, 0x66, 0x02, 0x0a, 0x20, 0x00,
+ 0x40, 0x1a, 0x10, 0xa0, 0x32, 0x0c, 0x10, 0x08, 0x40, 0x1a, 0x12, 0xa6,
+ 0x32, 0x0e, 0x10, 0x08, 0x01, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x04, 0x00,
+ 0x00, 0x00, 0x14, 0x14, 0x94, 0x10, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04,
+ 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x31, 0x41, 0x24, 0x00, 0x00, 0x00, 0x14, 0x16,
+ 0x94, 0x12, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04, 0x40, 0x00, 0x0c, 0xa0,
+ 0x4a, 0x0c, 0x10, 0x08, 0x40, 0x00, 0x0e, 0xa6, 0x4a, 0x0e, 0x10, 0x08,
+ 0x41, 0x20, 0x14, 0x20, 0x00, 0x14, 0x00, 0x14, 0x41, 0x21, 0x16, 0x26,
+ 0x00, 0x16, 0x00, 0x16, 0x31, 0xa0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x95, 0x0c, 0x08, 0xfa, 0x14, 0x14, 0x00, 0x04, 0x31, 0x91, 0x24, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x95, 0x0e, 0x08, 0xfa, 0x14, 0x16, 0x00, 0x04,
+ 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00,
+ 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x61, 0x00, 0x7f, 0x64, 0x00, 0x03, 0x10, 0x00, 0x01, 0x11, 0x00, 0x80,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x31, 0x40, 0x00, 0x80, 0x04, 0x00, 0x00, 0x00, 0x0c, 0x7f, 0x20, 0x30,
+ 0x00, 0x00, 0x00, 0x00
+};
const struct intel_compute_kernels intel_compute_square_kernels[] = {
{
@@ -3866,6 +3910,11 @@ const struct intel_compute_kernels intel_compute_square_kernels[] = {
.size = sizeof(xehpc_kernel_square_bin),
.kernel = xehpc_kernel_square_bin,
},
+ {
+ .ip_ver = IP_VER(12, 70),
+ .size = sizeof(xelpg_kernel_square_bin),
+ .kernel = xelpg_kernel_square_bin,
+ },
{
.ip_ver = IP_VER(20, 01),
.size = sizeof(xe2lpg_kernel_square_bin),
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH i-g-t] GPGPU support for MTL platform
@ 2024-12-05 8:48 nishit.sharma
2024-12-05 11:26 ` Zbigniew Kempczyński
0 siblings, 1 reply; 19+ messages in thread
From: nishit.sharma @ 2024-12-05 8:48 UTC (permalink / raw)
To: igt-dev
From: Nishit Sharma <nishit.sharma@intel.com>
GPGPU shader and pipeline was missing for MTL platform
Added GPGPU Shader and Compute Pipeline for exercising
gpgpu in MTL for i915 and XE
Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
---
lib/intel_compute.c | 219 ++++++++++++++++++++++++++++-
lib/intel_compute_square_kernels.c | 49 +++++++
2 files changed, 266 insertions(+), 2 deletions(-)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index 879928ab6..14f71c303 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -9,6 +9,7 @@
#include <stdint.h>
#include "i915/gem_create.h"
+#include "i915/gem_vm.h"
#include "igt.h"
#include "gen7_media.h"
#include "gen8_media.h"
@@ -102,6 +103,7 @@ static void bo_execenv_create(int fd, struct bo_execenv *execenv,
}
}
+
static void bo_execenv_destroy(struct bo_execenv *execenv)
{
igt_assert(execenv);
@@ -1014,7 +1016,7 @@ static void xehpc_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
addr_bo_buffer_batch[b++] = 0x00002580;
- addr_bo_buffer_batch[b++] = 0x00060002;
+ addr_bo_buffer_batch[b++] = 0x90080000;
addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x41;
@@ -1161,6 +1163,126 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel,
bo_execenv_destroy(&execenv);
}
+static void xelpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
+ uint64_t addr_general_state_base,
+ uint64_t addr_surface_state_base,
+ uint64_t addr_dynamic_state_base,
+ uint64_t addr_instruction_state_base,
+ uint64_t offset_indirect_data_start,
+ uint64_t kernel_start_pointer)
+{
+ int b = 0;
+
+ igt_debug("general state base: %"PRIx64"\n", addr_general_state_base);
+ igt_debug("surface state base: %"PRIx64"\n", addr_surface_state_base);
+ igt_debug("dynamic state base: %"PRIx64"\n", addr_dynamic_state_base);
+ igt_debug("instruct base addr: %"PRIx64"\n", addr_instruction_state_base);
+ igt_debug("bindless base addr: %"PRIx64"\n", addr_surface_state_base);
+ igt_debug("offset indirect addr: %"PRIx64"\n", offset_indirect_data_start);
+ igt_debug("kernel start pointer: %"PRIx64"\n", kernel_start_pointer);
+
+
+ addr_bo_buffer_batch[b++] = GEN7_PIPELINE_SELECT | GEN9_PIPELINE_SELECTION_MASK |
+ PIPELINE_SELECT_GPGPU;
+
+ addr_bo_buffer_batch[b++] = XEHP_STATE_COMPUTE_MODE;
+ addr_bo_buffer_batch[b++] = 0x80000000;
+
+ addr_bo_buffer_batch[b++] = XEHP_CFE_STATE | 0x4;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x03808800;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
+ addr_bo_buffer_batch[b++] = 0x00002580;
+ addr_bo_buffer_batch[b++] = 0x00060002;
+
+
+ addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
+ addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_general_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00028000;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = (addr_dynamic_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_dynamic_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = (addr_instruction_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_instruction_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = 0x00010001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00007fbf;
+ addr_bo_buffer_batch[b++] = 0x5E70F021;
+ addr_bo_buffer_batch[b++] = 0x00007F6A;
+ addr_bo_buffer_batch[b++] = 0x00010000;
+
+
+ addr_bo_buffer_batch[b++] = GEN8_3DSTATE_BINDING_TABLE_POOL_ALLOC | 0x2;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x2;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x001ff000;
+
+ addr_bo_buffer_batch[b++] = XEHP_COMPUTE_WALKER | 0x25;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000040;
+ addr_bo_buffer_batch[b++] = offset_indirect_data_start;
+ addr_bo_buffer_batch[b++] = 0xbe040000;
+ addr_bo_buffer_batch[b++] = 0xffffffff;
+ addr_bo_buffer_batch[b++] = 0x000003ff;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = kernel_start_pointer;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001080;
+ addr_bo_buffer_batch[b++] = 0x0c000020;
+
+ addr_bo_buffer_batch[b++] = 0x00000008;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001087;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000400;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = PIPE_CONTROL;
+ addr_bo_buffer_batch[b++] = 0x00100000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_BATCH_BUFFER_END;
+}
+
+
static void xe2lpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
uint64_t addr_general_state_base,
uint64_t addr_surface_state_base,
@@ -1321,6 +1443,94 @@ static void xe2_create_indirect_data_inc_kernel(uint32_t *addr_bo_buffer_batch,
addr_bo_buffer_batch[b++] = 0x00000000;
}
+/**
+ * xelpg_compute_exec - run a pipeline compatible with MTL
+ *
+ * @fd: file descriptor of the opened DRM device
+ * @kernel: GPU Kernel binary to be executed
+ * @size: size of @kernel.
+ * @eci: xelpg engine class instance if device is MTL
+ */
+static void xelpg_compute_exec(int fd, const unsigned char *kernel,
+ unsigned int size,
+ struct drm_xe_engine_class_instance *eci)
+{
+#define XELPG_BO_DICT_ENTRIES 9
+ struct bo_dict_entry bo_dict[XELPG_BO_DICT_ENTRIES] = {
+ { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL,
+ .name = "instr state base"},
+ { .addr = ADDR_DYNAMIC_STATE_BASE,
+ .size = 0x100000,
+ .name = "dynamic state base"},
+ { .addr = ADDR_SURFACE_STATE_BASE,
+ .size = 0x1000,
+ .name = "surface state base"},
+ { .addr = ADDR_GENERAL_STATE_BASE + OFFSET_INDIRECT_DATA_START,
+ .size = 0x1000,
+ .name = "indirect object base"},
+ { .addr = ADDR_INPUT, .size = SIZE_BUFFER_INPUT,
+ .name = "addr input"},
+ { .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT,
+ .name = "addr output" },
+ { .addr = ADDR_GENERAL_STATE_BASE, .size = 0x100000,
+ .name = "general state base" },
+ { .addr = ADDR_SURFACE_STATE_BASE + OFFSET_BINDING_TABLE,
+ .size = 0x1000,
+ .name = "binding table" },
+ { .addr = ADDR_BATCH,
+ .size = SIZE_BATCH,
+ .name = "batch" },
+ };
+
+ struct bo_execenv execenv;
+ float *dinput;
+
+ bo_execenv_create(fd, &execenv, eci);
+
+ /* Sets Kernel size */
+ bo_dict[0].size = ALIGN(size, 0x1000);
+
+ bo_execenv_bind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
+
+ memcpy(bo_dict[0].data, kernel, size);
+
+ create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL);
+ xehp_create_surface_state(bo_dict[2].data, ADDR_INPUT, ADDR_OUTPUT);
+ xehp_create_indirect_data(bo_dict[3].data, ADDR_INPUT, ADDR_OUTPUT);
+ xehp_create_surface_state(bo_dict[7].data, ADDR_INPUT, ADDR_OUTPUT);
+
+ dinput = (float *)bo_dict[4].data;
+ srand(time(NULL));
+
+ for (int i = 0; i < SIZE_DATA; i++)
+ ((float *)dinput)[i] = rand() / (float)RAND_MAX;
+
+ xelpg_compute_exec_compute(bo_dict[8].data,
+ ADDR_GENERAL_STATE_BASE,
+ ADDR_SURFACE_STATE_BASE,
+ ADDR_DYNAMIC_STATE_BASE,
+ ADDR_INSTRUCTION_STATE_BASE,
+ OFFSET_INDIRECT_DATA_START,
+ OFFSET_KERNEL);
+
+ bo_execenv_exec(&execenv, ADDR_BATCH);
+
+ for (int i = 0; i < SIZE_DATA; i++) {
+ float f1, f2;
+
+ f1 = ((float *) bo_dict[5].data)[i];
+ f2 = ((float *) bo_dict[4].data)[i];
+
+ if (f1 != f2 * f2)
+ igt_debug("[%4d] f1: %f != %f %f\n", i, f1, f2 * f2, f2);
+
+ igt_assert(f1 == f2 * f2);
+ }
+
+ bo_execenv_unbind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
+ bo_execenv_destroy(&execenv);
+}
+
/**
* xe2lpg_compute_exec - run a pipeline compatible with XE2
*
@@ -1406,7 +1616,7 @@ static void xe2lpg_compute_exec(int fd, const unsigned char *kernel,
igt_assert(f1 == f2 * f2);
}
- bo_execenv_unbind(&execenv, bo_dict, XE2_BO_DICT_ENTRIES);
+ bo_execenv_unbind(&execenv, bo_dict, XEHPC_BO_DICT_ENTRIES);
bo_execenv_destroy(&execenv);
}
@@ -1449,6 +1659,11 @@ static const struct {
.compute_exec = xehpc_compute_exec,
.compat = COMPAT_DRIVER_XE,
},
+ {
+ .ip_ver = IP_VER(12, 70),
+ .compute_exec = xelpg_compute_exec,
+ .compat = COMPAT_DRIVER_I915,
+ },
{
.ip_ver = IP_VER(20, 01),
.compute_exec = xe2lpg_compute_exec,
diff --git a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
index a1f3b46da..b0912e7e4 100644
--- a/lib/intel_compute_square_kernels.c
+++ b/lib/intel_compute_square_kernels.c
@@ -3844,6 +3844,50 @@ static const unsigned char xe2lpg_kernel_inc_bin[] = {
0x00, 0x00, 0x00, 0x00
};
+unsigned char xelpg_kernel_square_bin[] = {
+ 0x61, 0x00, 0x03, 0x80, 0x20, 0x42, 0x05, 0x7f, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x80, 0x20, 0x82, 0x45, 0x7f,
+ 0x04, 0x00, 0x00, 0x02, 0xc0, 0xff, 0xff, 0xff, 0x40, 0x19, 0x00, 0x80,
+ 0x20, 0x82, 0x45, 0x7f, 0x44, 0x7f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x03, 0x80, 0x00, 0x00, 0x14, 0x08,
+ 0x0c, 0x7f, 0xfa, 0xa7, 0x00, 0x00, 0x10, 0x02, 0x61, 0x00, 0x03, 0x80,
+ 0x20, 0x02, 0x05, 0x03, 0x04, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x09, 0x00, 0x80,
+ 0x20, 0x82, 0x01, 0x80, 0x00, 0x80, 0x00, 0x01, 0xc0, 0x04, 0xc0, 0x04,
+ 0x01, 0x09, 0x00, 0xe8, 0x01, 0x00, 0x11, 0x00, 0x41, 0x1a, 0x20, 0x22,
+ 0x16, 0x09, 0x11, 0x03, 0x49, 0x00, 0x04, 0xa2, 0x12, 0x09, 0x11, 0x03,
+ 0x52, 0x19, 0x04, 0x00, 0x60, 0x06, 0x04, 0x05, 0x04, 0x04, 0x0e, 0x01,
+ 0x04, 0x01, 0x04, 0x07, 0x52, 0x00, 0x24, 0x00, 0x60, 0x06, 0x04, 0x0a,
+ 0x04, 0x04, 0x0e, 0x01, 0x04, 0x02, 0x04, 0x07, 0x70, 0x1a, 0x04, 0x00,
+ 0x60, 0x02, 0x01, 0x00, 0x04, 0x05, 0x10, 0x52, 0x84, 0x08, 0x00, 0x00,
+ 0x70, 0x1a, 0x24, 0x00, 0x60, 0x02, 0x01, 0x00, 0x04, 0x0a, 0x10, 0x52,
+ 0x84, 0x08, 0x00, 0x00, 0x2e, 0x00, 0x05, 0x11, 0x00, 0xc0, 0x00, 0x00,
+ 0xd0, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x69, 0x00, 0x0c, 0x60,
+ 0x02, 0x05, 0x20, 0x00, 0x69, 0x00, 0x0e, 0x66, 0x02, 0x0a, 0x20, 0x00,
+ 0x40, 0x1a, 0x10, 0xa0, 0x32, 0x0c, 0x10, 0x08, 0x40, 0x1a, 0x12, 0xa6,
+ 0x32, 0x0e, 0x10, 0x08, 0x01, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x04, 0x00,
+ 0x00, 0x00, 0x14, 0x14, 0x94, 0x10, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04,
+ 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x31, 0x41, 0x24, 0x00, 0x00, 0x00, 0x14, 0x16,
+ 0x94, 0x12, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04, 0x40, 0x00, 0x0c, 0xa0,
+ 0x4a, 0x0c, 0x10, 0x08, 0x40, 0x00, 0x0e, 0xa6, 0x4a, 0x0e, 0x10, 0x08,
+ 0x41, 0x20, 0x14, 0x20, 0x00, 0x14, 0x00, 0x14, 0x41, 0x21, 0x16, 0x26,
+ 0x00, 0x16, 0x00, 0x16, 0x31, 0xa0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x95, 0x0c, 0x08, 0xfa, 0x14, 0x14, 0x00, 0x04, 0x31, 0x91, 0x24, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x95, 0x0e, 0x08, 0xfa, 0x14, 0x16, 0x00, 0x04,
+ 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00,
+ 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x61, 0x00, 0x7f, 0x64, 0x00, 0x03, 0x10, 0x00, 0x01, 0x11, 0x00, 0x80,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x31, 0x40, 0x00, 0x80, 0x04, 0x00, 0x00, 0x00, 0x0c, 0x7f, 0x20, 0x30,
+ 0x00, 0x00, 0x00, 0x00
+};
const struct intel_compute_kernels intel_compute_square_kernels[] = {
{
@@ -3866,6 +3910,11 @@ const struct intel_compute_kernels intel_compute_square_kernels[] = {
.size = sizeof(xehpc_kernel_square_bin),
.kernel = xehpc_kernel_square_bin,
},
+ {
+ .ip_ver = IP_VER(12, 70),
+ .size = sizeof(xelpg_kernel_square_bin),
+ .kernel = xelpg_kernel_square_bin,
+ },
{
.ip_ver = IP_VER(20, 01),
.size = sizeof(xe2lpg_kernel_square_bin),
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t] GPGPU support for MTL platform
2024-12-05 8:48 nishit.sharma
@ 2024-12-05 11:26 ` Zbigniew Kempczyński
0 siblings, 0 replies; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-12-05 11:26 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
On Thu, Dec 05, 2024 at 08:48:02AM +0000, nishit.sharma@intel.com wrote:
> From: Nishit Sharma <nishit.sharma@intel.com>
>
> GPGPU shader and pipeline was missing for MTL platform
> Added GPGPU Shader and Compute Pipeline for exercising
> gpgpu in MTL for i915 and XE
>
> Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
> ---
> lib/intel_compute.c | 219 ++++++++++++++++++++++++++++-
> lib/intel_compute_square_kernels.c | 49 +++++++
> 2 files changed, 266 insertions(+), 2 deletions(-)
>
> diff --git a/lib/intel_compute.c b/lib/intel_compute.c
> index 879928ab6..14f71c303 100644
> --- a/lib/intel_compute.c
> +++ b/lib/intel_compute.c
> @@ -9,6 +9,7 @@
> #include <stdint.h>
>
> #include "i915/gem_create.h"
> +#include "i915/gem_vm.h"
What for is this include?
> #include "igt.h"
> #include "gen7_media.h"
> #include "gen8_media.h"
> @@ -102,6 +103,7 @@ static void bo_execenv_create(int fd, struct bo_execenv *execenv,
> }
> }
>
> +
Unnecessary line.
> static void bo_execenv_destroy(struct bo_execenv *execenv)
> {
> igt_assert(execenv);
> @@ -1014,7 +1016,7 @@ static void xehpc_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
>
> addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
> addr_bo_buffer_batch[b++] = 0x00002580;
> - addr_bo_buffer_batch[b++] = 0x00060002;
> + addr_bo_buffer_batch[b++] = 0x90080000;
This changes other pipeline.
>
> addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
> addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x41;
> @@ -1161,6 +1163,126 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel,
> bo_execenv_destroy(&execenv);
> }
>
> +static void xelpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
> + uint64_t addr_general_state_base,
> + uint64_t addr_surface_state_base,
> + uint64_t addr_dynamic_state_base,
> + uint64_t addr_instruction_state_base,
> + uint64_t offset_indirect_data_start,
> + uint64_t kernel_start_pointer)
> +{
> + int b = 0;
> +
> + igt_debug("general state base: %"PRIx64"\n", addr_general_state_base);
> + igt_debug("surface state base: %"PRIx64"\n", addr_surface_state_base);
> + igt_debug("dynamic state base: %"PRIx64"\n", addr_dynamic_state_base);
> + igt_debug("instruct base addr: %"PRIx64"\n", addr_instruction_state_base);
> + igt_debug("bindless base addr: %"PRIx64"\n", addr_surface_state_base);
> + igt_debug("offset indirect addr: %"PRIx64"\n", offset_indirect_data_start);
> + igt_debug("kernel start pointer: %"PRIx64"\n", kernel_start_pointer);
> +
> +
> + addr_bo_buffer_batch[b++] = GEN7_PIPELINE_SELECT | GEN9_PIPELINE_SELECTION_MASK |
> + PIPELINE_SELECT_GPGPU;
> +
> + addr_bo_buffer_batch[b++] = XEHP_STATE_COMPUTE_MODE;
> + addr_bo_buffer_batch[b++] = 0x80000000;
> +
> + addr_bo_buffer_batch[b++] = XEHP_CFE_STATE | 0x4;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x03808800;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
> + addr_bo_buffer_batch[b++] = 0x00002580;
> + addr_bo_buffer_batch[b++] = 0x00060002;
> +
> +
> + addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
> + addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_general_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x00028000;
> + addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
> + addr_bo_buffer_batch[b++] = (addr_dynamic_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_dynamic_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = (addr_instruction_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_instruction_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0xfffff001;
> + addr_bo_buffer_batch[b++] = 0x00010001;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0xfffff001;
> + addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x00007fbf;
> + addr_bo_buffer_batch[b++] = 0x5E70F021;
> + addr_bo_buffer_batch[b++] = 0x00007F6A;
> + addr_bo_buffer_batch[b++] = 0x00010000;
> +
> +
> + addr_bo_buffer_batch[b++] = GEN8_3DSTATE_BINDING_TABLE_POOL_ALLOC | 0x2;
> + addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x2;
> + addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x001ff000;
> +
> + addr_bo_buffer_batch[b++] = XEHP_COMPUTE_WALKER | 0x25;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000040;
> + addr_bo_buffer_batch[b++] = offset_indirect_data_start;
> + addr_bo_buffer_batch[b++] = 0xbe040000;
> + addr_bo_buffer_batch[b++] = 0xffffffff;
> + addr_bo_buffer_batch[b++] = 0x000003ff;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> +
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = kernel_start_pointer;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00001080;
> + addr_bo_buffer_batch[b++] = 0x0c000020;
> +
> + addr_bo_buffer_batch[b++] = 0x00000008;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00001087;
> + addr_bo_buffer_batch[b++] = ADDR_BATCH;
> + addr_bo_buffer_batch[b++] = ADDR_BATCH >> 32;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000400;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = PIPE_CONTROL;
> + addr_bo_buffer_batch[b++] = 0x00100000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = MI_BATCH_BUFFER_END;
> +}
> +
> +
> static void xe2lpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
> uint64_t addr_general_state_base,
> uint64_t addr_surface_state_base,
> @@ -1321,6 +1443,94 @@ static void xe2_create_indirect_data_inc_kernel(uint32_t *addr_bo_buffer_batch,
> addr_bo_buffer_batch[b++] = 0x00000000;
> }
>
> +/**
> + * xelpg_compute_exec - run a pipeline compatible with MTL
> + *
> + * @fd: file descriptor of the opened DRM device
> + * @kernel: GPU Kernel binary to be executed
> + * @size: size of @kernel.
> + * @eci: xelpg engine class instance if device is MTL
> + */
> +static void xelpg_compute_exec(int fd, const unsigned char *kernel,
> + unsigned int size,
> + struct drm_xe_engine_class_instance *eci)
> +{
> +#define XELPG_BO_DICT_ENTRIES 9
> + struct bo_dict_entry bo_dict[XELPG_BO_DICT_ENTRIES] = {
> + { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL,
> + .name = "instr state base"},
> + { .addr = ADDR_DYNAMIC_STATE_BASE,
> + .size = 0x100000,
> + .name = "dynamic state base"},
> + { .addr = ADDR_SURFACE_STATE_BASE,
> + .size = 0x1000,
> + .name = "surface state base"},
> + { .addr = ADDR_GENERAL_STATE_BASE + OFFSET_INDIRECT_DATA_START,
> + .size = 0x1000,
> + .name = "indirect object base"},
> + { .addr = ADDR_INPUT, .size = SIZE_BUFFER_INPUT,
> + .name = "addr input"},
> + { .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT,
> + .name = "addr output" },
> + { .addr = ADDR_GENERAL_STATE_BASE, .size = 0x100000,
> + .name = "general state base" },
> + { .addr = ADDR_SURFACE_STATE_BASE + OFFSET_BINDING_TABLE,
> + .size = 0x1000,
> + .name = "binding table" },
> + { .addr = ADDR_BATCH,
> + .size = SIZE_BATCH,
> + .name = "batch" },
> + };
> +
> + struct bo_execenv execenv;
> + float *dinput;
> +
> + bo_execenv_create(fd, &execenv, eci);
> +
> + /* Sets Kernel size */
> + bo_dict[0].size = ALIGN(size, 0x1000);
> +
> + bo_execenv_bind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
> +
> + memcpy(bo_dict[0].data, kernel, size);
> +
> + create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL);
> + xehp_create_surface_state(bo_dict[2].data, ADDR_INPUT, ADDR_OUTPUT);
> + xehp_create_indirect_data(bo_dict[3].data, ADDR_INPUT, ADDR_OUTPUT);
> + xehp_create_surface_state(bo_dict[7].data, ADDR_INPUT, ADDR_OUTPUT);
> +
> + dinput = (float *)bo_dict[4].data;
> + srand(time(NULL));
> +
> + for (int i = 0; i < SIZE_DATA; i++)
> + ((float *)dinput)[i] = rand() / (float)RAND_MAX;
> +
> + xelpg_compute_exec_compute(bo_dict[8].data,
> + ADDR_GENERAL_STATE_BASE,
> + ADDR_SURFACE_STATE_BASE,
> + ADDR_DYNAMIC_STATE_BASE,
> + ADDR_INSTRUCTION_STATE_BASE,
> + OFFSET_INDIRECT_DATA_START,
> + OFFSET_KERNEL);
> +
> + bo_execenv_exec(&execenv, ADDR_BATCH);
> +
> + for (int i = 0; i < SIZE_DATA; i++) {
> + float f1, f2;
> +
> + f1 = ((float *) bo_dict[5].data)[i];
> + f2 = ((float *) bo_dict[4].data)[i];
> +
> + if (f1 != f2 * f2)
> + igt_debug("[%4d] f1: %f != %f %f\n", i, f1, f2 * f2, f2);
> +
> + igt_assert(f1 == f2 * f2);
> + }
> +
> + bo_execenv_unbind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
> + bo_execenv_destroy(&execenv);
> +}
> +
> /**
> * xe2lpg_compute_exec - run a pipeline compatible with XE2
> *
> @@ -1406,7 +1616,7 @@ static void xe2lpg_compute_exec(int fd, const unsigned char *kernel,
> igt_assert(f1 == f2 * f2);
> }
>
> - bo_execenv_unbind(&execenv, bo_dict, XE2_BO_DICT_ENTRIES);
> + bo_execenv_unbind(&execenv, bo_dict, XEHPC_BO_DICT_ENTRIES);
This is wrong.
> bo_execenv_destroy(&execenv);
> }
>
> @@ -1449,6 +1659,11 @@ static const struct {
> .compute_exec = xehpc_compute_exec,
> .compat = COMPAT_DRIVER_XE,
> },
> + {
> + .ip_ver = IP_VER(12, 70),
> + .compute_exec = xelpg_compute_exec,
> + .compat = COMPAT_DRIVER_I915,
Isn't this correct also for COMPAT_DRIVER_XE? May you test it and
unblock if it is passing for xe?
--
Zbigniew
> + },
> {
> .ip_ver = IP_VER(20, 01),
> .compute_exec = xe2lpg_compute_exec,
> diff --git a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
> index a1f3b46da..b0912e7e4 100644
> --- a/lib/intel_compute_square_kernels.c
> +++ b/lib/intel_compute_square_kernels.c
> @@ -3844,6 +3844,50 @@ static const unsigned char xe2lpg_kernel_inc_bin[] = {
> 0x00, 0x00, 0x00, 0x00
> };
>
> +unsigned char xelpg_kernel_square_bin[] = {
> + 0x61, 0x00, 0x03, 0x80, 0x20, 0x42, 0x05, 0x7f, 0x00, 0x00, 0x00, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x80, 0x20, 0x82, 0x45, 0x7f,
> + 0x04, 0x00, 0x00, 0x02, 0xc0, 0xff, 0xff, 0xff, 0x40, 0x19, 0x00, 0x80,
> + 0x20, 0x82, 0x45, 0x7f, 0x44, 0x7f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
> + 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x03, 0x80, 0x00, 0x00, 0x14, 0x08,
> + 0x0c, 0x7f, 0xfa, 0xa7, 0x00, 0x00, 0x10, 0x02, 0x61, 0x00, 0x03, 0x80,
> + 0x20, 0x02, 0x05, 0x03, 0x04, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
> + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
> + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x09, 0x00, 0x80,
> + 0x20, 0x82, 0x01, 0x80, 0x00, 0x80, 0x00, 0x01, 0xc0, 0x04, 0xc0, 0x04,
> + 0x01, 0x09, 0x00, 0xe8, 0x01, 0x00, 0x11, 0x00, 0x41, 0x1a, 0x20, 0x22,
> + 0x16, 0x09, 0x11, 0x03, 0x49, 0x00, 0x04, 0xa2, 0x12, 0x09, 0x11, 0x03,
> + 0x52, 0x19, 0x04, 0x00, 0x60, 0x06, 0x04, 0x05, 0x04, 0x04, 0x0e, 0x01,
> + 0x04, 0x01, 0x04, 0x07, 0x52, 0x00, 0x24, 0x00, 0x60, 0x06, 0x04, 0x0a,
> + 0x04, 0x04, 0x0e, 0x01, 0x04, 0x02, 0x04, 0x07, 0x70, 0x1a, 0x04, 0x00,
> + 0x60, 0x02, 0x01, 0x00, 0x04, 0x05, 0x10, 0x52, 0x84, 0x08, 0x00, 0x00,
> + 0x70, 0x1a, 0x24, 0x00, 0x60, 0x02, 0x01, 0x00, 0x04, 0x0a, 0x10, 0x52,
> + 0x84, 0x08, 0x00, 0x00, 0x2e, 0x00, 0x05, 0x11, 0x00, 0xc0, 0x00, 0x00,
> + 0xd0, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x69, 0x00, 0x0c, 0x60,
> + 0x02, 0x05, 0x20, 0x00, 0x69, 0x00, 0x0e, 0x66, 0x02, 0x0a, 0x20, 0x00,
> + 0x40, 0x1a, 0x10, 0xa0, 0x32, 0x0c, 0x10, 0x08, 0x40, 0x1a, 0x12, 0xa6,
> + 0x32, 0x0e, 0x10, 0x08, 0x01, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x04, 0x00,
> + 0x00, 0x00, 0x14, 0x14, 0x94, 0x10, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04,
> + 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x31, 0x41, 0x24, 0x00, 0x00, 0x00, 0x14, 0x16,
> + 0x94, 0x12, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04, 0x40, 0x00, 0x0c, 0xa0,
> + 0x4a, 0x0c, 0x10, 0x08, 0x40, 0x00, 0x0e, 0xa6, 0x4a, 0x0e, 0x10, 0x08,
> + 0x41, 0x20, 0x14, 0x20, 0x00, 0x14, 0x00, 0x14, 0x41, 0x21, 0x16, 0x26,
> + 0x00, 0x16, 0x00, 0x16, 0x31, 0xa0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x95, 0x0c, 0x08, 0xfa, 0x14, 0x14, 0x00, 0x04, 0x31, 0x91, 0x24, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x95, 0x0e, 0x08, 0xfa, 0x14, 0x16, 0x00, 0x04,
> + 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
> + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
> + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00,
> + 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
> + 0x61, 0x00, 0x7f, 0x64, 0x00, 0x03, 0x10, 0x00, 0x01, 0x11, 0x00, 0x80,
> + 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x31, 0x40, 0x00, 0x80, 0x04, 0x00, 0x00, 0x00, 0x0c, 0x7f, 0x20, 0x30,
> + 0x00, 0x00, 0x00, 0x00
> +};
>
> const struct intel_compute_kernels intel_compute_square_kernels[] = {
> {
> @@ -3866,6 +3910,11 @@ const struct intel_compute_kernels intel_compute_square_kernels[] = {
> .size = sizeof(xehpc_kernel_square_bin),
> .kernel = xehpc_kernel_square_bin,
> },
> + {
> + .ip_ver = IP_VER(12, 70),
> + .size = sizeof(xelpg_kernel_square_bin),
> + .kernel = xelpg_kernel_square_bin,
> + },
> {
> .ip_ver = IP_VER(20, 01),
> .size = sizeof(xe2lpg_kernel_square_bin),
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t] GPGPU support for MTL platform
@ 2024-12-05 13:28 nishit.sharma
2024-12-06 3:01 ` ✗ i915.CI.BAT: failure for GPGPU support for MTL platform (rev5) Patchwork
` (8 more replies)
0 siblings, 9 replies; 19+ messages in thread
From: nishit.sharma @ 2024-12-05 13:28 UTC (permalink / raw)
To: igt-dev, dwarakanath.ramadeva, zbigniew.kempczynski
From: Nishit Sharma <nishit.sharma@intel.com>
GPGPU shader and pipeline was missing for MTL platform
Added GPGPU Shader and Compute Pipeline for exercising
gpgpu in MTL for i915 and XE
Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
---
lib/intel_compute.c | 213 +++++++++++++++++++++++++++++
lib/intel_compute_square_kernels.c | 49 +++++++
2 files changed, 262 insertions(+)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index 879928ab6..1c1323130 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -1161,6 +1161,126 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel,
bo_execenv_destroy(&execenv);
}
+static void xelpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
+ uint64_t addr_general_state_base,
+ uint64_t addr_surface_state_base,
+ uint64_t addr_dynamic_state_base,
+ uint64_t addr_instruction_state_base,
+ uint64_t offset_indirect_data_start,
+ uint64_t kernel_start_pointer)
+{
+ int b = 0;
+
+ igt_debug("general state base: %"PRIx64"\n", addr_general_state_base);
+ igt_debug("surface state base: %"PRIx64"\n", addr_surface_state_base);
+ igt_debug("dynamic state base: %"PRIx64"\n", addr_dynamic_state_base);
+ igt_debug("instruct base addr: %"PRIx64"\n", addr_instruction_state_base);
+ igt_debug("bindless base addr: %"PRIx64"\n", addr_surface_state_base);
+ igt_debug("offset indirect addr: %"PRIx64"\n", offset_indirect_data_start);
+ igt_debug("kernel start pointer: %"PRIx64"\n", kernel_start_pointer);
+
+
+ addr_bo_buffer_batch[b++] = GEN7_PIPELINE_SELECT | GEN9_PIPELINE_SELECTION_MASK |
+ PIPELINE_SELECT_GPGPU;
+
+ addr_bo_buffer_batch[b++] = XEHP_STATE_COMPUTE_MODE;
+ addr_bo_buffer_batch[b++] = 0x80000000;
+
+ addr_bo_buffer_batch[b++] = XEHP_CFE_STATE | 0x4;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x03808800;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
+ addr_bo_buffer_batch[b++] = 0x00002580;
+ addr_bo_buffer_batch[b++] = 0x00060002;
+
+
+ addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
+ addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_general_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00028000;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = (addr_dynamic_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_dynamic_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = (addr_instruction_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_instruction_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = 0x00010001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00007fbf;
+ addr_bo_buffer_batch[b++] = 0x5E70F021;
+ addr_bo_buffer_batch[b++] = 0x00007F6A;
+ addr_bo_buffer_batch[b++] = 0x00010000;
+
+
+ addr_bo_buffer_batch[b++] = GEN8_3DSTATE_BINDING_TABLE_POOL_ALLOC | 0x2;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x2;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x001ff000;
+
+ addr_bo_buffer_batch[b++] = XEHP_COMPUTE_WALKER | 0x25;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000040;
+ addr_bo_buffer_batch[b++] = offset_indirect_data_start;
+ addr_bo_buffer_batch[b++] = 0xbe040000;
+ addr_bo_buffer_batch[b++] = 0xffffffff;
+ addr_bo_buffer_batch[b++] = 0x000003ff;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = kernel_start_pointer;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001080;
+ addr_bo_buffer_batch[b++] = 0x0c000020;
+
+ addr_bo_buffer_batch[b++] = 0x00000008;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001087;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000400;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = PIPE_CONTROL;
+ addr_bo_buffer_batch[b++] = 0x00100000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_BATCH_BUFFER_END;
+}
+
+
static void xe2lpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
uint64_t addr_general_state_base,
uint64_t addr_surface_state_base,
@@ -1321,6 +1441,94 @@ static void xe2_create_indirect_data_inc_kernel(uint32_t *addr_bo_buffer_batch,
addr_bo_buffer_batch[b++] = 0x00000000;
}
+/**
+ * xelpg_compute_exec - run a pipeline compatible with MTL
+ *
+ * @fd: file descriptor of the opened DRM device
+ * @kernel: GPU Kernel binary to be executed
+ * @size: size of @kernel.
+ * @eci: xelpg engine class instance if device is MTL
+ */
+static void xelpg_compute_exec(int fd, const unsigned char *kernel,
+ unsigned int size,
+ struct drm_xe_engine_class_instance *eci)
+{
+#define XELPG_BO_DICT_ENTRIES 9
+ struct bo_dict_entry bo_dict[XELPG_BO_DICT_ENTRIES] = {
+ { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL,
+ .name = "instr state base"},
+ { .addr = ADDR_DYNAMIC_STATE_BASE,
+ .size = 0x100000,
+ .name = "dynamic state base"},
+ { .addr = ADDR_SURFACE_STATE_BASE,
+ .size = 0x1000,
+ .name = "surface state base"},
+ { .addr = ADDR_GENERAL_STATE_BASE + OFFSET_INDIRECT_DATA_START,
+ .size = 0x1000,
+ .name = "indirect object base"},
+ { .addr = ADDR_INPUT, .size = SIZE_BUFFER_INPUT,
+ .name = "addr input"},
+ { .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT,
+ .name = "addr output" },
+ { .addr = ADDR_GENERAL_STATE_BASE, .size = 0x100000,
+ .name = "general state base" },
+ { .addr = ADDR_SURFACE_STATE_BASE + OFFSET_BINDING_TABLE,
+ .size = 0x1000,
+ .name = "binding table" },
+ { .addr = ADDR_BATCH,
+ .size = SIZE_BATCH,
+ .name = "batch" },
+ };
+
+ struct bo_execenv execenv;
+ float *dinput;
+
+ bo_execenv_create(fd, &execenv, eci);
+
+ /* Sets Kernel size */
+ bo_dict[0].size = ALIGN(size, 0x1000);
+
+ bo_execenv_bind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
+
+ memcpy(bo_dict[0].data, kernel, size);
+
+ create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL);
+ xehp_create_surface_state(bo_dict[2].data, ADDR_INPUT, ADDR_OUTPUT);
+ xehp_create_indirect_data(bo_dict[3].data, ADDR_INPUT, ADDR_OUTPUT);
+ xehp_create_surface_state(bo_dict[7].data, ADDR_INPUT, ADDR_OUTPUT);
+
+ dinput = (float *)bo_dict[4].data;
+ srand(time(NULL));
+
+ for (int i = 0; i < SIZE_DATA; i++)
+ ((float *)dinput)[i] = rand() / (float)RAND_MAX;
+
+ xelpg_compute_exec_compute(bo_dict[8].data,
+ ADDR_GENERAL_STATE_BASE,
+ ADDR_SURFACE_STATE_BASE,
+ ADDR_DYNAMIC_STATE_BASE,
+ ADDR_INSTRUCTION_STATE_BASE,
+ OFFSET_INDIRECT_DATA_START,
+ OFFSET_KERNEL);
+
+ bo_execenv_exec(&execenv, ADDR_BATCH);
+
+ for (int i = 0; i < SIZE_DATA; i++) {
+ float f1, f2;
+
+ f1 = ((float *) bo_dict[5].data)[i];
+ f2 = ((float *) bo_dict[4].data)[i];
+
+ if (f1 != f2 * f2)
+ igt_debug("[%4d] f1: %f != %f %f\n", i, f1, f2 * f2, f2);
+
+ igt_assert(f1 == f2 * f2);
+ }
+
+ bo_execenv_unbind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
+ bo_execenv_destroy(&execenv);
+}
+
/**
* xe2lpg_compute_exec - run a pipeline compatible with XE2
*
@@ -1449,6 +1657,11 @@ static const struct {
.compute_exec = xehpc_compute_exec,
.compat = COMPAT_DRIVER_XE,
},
+ {
+ .ip_ver = IP_VER(12, 70),
+ .compute_exec = xelpg_compute_exec,
+ .compat = COMPAT_DRIVER_I915 | COMPAT_DRIVER_XE,
+ },
{
.ip_ver = IP_VER(20, 01),
.compute_exec = xe2lpg_compute_exec,
diff --git a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
index a1f3b46da..b0912e7e4 100644
--- a/lib/intel_compute_square_kernels.c
+++ b/lib/intel_compute_square_kernels.c
@@ -3844,6 +3844,50 @@ static const unsigned char xe2lpg_kernel_inc_bin[] = {
0x00, 0x00, 0x00, 0x00
};
+unsigned char xelpg_kernel_square_bin[] = {
+ 0x61, 0x00, 0x03, 0x80, 0x20, 0x42, 0x05, 0x7f, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x80, 0x20, 0x82, 0x45, 0x7f,
+ 0x04, 0x00, 0x00, 0x02, 0xc0, 0xff, 0xff, 0xff, 0x40, 0x19, 0x00, 0x80,
+ 0x20, 0x82, 0x45, 0x7f, 0x44, 0x7f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x03, 0x80, 0x00, 0x00, 0x14, 0x08,
+ 0x0c, 0x7f, 0xfa, 0xa7, 0x00, 0x00, 0x10, 0x02, 0x61, 0x00, 0x03, 0x80,
+ 0x20, 0x02, 0x05, 0x03, 0x04, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x09, 0x00, 0x80,
+ 0x20, 0x82, 0x01, 0x80, 0x00, 0x80, 0x00, 0x01, 0xc0, 0x04, 0xc0, 0x04,
+ 0x01, 0x09, 0x00, 0xe8, 0x01, 0x00, 0x11, 0x00, 0x41, 0x1a, 0x20, 0x22,
+ 0x16, 0x09, 0x11, 0x03, 0x49, 0x00, 0x04, 0xa2, 0x12, 0x09, 0x11, 0x03,
+ 0x52, 0x19, 0x04, 0x00, 0x60, 0x06, 0x04, 0x05, 0x04, 0x04, 0x0e, 0x01,
+ 0x04, 0x01, 0x04, 0x07, 0x52, 0x00, 0x24, 0x00, 0x60, 0x06, 0x04, 0x0a,
+ 0x04, 0x04, 0x0e, 0x01, 0x04, 0x02, 0x04, 0x07, 0x70, 0x1a, 0x04, 0x00,
+ 0x60, 0x02, 0x01, 0x00, 0x04, 0x05, 0x10, 0x52, 0x84, 0x08, 0x00, 0x00,
+ 0x70, 0x1a, 0x24, 0x00, 0x60, 0x02, 0x01, 0x00, 0x04, 0x0a, 0x10, 0x52,
+ 0x84, 0x08, 0x00, 0x00, 0x2e, 0x00, 0x05, 0x11, 0x00, 0xc0, 0x00, 0x00,
+ 0xd0, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x69, 0x00, 0x0c, 0x60,
+ 0x02, 0x05, 0x20, 0x00, 0x69, 0x00, 0x0e, 0x66, 0x02, 0x0a, 0x20, 0x00,
+ 0x40, 0x1a, 0x10, 0xa0, 0x32, 0x0c, 0x10, 0x08, 0x40, 0x1a, 0x12, 0xa6,
+ 0x32, 0x0e, 0x10, 0x08, 0x01, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x04, 0x00,
+ 0x00, 0x00, 0x14, 0x14, 0x94, 0x10, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04,
+ 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x31, 0x41, 0x24, 0x00, 0x00, 0x00, 0x14, 0x16,
+ 0x94, 0x12, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04, 0x40, 0x00, 0x0c, 0xa0,
+ 0x4a, 0x0c, 0x10, 0x08, 0x40, 0x00, 0x0e, 0xa6, 0x4a, 0x0e, 0x10, 0x08,
+ 0x41, 0x20, 0x14, 0x20, 0x00, 0x14, 0x00, 0x14, 0x41, 0x21, 0x16, 0x26,
+ 0x00, 0x16, 0x00, 0x16, 0x31, 0xa0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x95, 0x0c, 0x08, 0xfa, 0x14, 0x14, 0x00, 0x04, 0x31, 0x91, 0x24, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x95, 0x0e, 0x08, 0xfa, 0x14, 0x16, 0x00, 0x04,
+ 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00,
+ 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x61, 0x00, 0x7f, 0x64, 0x00, 0x03, 0x10, 0x00, 0x01, 0x11, 0x00, 0x80,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x31, 0x40, 0x00, 0x80, 0x04, 0x00, 0x00, 0x00, 0x0c, 0x7f, 0x20, 0x30,
+ 0x00, 0x00, 0x00, 0x00
+};
const struct intel_compute_kernels intel_compute_square_kernels[] = {
{
@@ -3866,6 +3910,11 @@ const struct intel_compute_kernels intel_compute_square_kernels[] = {
.size = sizeof(xehpc_kernel_square_bin),
.kernel = xehpc_kernel_square_bin,
},
+ {
+ .ip_ver = IP_VER(12, 70),
+ .size = sizeof(xelpg_kernel_square_bin),
+ .kernel = xelpg_kernel_square_bin,
+ },
{
.ip_ver = IP_VER(20, 01),
.size = sizeof(xe2lpg_kernel_square_bin),
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* ✗ i915.CI.BAT: failure for GPGPU support for MTL platform (rev5)
2024-12-05 13:28 [PATCH i-g-t] GPGPU support for MTL platform nishit.sharma
@ 2024-12-06 3:01 ` Patchwork
2024-12-06 3:40 ` ✗ Xe.CI.BAT: " Patchwork
` (7 subsequent siblings)
8 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-12-06 3:01 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
== Series Details ==
Series: GPGPU support for MTL platform (rev5)
URL : https://patchwork.freedesktop.org/series/142149/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8139 -> IGTPW_12258
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12258 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12258, 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_12258/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12258:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@basic-flip-vs-dpms@a-dp1:
- fi-kbl-7567u: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12258/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html
Known issues
------------
Here are the changes found in IGTPW_12258 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [PASS][3] -> [FAIL][4] ([i915#12903])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12258/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
* igt@kms_flip@basic-flip-vs-dpms:
- fi-kbl-7567u: [PASS][5] -> [DMESG-WARN][6] ([i915#12920])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12258/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_hdmi_inject@inject-audio:
- bat-adls-6: [PASS][7] -> [SKIP][8] ([i915#13012] / [i915#13030])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-adls-6/igt@kms_hdmi_inject@inject-audio.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12258/bat-adls-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- bat-adls-6: [PASS][9] -> [SKIP][10] ([i915#12916])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-adls-6/igt@kms_pm_rpm@basic-pci-d3-state.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12258/bat-adls-6/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@basic-rte:
- bat-adls-6: [PASS][11] -> [FAIL][12] ([i915#12916])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-adls-6/igt@kms_pm_rpm@basic-rte.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12258/bat-adls-6/igt@kms_pm_rpm@basic-rte.html
#### Possible fixes ####
* igt@i915_module_load@load:
- {bat-mtlp-9}: [DMESG-WARN][13] -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-mtlp-9/igt@i915_module_load@load.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12258/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [FAIL][15] ([i915#12903]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12258/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [SKIP][17] ([i915#9197]) -> [PASS][18] +3 other tests pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12258/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12920
[i915#13012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13012
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8139 -> IGTPW_12258
* Linux: CI_DRM_15796 -> CI_DRM_15798
CI-20190529: 20190529
CI_DRM_15796: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15798: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12258: fb6b180fbabea583b2bfb4e451a51105e9d82b89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12258/index.html
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.BAT: failure for GPGPU support for MTL platform (rev5)
2024-12-05 13:28 [PATCH i-g-t] GPGPU support for MTL platform nishit.sharma
2024-12-06 3:01 ` ✗ i915.CI.BAT: failure for GPGPU support for MTL platform (rev5) Patchwork
@ 2024-12-06 3:40 ` Patchwork
2024-12-06 5:47 ` Sharma, Nishit
2024-12-06 3:41 ` [PATCH i-g-t] GPGPU support for MTL platform Zbigniew Kempczyński
` (6 subsequent siblings)
8 siblings, 1 reply; 19+ messages in thread
From: Patchwork @ 2024-12-06 3:40 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1992 bytes --]
== Series Details ==
Series: GPGPU support for MTL platform (rev5)
URL : https://patchwork.freedesktop.org/series/142149/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8139_BAT -> XEIGTPW_12258_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12258_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12258_BAT, 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 XEIGTPW_12258_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
- bat-lnl-1: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
Build changes
-------------
* IGT: IGT_8139 -> IGTPW_12258
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
IGTPW_12258: fb6b180fbabea583b2bfb4e451a51105e9d82b89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/index.html
[-- Attachment #2: Type: text/html, Size: 2588 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t] GPGPU support for MTL platform
2024-12-05 13:28 [PATCH i-g-t] GPGPU support for MTL platform nishit.sharma
2024-12-06 3:01 ` ✗ i915.CI.BAT: failure for GPGPU support for MTL platform (rev5) Patchwork
2024-12-06 3:40 ` ✗ Xe.CI.BAT: " Patchwork
@ 2024-12-06 3:41 ` Zbigniew Kempczyński
2024-12-06 5:37 ` ✗ Xe.CI.BAT: failure for GPGPU support for MTL platform (rev6) Patchwork
` (5 subsequent siblings)
8 siblings, 0 replies; 19+ messages in thread
From: Zbigniew Kempczyński @ 2024-12-06 3:41 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev, dwarakanath.ramadeva
On Thu, Dec 05, 2024 at 01:28:14PM +0000, nishit.sharma@intel.com wrote:
> From: Nishit Sharma <nishit.sharma@intel.com>
>
> GPGPU shader and pipeline was missing for MTL platform
> Added GPGPU Shader and Compute Pipeline for exercising
> gpgpu in MTL for i915 and XE
>
> Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
> ---
> lib/intel_compute.c | 213 +++++++++++++++++++++++++++++
> lib/intel_compute_square_kernels.c | 49 +++++++
> 2 files changed, 262 insertions(+)
>
> diff --git a/lib/intel_compute.c b/lib/intel_compute.c
> index 879928ab6..1c1323130 100644
> --- a/lib/intel_compute.c
> +++ b/lib/intel_compute.c
> @@ -1161,6 +1161,126 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel,
> bo_execenv_destroy(&execenv);
> }
>
> +static void xelpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
> + uint64_t addr_general_state_base,
> + uint64_t addr_surface_state_base,
> + uint64_t addr_dynamic_state_base,
> + uint64_t addr_instruction_state_base,
> + uint64_t offset_indirect_data_start,
> + uint64_t kernel_start_pointer)
> +{
> + int b = 0;
> +
> + igt_debug("general state base: %"PRIx64"\n", addr_general_state_base);
> + igt_debug("surface state base: %"PRIx64"\n", addr_surface_state_base);
> + igt_debug("dynamic state base: %"PRIx64"\n", addr_dynamic_state_base);
> + igt_debug("instruct base addr: %"PRIx64"\n", addr_instruction_state_base);
> + igt_debug("bindless base addr: %"PRIx64"\n", addr_surface_state_base);
> + igt_debug("offset indirect addr: %"PRIx64"\n", offset_indirect_data_start);
> + igt_debug("kernel start pointer: %"PRIx64"\n", kernel_start_pointer);
> +
> +
> + addr_bo_buffer_batch[b++] = GEN7_PIPELINE_SELECT | GEN9_PIPELINE_SELECTION_MASK |
> + PIPELINE_SELECT_GPGPU;
> +
> + addr_bo_buffer_batch[b++] = XEHP_STATE_COMPUTE_MODE;
> + addr_bo_buffer_batch[b++] = 0x80000000;
> +
> + addr_bo_buffer_batch[b++] = XEHP_CFE_STATE | 0x4;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x03808800;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
> + addr_bo_buffer_batch[b++] = 0x00002580;
> + addr_bo_buffer_batch[b++] = 0x00060002;
> +
Drop one empty line.
> +
> + addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
> + addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_general_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x00028000;
> + addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
> + addr_bo_buffer_batch[b++] = (addr_dynamic_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_dynamic_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = (addr_instruction_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_instruction_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0xfffff001;
> + addr_bo_buffer_batch[b++] = 0x00010001;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0xfffff001;
> + addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x00007fbf;
> + addr_bo_buffer_batch[b++] = 0x5E70F021;
> + addr_bo_buffer_batch[b++] = 0x00007F6A;
> + addr_bo_buffer_batch[b++] = 0x00010000;
> +
> +
> + addr_bo_buffer_batch[b++] = GEN8_3DSTATE_BINDING_TABLE_POOL_ALLOC | 0x2;
> + addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x2;
> + addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x001ff000;
> +
> + addr_bo_buffer_batch[b++] = XEHP_COMPUTE_WALKER | 0x25;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000040;
> + addr_bo_buffer_batch[b++] = offset_indirect_data_start;
> + addr_bo_buffer_batch[b++] = 0xbe040000;
> + addr_bo_buffer_batch[b++] = 0xffffffff;
> + addr_bo_buffer_batch[b++] = 0x000003ff;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> +
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = kernel_start_pointer;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00001080;
> + addr_bo_buffer_batch[b++] = 0x0c000020;
> +
> + addr_bo_buffer_batch[b++] = 0x00000008;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00001087;
> + addr_bo_buffer_batch[b++] = ADDR_BATCH;
> + addr_bo_buffer_batch[b++] = ADDR_BATCH >> 32;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000400;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = PIPE_CONTROL;
> + addr_bo_buffer_batch[b++] = 0x00100000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = MI_BATCH_BUFFER_END;
> +}
> +
> +
> static void xe2lpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
> uint64_t addr_general_state_base,
> uint64_t addr_surface_state_base,
> @@ -1321,6 +1441,94 @@ static void xe2_create_indirect_data_inc_kernel(uint32_t *addr_bo_buffer_batch,
> addr_bo_buffer_batch[b++] = 0x00000000;
> }
>
> +/**
> + * xelpg_compute_exec - run a pipeline compatible with MTL
> + *
> + * @fd: file descriptor of the opened DRM device
> + * @kernel: GPU Kernel binary to be executed
> + * @size: size of @kernel.
> + * @eci: xelpg engine class instance if device is MTL
> + */
> +static void xelpg_compute_exec(int fd, const unsigned char *kernel,
> + unsigned int size,
> + struct drm_xe_engine_class_instance *eci)
> +{
> +#define XELPG_BO_DICT_ENTRIES 9
> + struct bo_dict_entry bo_dict[XELPG_BO_DICT_ENTRIES] = {
> + { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL,
> + .name = "instr state base"},
> + { .addr = ADDR_DYNAMIC_STATE_BASE,
> + .size = 0x100000,
> + .name = "dynamic state base"},
> + { .addr = ADDR_SURFACE_STATE_BASE,
> + .size = 0x1000,
> + .name = "surface state base"},
> + { .addr = ADDR_GENERAL_STATE_BASE + OFFSET_INDIRECT_DATA_START,
> + .size = 0x1000,
> + .name = "indirect object base"},
> + { .addr = ADDR_INPUT, .size = SIZE_BUFFER_INPUT,
> + .name = "addr input"},
> + { .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT,
> + .name = "addr output" },
> + { .addr = ADDR_GENERAL_STATE_BASE, .size = 0x100000,
> + .name = "general state base" },
> + { .addr = ADDR_SURFACE_STATE_BASE + OFFSET_BINDING_TABLE,
> + .size = 0x1000,
> + .name = "binding table" },
> + { .addr = ADDR_BATCH,
> + .size = SIZE_BATCH,
> + .name = "batch" },
> + };
> +
> + struct bo_execenv execenv;
> + float *dinput;
> +
> + bo_execenv_create(fd, &execenv, eci);
> +
> + /* Sets Kernel size */
> + bo_dict[0].size = ALIGN(size, 0x1000);
> +
> + bo_execenv_bind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
> +
> + memcpy(bo_dict[0].data, kernel, size);
> +
> + create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL);
> + xehp_create_surface_state(bo_dict[2].data, ADDR_INPUT, ADDR_OUTPUT);
> + xehp_create_indirect_data(bo_dict[3].data, ADDR_INPUT, ADDR_OUTPUT);
> + xehp_create_surface_state(bo_dict[7].data, ADDR_INPUT, ADDR_OUTPUT);
> +
> + dinput = (float *)bo_dict[4].data;
> + srand(time(NULL));
> +
> + for (int i = 0; i < SIZE_DATA; i++)
> + ((float *)dinput)[i] = rand() / (float)RAND_MAX;
> +
> + xelpg_compute_exec_compute(bo_dict[8].data,
> + ADDR_GENERAL_STATE_BASE,
> + ADDR_SURFACE_STATE_BASE,
> + ADDR_DYNAMIC_STATE_BASE,
> + ADDR_INSTRUCTION_STATE_BASE,
> + OFFSET_INDIRECT_DATA_START,
> + OFFSET_KERNEL);
> +
> + bo_execenv_exec(&execenv, ADDR_BATCH);
> +
> + for (int i = 0; i < SIZE_DATA; i++) {
> + float f1, f2;
> +
> + f1 = ((float *) bo_dict[5].data)[i];
> + f2 = ((float *) bo_dict[4].data)[i];
> +
> + if (f1 != f2 * f2)
> + igt_debug("[%4d] f1: %f != %f %f\n", i, f1, f2 * f2, f2);
> +
> + igt_assert(f1 == f2 * f2);
> + }
> +
> + bo_execenv_unbind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
> + bo_execenv_destroy(&execenv);
> +}
> +
> /**
> * xe2lpg_compute_exec - run a pipeline compatible with XE2
> *
> @@ -1449,6 +1657,11 @@ static const struct {
> .compute_exec = xehpc_compute_exec,
> .compat = COMPAT_DRIVER_XE,
> },
> + {
> + .ip_ver = IP_VER(12, 70),
> + .compute_exec = xelpg_compute_exec,
> + .compat = COMPAT_DRIVER_I915 | COMPAT_DRIVER_XE,
Great. I've verified on xe and it is working fine.
With small nit fixed:
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
--
Zbigniew
> + },
> {
> .ip_ver = IP_VER(20, 01),
> .compute_exec = xe2lpg_compute_exec,
> diff --git a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
> index a1f3b46da..b0912e7e4 100644
> --- a/lib/intel_compute_square_kernels.c
> +++ b/lib/intel_compute_square_kernels.c
> @@ -3844,6 +3844,50 @@ static const unsigned char xe2lpg_kernel_inc_bin[] = {
> 0x00, 0x00, 0x00, 0x00
> };
>
> +unsigned char xelpg_kernel_square_bin[] = {
> + 0x61, 0x00, 0x03, 0x80, 0x20, 0x42, 0x05, 0x7f, 0x00, 0x00, 0x00, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x80, 0x20, 0x82, 0x45, 0x7f,
> + 0x04, 0x00, 0x00, 0x02, 0xc0, 0xff, 0xff, 0xff, 0x40, 0x19, 0x00, 0x80,
> + 0x20, 0x82, 0x45, 0x7f, 0x44, 0x7f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
> + 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x03, 0x80, 0x00, 0x00, 0x14, 0x08,
> + 0x0c, 0x7f, 0xfa, 0xa7, 0x00, 0x00, 0x10, 0x02, 0x61, 0x00, 0x03, 0x80,
> + 0x20, 0x02, 0x05, 0x03, 0x04, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
> + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
> + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x09, 0x00, 0x80,
> + 0x20, 0x82, 0x01, 0x80, 0x00, 0x80, 0x00, 0x01, 0xc0, 0x04, 0xc0, 0x04,
> + 0x01, 0x09, 0x00, 0xe8, 0x01, 0x00, 0x11, 0x00, 0x41, 0x1a, 0x20, 0x22,
> + 0x16, 0x09, 0x11, 0x03, 0x49, 0x00, 0x04, 0xa2, 0x12, 0x09, 0x11, 0x03,
> + 0x52, 0x19, 0x04, 0x00, 0x60, 0x06, 0x04, 0x05, 0x04, 0x04, 0x0e, 0x01,
> + 0x04, 0x01, 0x04, 0x07, 0x52, 0x00, 0x24, 0x00, 0x60, 0x06, 0x04, 0x0a,
> + 0x04, 0x04, 0x0e, 0x01, 0x04, 0x02, 0x04, 0x07, 0x70, 0x1a, 0x04, 0x00,
> + 0x60, 0x02, 0x01, 0x00, 0x04, 0x05, 0x10, 0x52, 0x84, 0x08, 0x00, 0x00,
> + 0x70, 0x1a, 0x24, 0x00, 0x60, 0x02, 0x01, 0x00, 0x04, 0x0a, 0x10, 0x52,
> + 0x84, 0x08, 0x00, 0x00, 0x2e, 0x00, 0x05, 0x11, 0x00, 0xc0, 0x00, 0x00,
> + 0xd0, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x69, 0x00, 0x0c, 0x60,
> + 0x02, 0x05, 0x20, 0x00, 0x69, 0x00, 0x0e, 0x66, 0x02, 0x0a, 0x20, 0x00,
> + 0x40, 0x1a, 0x10, 0xa0, 0x32, 0x0c, 0x10, 0x08, 0x40, 0x1a, 0x12, 0xa6,
> + 0x32, 0x0e, 0x10, 0x08, 0x01, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x04, 0x00,
> + 0x00, 0x00, 0x14, 0x14, 0x94, 0x10, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04,
> + 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x31, 0x41, 0x24, 0x00, 0x00, 0x00, 0x14, 0x16,
> + 0x94, 0x12, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04, 0x40, 0x00, 0x0c, 0xa0,
> + 0x4a, 0x0c, 0x10, 0x08, 0x40, 0x00, 0x0e, 0xa6, 0x4a, 0x0e, 0x10, 0x08,
> + 0x41, 0x20, 0x14, 0x20, 0x00, 0x14, 0x00, 0x14, 0x41, 0x21, 0x16, 0x26,
> + 0x00, 0x16, 0x00, 0x16, 0x31, 0xa0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x95, 0x0c, 0x08, 0xfa, 0x14, 0x14, 0x00, 0x04, 0x31, 0x91, 0x24, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x95, 0x0e, 0x08, 0xfa, 0x14, 0x16, 0x00, 0x04,
> + 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
> + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
> + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00,
> + 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
> + 0x61, 0x00, 0x7f, 0x64, 0x00, 0x03, 0x10, 0x00, 0x01, 0x11, 0x00, 0x80,
> + 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x31, 0x40, 0x00, 0x80, 0x04, 0x00, 0x00, 0x00, 0x0c, 0x7f, 0x20, 0x30,
> + 0x00, 0x00, 0x00, 0x00
> +};
>
> const struct intel_compute_kernels intel_compute_square_kernels[] = {
> {
> @@ -3866,6 +3910,11 @@ const struct intel_compute_kernels intel_compute_square_kernels[] = {
> .size = sizeof(xehpc_kernel_square_bin),
> .kernel = xehpc_kernel_square_bin,
> },
> + {
> + .ip_ver = IP_VER(12, 70),
> + .size = sizeof(xelpg_kernel_square_bin),
> + .kernel = xelpg_kernel_square_bin,
> + },
> {
> .ip_ver = IP_VER(20, 01),
> .size = sizeof(xe2lpg_kernel_square_bin),
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.BAT: failure for GPGPU support for MTL platform (rev6)
2024-12-05 13:28 [PATCH i-g-t] GPGPU support for MTL platform nishit.sharma
` (2 preceding siblings ...)
2024-12-06 3:41 ` [PATCH i-g-t] GPGPU support for MTL platform Zbigniew Kempczyński
@ 2024-12-06 5:37 ` Patchwork
2024-12-06 5:46 ` ✗ i915.CI.BAT: " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-12-06 5:37 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1902 bytes --]
== Series Details ==
Series: GPGPU support for MTL platform (rev6)
URL : https://patchwork.freedesktop.org/series/142149/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8139_BAT -> XEIGTPW_12262_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12262_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12262_BAT, 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 XEIGTPW_12262_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
- bat-lnl-1: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
Build changes
-------------
* IGT: IGT_8139 -> IGTPW_12262
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422
IGTPW_12262: 12262
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/index.html
[-- Attachment #2: Type: text/html, Size: 2498 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ i915.CI.BAT: failure for GPGPU support for MTL platform (rev6)
2024-12-05 13:28 [PATCH i-g-t] GPGPU support for MTL platform nishit.sharma
` (3 preceding siblings ...)
2024-12-06 5:37 ` ✗ Xe.CI.BAT: failure for GPGPU support for MTL platform (rev6) Patchwork
@ 2024-12-06 5:46 ` Patchwork
2024-12-06 6:41 ` ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev5) Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-12-06 5:46 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
== Series Details ==
Series: GPGPU support for MTL platform (rev6)
URL : https://patchwork.freedesktop.org/series/142149/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8139 -> IGTPW_12262
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12262 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12262, 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_12262/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12262:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/bat-arlh-2/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-2:
- fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] +2 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/fi-cfl-8109u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-2.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/fi-cfl-8109u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-2.html
Known issues
------------
Here are the changes found in IGTPW_12262 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [PASS][5] -> [FAIL][6] ([i915#12903])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][7] -> [ABORT][8] ([i915#12061]) +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: [SKIP][9] ([i915#9197]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8139 -> IGTPW_12262
* Linux: CI_DRM_15796 -> CI_DRM_15799
CI-20190529: 20190529
CI_DRM_15796: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15799: e57b4b7cd137e0ae00d2601b4b55ab7f504da422 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12262: 12262
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/index.html
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: ✗ Xe.CI.BAT: failure for GPGPU support for MTL platform (rev5)
2024-12-06 3:40 ` ✗ Xe.CI.BAT: " Patchwork
@ 2024-12-06 5:47 ` Sharma, Nishit
2024-12-06 12:35 ` Ravali, JupallyX
0 siblings, 1 reply; 19+ messages in thread
From: Sharma, Nishit @ 2024-12-06 5:47 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 2549 bytes --]
Hi,
The regression is not because of IGT patch. It might be due to something else
Requesting for full run.
Possible regressions
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
* bat-lnl-1: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html> +1 other test dmesg-warn
Regards
Nishit
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Friday, December 6, 2024 9:10 AM
To: Sharma, Nishit <nishit.sharma@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.BAT: failure for GPGPU support for MTL platform (rev5)
Patch Details
Series:
GPGPU support for MTL platform (rev5)
URL:
https://patchwork.freedesktop.org/series/142149/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/index.html
CI Bug Log - changes from XEIGT_8139_BAT -> XEIGTPW_12258_BAT
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_12258_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12258_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto: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 XEIGTPW_12258_BAT:
IGT changes
Possible regressions
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
* bat-lnl-1: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html> +1 other test dmesg-warn
Build changes
* IGT: IGT_8139 -> IGTPW_12258
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
IGTPW_12258: fb6b180fbabea583b2bfb4e451a51105e9d82b89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
[-- Attachment #2: Type: text/html, Size: 13335 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev5)
2024-12-05 13:28 [PATCH i-g-t] GPGPU support for MTL platform nishit.sharma
` (4 preceding siblings ...)
2024-12-06 5:46 ` ✗ i915.CI.BAT: " Patchwork
@ 2024-12-06 6:41 ` Patchwork
2024-12-06 10:02 ` ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6) Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-12-06 6:41 UTC (permalink / raw)
To: Sharma, Nishit; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 83050 bytes --]
== Series Details ==
Series: GPGPU support for MTL platform (rev5)
URL : https://patchwork.freedesktop.org/series/142149/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12258_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12258_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12258_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12258_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-lnl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled:
- shard-bmg: [PASS][2] -> [DMESG-FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-bmg: [PASS][4] -> [DMESG-WARN][5] +11 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_psr@fbc-psr-suspend@edp-1:
- shard-lnl: NOTRUN -> [ABORT][6] +2 other tests abort
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_psr@fbc-psr-suspend@edp-1.html
* igt@xe_exec_fault_mode@once-userptr-invalidate:
- shard-bmg: NOTRUN -> [DMESG-WARN][7] +7 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_exec_fault_mode@once-userptr-invalidate.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [ABORT][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
Known issues
------------
Here are the changes found in XEIGTPW_12258_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1125]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@intel_hwmon@hwmon-read.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-lnl: NOTRUN -> [ABORT][10] ([Intel XE#3673]) +3 other tests abort
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: NOTRUN -> [FAIL][11] ([Intel XE#911]) +3 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#873])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3279]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_interruptible@legacy-setmode@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-WARN][14] ([Intel XE#1727] / [Intel XE#3468])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-dp-2.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2370])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +8 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3658])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [PASS][19] -> [DMESG-WARN][20] ([Intel XE#2705] / [Intel XE#3468]) +3 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +24 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +17 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2328])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1428])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#2314] / [Intel XE#2894])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2191]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1512]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#367]) +4 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#367]) +6 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +16 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2669]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#3432]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3432]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2887]) +28 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +22 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1152]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_cdclk@plane-scaling.html
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2724])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#306]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2325])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#373]) +20 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2252]) +13 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_color@ctm-blue-to-red:
- shard-bmg: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#2705]) +1 other test dmesg-warn
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_color@ctm-blue-to-red.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_color@ctm-blue-to-red.html
* igt@kms_color@deep-color:
- shard-bmg: [PASS][46] -> [DMESG-FAIL][47] ([Intel XE#3468]) +19 other tests dmesg-fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_color@deep-color.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#307]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@kms_content_protection@dp-mst-type-1.html
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2390]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#3278])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_content_protection@lic-type-1.html
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2341])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2:
- shard-bmg: [PASS][53] -> [DMESG-FAIL][54] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1424]) +11 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#2321])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#309]) +11 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2291]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#2291]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#323]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2286]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1340])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#2244]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#776])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#702])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#703])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2373])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2316]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1421]) +10 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2316])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@blocking-wf_vblank:
- shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#2882])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip@blocking-wf_vblank.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][75] ([Intel XE#2882])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_flip@blocking-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-lnl: NOTRUN -> [FAIL][76] ([Intel XE#886]) +1 other test fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][77] ([Intel XE#3468]) +71 other tests dmesg-warn
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1397] / [Intel XE#1745]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-bmg: [PASS][79] -> [INCOMPLETE][80] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1401]) +9 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1397]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401] / [Intel XE#1745]) +9 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2293]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#352]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#651]) +17 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][88] ([Intel XE#2333]) +10 other tests fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [DMESG-FAIL][89] ([Intel XE#3468]) +16 other tests dmesg-fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-bmg: NOTRUN -> [INCOMPLETE][90] ([Intel XE#3468])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2311]) +32 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2313]) +41 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1469])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2350])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2312]) +22 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#656]) +87 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#2340])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_getfb@getfb2-accept-ccs.html
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2340])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#3544])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1503]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [PASS][101] -> [SKIP][102] ([Intel XE#1503])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_hdr@static-toggle-dpms.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#346]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_joiner@basic-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#346]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2934])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2934])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2486])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_lowres@tiling-4@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#599]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2493]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2493]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][111] ([Intel XE#1727]) +3 other tests dmesg-warn
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +19 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [PASS][113] -> [DMESG-WARN][114] ([Intel XE#2566] / [Intel XE#3468]) +1 other test dmesg-warn
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +27 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#870])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#718])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1131])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2392])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1439] / [Intel XE#3141])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2893]) +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#1489]) +12 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1128]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2387])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1406]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2234])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2330])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#3414]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#3414]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-3:
- shard-bmg: [PASS][133] -> [FAIL][134] ([Intel XE#3559]) +4 other tests fail
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][135] -> [SKIP][136] ([Intel XE#1435]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#1435])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1435]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#362])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2426])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][141] -> [FAIL][142] ([Intel XE#899])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1499]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1499])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#756])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1091] / [Intel XE#2849])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1062])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@xe_create@create-big-vram.html
* igt@xe_eudebug@attach-debug-metadata:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#2905]) +22 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-4/igt@xe_eudebug@attach-debug-metadata.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2905]) +16 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#688]) +14 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][151] ([Intel XE#1473])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2322]) +15 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1392]) +22 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate:
- shard-bmg: [PASS][154] -> [DMESG-WARN][155] ([Intel XE#1727]) +3 other tests dmesg-warn
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_reset@virtual-close-execqueues-close-fd:
- shard-bmg: [PASS][156] -> [FAIL][157] ([Intel XE#3488])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html
* igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate:
- shard-bmg: [PASS][158] -> [DMESG-WARN][159] ([Intel XE#3468]) +81 other tests dmesg-warn
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_exec_threads@threads-bal-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: NOTRUN -> [DMESG-WARN][160] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [PASS][161] -> [DMESG-WARN][162] ([Intel XE#3467] / [Intel XE#3468])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][163] ([Intel XE#3467])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [PASS][164] -> [DMESG-WARN][165] ([Intel XE#3343])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#3467]) +1 other test dmesg-warn
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#2229]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
- shard-bmg: NOTRUN -> [INCOMPLETE][169] ([Intel XE#2998]) +1 other test incomplete
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2229])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_mmap@bad-object:
- shard-bmg: NOTRUN -> [DMESG-WARN][171] ([Intel XE#2705] / [Intel XE#3468])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_mmap@bad-object.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#512])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@xe_mmap@small-bar.html
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#586])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@xe_mmap@small-bar.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#2248])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#977])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2245])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2284]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s2idle-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][179] ([Intel XE#1358] / [Intel XE#1616])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-3/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#584]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-exec-after:
- shard-bmg: [PASS][181] -> [DMESG-WARN][182] ([Intel XE#1727] / [Intel XE#3468]) +14 other tests dmesg-warn
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_pm@s4-exec-after.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: NOTRUN -> [DMESG-WARN][183] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#579])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: NOTRUN -> [FAIL][185] ([Intel XE#958])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#944]) +3 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#944]) +4 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-lnl: [FAIL][188] -> [PASS][189] +3 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][190] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-bmg: [INCOMPLETE][192] -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][194] ([Intel XE#2291]) -> [PASS][195] +1 other test pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [ABORT][196] ([Intel XE#3468]) -> [PASS][197] +1 other test pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][198] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][199] +2 other tests pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [SKIP][200] ([Intel XE#2316]) -> [PASS][201] +3 other tests pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [FAIL][202] ([Intel XE#2882]) -> [PASS][203] +3 other tests pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
- shard-bmg: [FAIL][204] ([Intel XE#3674]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-bmg: [DMESG-WARN][206] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][207] +1 other test pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_hdr@static-swap:
- shard-bmg: [SKIP][208] ([Intel XE#1503]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_hdr@static-swap.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_hdr@static-swap.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][210] ([Intel XE#3012]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-59:
- shard-bmg: [DMESG-WARN][212] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][213] +5 other tests pass
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][214] ([Intel XE#2883]) -> [PASS][215] +2 other tests pass
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [FAIL][216] ([Intel XE#899]) -> [PASS][217] +1 other test pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vblank@wait-busy-hang:
- shard-bmg: [DMESG-FAIL][218] ([Intel XE#3468]) -> [PASS][219] +8 other tests pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_vblank@wait-busy-hang.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-bmg: [FAIL][220] -> [PASS][221]
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
- shard-bmg: [DMESG-WARN][222] -> [PASS][223] +3 other tests pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
* igt@xe_exec_threads@threads-cm-userptr-invalidate-race:
- shard-bmg: [DMESG-WARN][224] ([Intel XE#1727]) -> [PASS][225] +3 other tests pass
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-bmg: [DMESG-WARN][226] ([Intel XE#3467]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [SKIP][228] ([Intel XE#1192]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_live_ktest@xe_migrate.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [SKIP][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255]) ([Intel XE#2457]) -> ([PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@xe_module_load@load.html
* igt@xe_module_load@many-reload:
- shard-bmg: [FAIL][281] ([Intel XE#3625]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@xe_module_load@many-reload.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-lnl: [FAIL][283] ([Intel XE#2564]) -> [PASS][284] +1 other test pass
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html
* igt@xe_vm@mixed-userptr-misaligned-binds-1611661312:
- shard-bmg: [DMESG-WARN][285] ([Intel XE#3468]) -> [PASS][286] +27 other tests pass
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_vm@mixed-userptr-misaligned-binds-1611661312.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_vm@mixed-userptr-misaligned-binds-1611661312.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: [DMESG-FAIL][287] ([Intel XE#3468]) -> [DMESG-WARN][288] ([Intel XE#3468])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: [FAIL][289] ([Intel XE#1178]) -> [INCOMPLETE][290] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-bmg: [DMESG-WARN][291] ([Intel XE#3468]) -> [SKIP][292] ([Intel XE#2291])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [FAIL][293] ([Intel XE#2882]) -> [SKIP][294] ([Intel XE#2316])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [SKIP][295] ([Intel XE#2316]) -> [DMESG-WARN][296] ([Intel XE#3468])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][297] ([Intel XE#2311]) -> [SKIP][298] ([Intel XE#2312]) +11 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: [FAIL][299] ([Intel XE#2333]) -> [DMESG-FAIL][300] ([Intel XE#3468]) +5 other tests dmesg-fail
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [DMESG-FAIL][301] ([Intel XE#3468]) -> [FAIL][302] ([Intel XE#2333]) +5 other tests fail
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [FAIL][303] ([Intel XE#2333]) -> [SKIP][304] ([Intel XE#2312]) +7 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][305] ([Intel XE#2312]) -> [FAIL][306] ([Intel XE#2333]) +6 other tests fail
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][307] ([Intel XE#2312]) -> [DMESG-FAIL][308] ([Intel XE#3468]) +1 other test dmesg-fail
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][309] ([Intel XE#2312]) -> [SKIP][310] ([Intel XE#2311]) +15 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][311] ([Intel XE#2312]) -> [SKIP][312] ([Intel XE#2313]) +12 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][313] ([Intel XE#2313]) -> [SKIP][314] ([Intel XE#2312]) +10 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][315] ([Intel XE#2883]) -> [DMESG-FAIL][316] ([Intel XE#3468]) +1 other test dmesg-fail
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-1/igt@kms_setmode@basic.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][317] ([Intel XE#1729]) -> [SKIP][318] ([Intel XE#2426])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-bmg: [FAIL][319] ([Intel XE#2364]) -> [DMESG-FAIL][320] ([Intel XE#3468])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: [TIMEOUT][321] ([Intel XE#1473]) -> [INCOMPLETE][322] ([Intel XE#1473])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [TIMEOUT][323] ([Intel XE#1473]) -> [FAIL][324] ([Intel XE#1000])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: [DMESG-FAIL][325] -> [DMESG-FAIL][326] ([Intel XE#3468])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict@evict-mixed-threads-large.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-2/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [TIMEOUT][327] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][328] ([Intel XE#1473])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_evict@evict-threads-large.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-5/igt@xe_evict@evict-threads-large.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: [DMESG-WARN][329] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][330] ([Intel XE#3467])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [ABORT][331] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][332] ([Intel XE#3673])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-7/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: [ABORT][333] ([Intel XE#1616] / [Intel XE#3468]) -> [ABORT][334] ([Intel XE#1616])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-userptr.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [DMESG-WARN][335] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [DMESG-WARN][336] ([Intel XE#2280] / [Intel XE#3468])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/shard-bmg-4/igt@xe_pm@s4-vm-bind-userptr.html
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[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#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3488
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#3674]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3674
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8139 -> IGTPW_12258
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
IGTPW_12258: fb6b180fbabea583b2bfb4e451a51105e9d82b89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/index.html
[-- Attachment #2: Type: text/html, Size: 97670 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6)
2024-12-05 13:28 [PATCH i-g-t] GPGPU support for MTL platform nishit.sharma
` (5 preceding siblings ...)
2024-12-06 6:41 ` ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev5) Patchwork
@ 2024-12-06 10:02 ` Patchwork
2024-12-06 10:05 ` Sharma, Nishit
2024-12-06 12:49 ` Sharma, Nishit
2024-12-06 12:33 ` ✓ i915.CI.BAT: success " Patchwork
2024-12-06 13:00 ` [PATCH i-g-t] GPGPU support for MTL platform Kamil Konieczny
8 siblings, 2 replies; 19+ messages in thread
From: Patchwork @ 2024-12-06 10:02 UTC (permalink / raw)
To: Sharma, Nishit; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 82869 bytes --]
== Series Details ==
Series: GPGPU support for MTL platform (rev6)
URL : https://patchwork.freedesktop.org/series/142149/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12262_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12262_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12262_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12262_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [ABORT][2] +6 other tests abort
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
* igt@xe_intel_bb@lot-of-buffers:
- shard-bmg: [PASS][3] -> [DMESG-WARN][4] +2 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_intel_bb@lot-of-buffers.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_intel_bb@lot-of-buffers.html
#### Warnings ####
* igt@xe_module_load@load:
- shard-dg2-set2: ([FAIL][5], [FAIL][6], [FAIL][7], [FAIL][8], [FAIL][9], [FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13], [FAIL][14], [FAIL][15], [FAIL][16], [FAIL][17], [FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [FAIL][24], [FAIL][25], [FAIL][26], [FAIL][27], [FAIL][28], [FAIL][29]) ([Intel XE#3715]) -> ([FAIL][30], [FAIL][31], [FAIL][32], [FAIL][33], [FAIL][34], [FAIL][35], [FAIL][36], [FAIL][37], [FAIL][38], [FAIL][39], [FAIL][40], [FAIL][41], [FAIL][42], [FAIL][43], [FAIL][44], [FAIL][45], [FAIL][46], [FAIL][47], [FAIL][48], [FAIL][49], [FAIL][50], [FAIL][51], [FAIL][52], [FAIL][53], [FAIL][54])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html
Known issues
------------
Here are the changes found in XEIGTPW_12262_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1125])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#3157])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][57] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][58] ([Intel XE#3468]) +25 other tests dmesg-warn
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-bmg: [PASS][59] -> [DMESG-FAIL][60] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-2-4-rc-ccs:
- shard-bmg: NOTRUN -> [DMESG-FAIL][61] ([Intel XE#3468]) +6 other tests dmesg-fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-2-4-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: NOTRUN -> [FAIL][62] ([Intel XE#911]) +3 other tests fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@invalid-async-flip:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#873])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_async_flips@invalid-async-flip.html
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#873])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#664])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-bmg: [PASS][66] -> [INCOMPLETE][67] ([Intel XE#2613]) +1 other test incomplete
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#3279]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2370])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1407]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#3658])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2327]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1124]) +23 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1124]) +19 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1467]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb.html
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2328])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1428])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#610])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#2191])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2314] / [Intel XE#2894])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1512])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#367]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#367]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2669]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#3433]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#3432]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#3432]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#2887]) +21 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2887]) +20 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1152]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_cdclk@plane-scaling.html
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2724])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#306]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2252]) +14 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#373]) +19 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#307])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2390]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#3278])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_content_protection@lic-type-1.html
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2341])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2320]) +7 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2:
- shard-bmg: [PASS][101] -> [DMESG-WARN][102] ([Intel XE#3468]) +21 other tests dmesg-warn
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2321]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1424]) +11 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2291]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][106] ([Intel XE#877])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#309]) +9 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [PASS][108] -> [SKIP][109] ([Intel XE#2291])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2286])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-render:
- shard-bmg: [PASS][111] -> [INCOMPLETE][112] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests incomplete
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html
* igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled:
- shard-bmg: [PASS][113] -> [DMESG-FAIL][114] ([Intel XE#2705] / [Intel XE#3468])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2244]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [FAIL][116] ([Intel XE#1695])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#776])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#702])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#703])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2373])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][121] -> [FAIL][122] ([Intel XE#2882])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][123] -> [FAIL][124] ([Intel XE#3640])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-bmg: [PASS][125] -> [SKIP][126] ([Intel XE#2316]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1421]) +9 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2316]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#886]) +1 other test fail
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2293]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1397]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2380]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#1401]) +12 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1401] / [Intel XE#1745]) +12 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2311]) +28 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#651]) +13 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [FAIL][140] ([Intel XE#2333]) +12 other tests fail
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2313]) +33 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1469])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2312]) +23 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#656]) +63 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#2340])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2340])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#3374] / [Intel XE#3544])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1503])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#346]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2934])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#2934])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#346])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2927])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2486])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- shard-bmg: [PASS][155] -> [INCOMPLETE][156] ([Intel XE#1727])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_pipe_crc_basic@hang-read-crc.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][157] ([Intel XE#1727])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-2.html
* igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2:
- shard-bmg: [PASS][158] -> [DMESG-FAIL][159] ([Intel XE#3468]) +10 other tests dmesg-fail
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#599]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2493])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2493])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2763]) +19 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#2763]) +35 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
- shard-bmg: NOTRUN -> [INCOMPLETE][165] ([Intel XE#1727] / [Intel XE#2566] / [Intel XE#2705] / [Intel XE#3468])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- shard-bmg: NOTRUN -> [INCOMPLETE][166] ([Intel XE#1727] / [Intel XE#3468])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][167] -> [FAIL][168] ([Intel XE#718])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#1131])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: NOTRUN -> [FAIL][170] ([Intel XE#1430])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#2893]) +8 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#1489]) +12 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#1128]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2387])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#1406]) +7 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#2234] / [Intel XE#2850]) +19 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2234])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr@psr2-sprite-render:
- shard-lnl: NOTRUN -> [FAIL][180] ([Intel XE#3536]) +1 other test fail
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_psr@psr2-sprite-render.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#3414])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#3414]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#1127])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#1435]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#1435])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#362])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#2426])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#1499])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#1499]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#756]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#756]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#1091] / [Intel XE#2849])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_eudebug@multigpu-basic-client:
- shard-bmg: NOTRUN -> [SKIP][193] ([Intel XE#2905]) +11 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#688]) +16 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][195] ([Intel XE#1473])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#2322]) +14 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#1392]) +17 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@twice-bindexecqueue:
- shard-bmg: [PASS][198] -> [DMESG-WARN][199] ([Intel XE#1727]) +5 other tests dmesg-warn
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_exec_fault_mode@twice-bindexecqueue.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#2905]) +10 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: NOTRUN -> [DMESG-WARN][201] ([Intel XE#3467])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][202] ([Intel XE#3343] / [Intel XE#3468])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [PASS][203] -> [DMESG-WARN][204] ([Intel XE#3467] / [Intel XE#3468]) +2 other tests dmesg-warn
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#2229]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#2229])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231]) -> ([PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [SKIP][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257]) ([Intel XE#378])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [PASS][258] -> [DMESG-WARN][259] ([Intel XE#3467])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_module_load@reload-no-display.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][260] ([Intel XE#2248])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pm@d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][261] ([Intel XE#2284])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][262] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3hot-mmap-system:
- shard-bmg: [PASS][263] -> [DMESG-WARN][264] ([Intel XE#1727] / [Intel XE#3468])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-mmap-system.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_pm@d3hot-mmap-system.html
* igt@xe_pm@s2idle-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][265] ([Intel XE#1358] / [Intel XE#1616])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-basic:
- shard-bmg: [PASS][266] -> [DMESG-WARN][267] ([Intel XE#3468] / [Intel XE#569])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_pm@s3-basic.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-basic-exec:
- shard-bmg: [PASS][268] -> [DMESG-WARN][269] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-basic-exec.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][270] ([Intel XE#584])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][271] ([Intel XE#579])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-lnl: NOTRUN -> [ABORT][272] ([Intel XE#3673]) +8 other tests abort
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
- shard-bmg: NOTRUN -> [ABORT][273] ([Intel XE#3673]) +1 other test abort
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: NOTRUN -> [FAIL][274] ([Intel XE#958])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][275] ([Intel XE#944]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][276] ([Intel XE#944]) +3 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [ABORT][277] ([Intel XE#3421])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][278] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [SKIP][280] ([Intel XE#2291]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-bmg: [INCOMPLETE][282] -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [DMESG-FAIL][284] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][286] ([Intel XE#2425]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][288] ([Intel XE#3321]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [FAIL][290] ([Intel XE#2882]) -> [PASS][291] +2 other tests pass
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [SKIP][292] ([Intel XE#2316]) -> [PASS][293] +4 other tests pass
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-bmg: [DMESG-WARN][294] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][295] +1 other test pass
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@wf_vblank-ts-check@c-edp1:
- shard-lnl: [FAIL][296] ([Intel XE#886]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@c-edp1.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][298] ([Intel XE#3012]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][300] ([Intel XE#2883]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_setmode@basic.html
* igt@kms_vblank@wait-busy-hang:
- shard-bmg: [DMESG-FAIL][302] ([Intel XE#3468]) -> [PASS][303] +3 other tests pass
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_vblank@wait-busy-hang.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [TIMEOUT][304] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-bmg: [FAIL][306] ([Intel XE#3721]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
- shard-bmg: [DMESG-WARN][308] -> [PASS][309] +1 other test pass
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
* igt@xe_exec_threads@threads-cm-userptr-invalidate-race:
- shard-bmg: [DMESG-WARN][310] ([Intel XE#1727]) -> [PASS][311] +2 other tests pass
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [DMESG-WARN][312] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][313] +1 other test pass
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [DMESG-WARN][314] ([Intel XE#3467]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_module_load@many-reload:
- shard-bmg: [FAIL][316] ([Intel XE#3625]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_module_load@many-reload.html
* igt@xe_pm@d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][318] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-basic-exec.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@d3hot-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [DMESG-WARN][320] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-exec-after.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [DMESG-FAIL][322] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s3-mocs.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [DMESG-WARN][324] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-lnl: [FAIL][326] ([Intel XE#2564]) -> [PASS][327] +1 other test pass
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm_residency@idle-residency-on-exec.html
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
- shard-bmg: [DMESG-WARN][328] ([Intel XE#3468]) -> [PASS][329] +40 other tests pass
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
#### Warnings ####
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-bmg: [DMESG-WARN][330] ([Intel XE#3468]) -> [SKIP][331] ([Intel XE#2316])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-lnl: [FAIL][332] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][333] ([Intel XE#886])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [DMESG-FAIL][334] ([Intel XE#3468]) -> [FAIL][335] ([Intel XE#2333]) +3 other tests fail
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [FAIL][336] ([Intel XE#2333]) -> [DMESG-FAIL][337] ([Intel XE#3468])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][338] ([Intel XE#2312]) -> [FAIL][339] ([Intel XE#2333]) +7 other tests fail
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][340] ([Intel XE#2333]) -> [SKIP][341] ([Intel XE#2312]) +5 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][342] ([Intel XE#2311]) -> [SKIP][343] ([Intel XE#2312]) +8 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][344] ([Intel XE#2312]) -> [SKIP][345] ([Intel XE#2311]) +15 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][346] ([Intel XE#2312]) -> [SKIP][347] ([Intel XE#2313]) +8 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][348] ([Intel XE#2313]) -> [SKIP][349] ([Intel XE#2312]) +7 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][350] ([Intel XE#1729]) -> [SKIP][351] ([Intel XE#2426])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
- shard-bmg: [ABORT][352] ([Intel XE#3673]) -> [ABORT][353] ([Intel XE#3468] / [Intel XE#3673]) +1 other test abort
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [ABORT][354] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][355] ([Intel XE#3673]) +1 other test abort
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [ABORT][356] ([Intel XE#1616] / [Intel XE#3468]) -> [ABORT][357] ([Intel XE#1616]) +1 other test abort
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-prefetch.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[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#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[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#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3536
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625
[Intel XE#3640]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#3715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3715
[Intel XE#3721]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3721
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
Build changes
-------------
* IGT: IGT_8139 -> IGTPW_12262
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422
IGTPW_12262: 12262
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/index.html
[-- Attachment #2: Type: text/html, Size: 96207 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6)
2024-12-06 10:02 ` ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6) Patchwork
@ 2024-12-06 10:05 ` Sharma, Nishit
2024-12-06 11:17 ` Sharma, Nishit
2024-12-06 12:49 ` Sharma, Nishit
1 sibling, 1 reply; 19+ messages in thread
From: Sharma, Nishit @ 2024-12-06 10:05 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org,
I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 81299 bytes --]
Hi,
The Possible regression issue mentioned is not because of IGT patch submitted and is not related to
Issue mentioned. IGT patch should pass.
Possible regressions
* igt@kms_async_flips@test-cursor-atomic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_async_flips@test-cursor-atomic.html>
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html> +6 other tests abort
* igt@xe_intel_bb@lot-of-buffers:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_intel_bb@lot-of-buffers.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_intel_bb@lot-of-buffers.html> +2 other tests dmesg-warn
Regards
Nishit
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Friday, December 6, 2024 3:32 PM
To: Sharma, Nishit <nishit.sharma@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6)
Patch Details
Series:
GPGPU support for MTL platform (rev6)
URL:
https://patchwork.freedesktop.org/series/142149/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/index.html
CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12262_full
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_12262_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12262_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_12262_full:
IGT changes
Possible regressions
* igt@kms_async_flips@test-cursor-atomic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_async_flips@test-cursor-atomic.html>
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html> +6 other tests abort
* igt@xe_intel_bb@lot-of-buffers:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_intel_bb@lot-of-buffers.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_intel_bb@lot-of-buffers.html> +2 other tests dmesg-warn
Warnings
* igt@xe_module_load@load:
* shard-dg2-set2: (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>) (Intel XE#3715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3715>) -> (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>)
Known issues
Here are the changes found in XEIGTPW_12262_full that come from known issues:
IGT changes
Issues hit
* igt@intel_hwmon@hwmon-write:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@intel_hwmon@hwmon-write.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>)
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (Intel XE#3157<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157>)
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-fail
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +25 other tests dmesg-warn
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-fail
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-2-4-rc-ccs:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-2-4-rc-ccs.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +6 other tests dmesg-fail
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3 other tests fail
* igt@kms_async_flips@invalid-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
* igt@kms_async_flips@test-cursor:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_async_flips@test-cursor.html> (Intel XE#664<https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>)
* igt@kms_atomic_transition@modeset-transition-nonblocking:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_atomic_transition@modeset-transition-nonblocking.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_atomic_transition@modeset-transition-nonblocking.html> (Intel XE#2613<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613>) +1 other test incomplete
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (Intel XE#3279<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279>) +1 other test skip
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (Intel XE#2370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370>)
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +4 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#3658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>)
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +5 other tests skip
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +23 other tests skip
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +19 other tests skip
* igt@kms_big_fb@yf-tiled-addfb:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>)
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#1428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>)
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>)
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +4 other tests skip
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +5 other tests skip
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html> (Intel XE#2669<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +7 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#3433<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433>) +3 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +2 other tests skip
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +4 other tests skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +21 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +20 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +12 other tests skip
* igt@kms_cdclk@plane-scaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_cdclk@plane-scaling.html> (Intel XE#1152<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152>) +3 other tests skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_cdclk@plane-scaling.html> (Intel XE#2724<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724>)
* igt@kms_chamelium_color@ctm-negative:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_chamelium_color@ctm-negative.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +2 other tests skip
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +14 other tests skip
* igt@kms_chamelium_hpd@dp-hpd:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_chamelium_hpd@dp-hpd.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +19 other tests skip
* igt@kms_content_protection@dp-mst-lic-type-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)
* igt@kms_content_protection@dp-mst-type-1:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390>) +1 other test skip
* igt@kms_content_protection@lic-type-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_content_protection@lic-type-1.html> (Intel XE#3278<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_content_protection@lic-type-1.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
* igt@kms_cursor_crc@cursor-offscreen-128x42:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +7 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +21 other tests dmesg-warn
* igt@kms_cursor_crc@cursor-random-512x170:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +1 other test skip
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +11 other tests skip
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +4 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +9 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>)
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)
* igt@kms_draw_crc@draw-method-render:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests incomplete
* igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip
* igt@kms_fbcon_fbt@fbc-suspend:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#1695<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695>)
* igt@kms_fbcon_fbt@psr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>)
* igt@kms_feature_discovery@display-2x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_feature_discovery@display-2x.html> (Intel XE#702<https://gitlab.freedesktop.org/drm/xe/kernel/issues/702>)
* igt@kms_feature_discovery@display-3x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_feature_discovery@display-3x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html> (Intel XE#3640<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640>)
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +1 other test skip
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +9 other tests skip
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +3 other tests skip
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +1 other test fail
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +12 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +12 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +4 other tests skip
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +28 other tests skip
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +13 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +12 other tests fail
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +33 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#1469<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>)
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +23 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +63 other tests skip
* igt@kms_getfb@getfb2-accept-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* igt@kms_hdr@brightness-with-hdr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
* igt@kms_hdr@invalid-metadata-sizes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>)
* igt@kms_joiner@basic-big-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) +1 other test skip
* igt@kms_joiner@basic-force-ultra-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* igt@kms_joiner@invalid-modeset-big-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* igt@kms_joiner@invalid-modeset-ultra-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
* igt@kms_panel_fitting@atomic-fastset:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html> (Intel XE#2486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486>)
* igt@kms_pipe_crc_basic@hang-read-crc:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_pipe_crc_basic@hang-read-crc.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_pipe_crc_basic@hang-read-crc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-2:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +10 other tests dmesg-fail
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +4 other tests skip
* igt@kms_plane_multiple@tiling-yf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +19 other tests skip
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +35 other tests skip
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_pm_dc@dc5-dpms:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>)
* igt@kms_pm_dc@dc5-dpms-negative:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_pm_dc@dc5-dpms-negative.html> (Intel XE#1131<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131>)
* igt@kms_pm_dc@dc6-dpms:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>)
* igt@kms_pm_rpm@modeset-lpsp:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
* igt@kms_pm_rpm@modeset-non-lpsp:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>) +1 other test skip
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +8 other tests skip
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +12 other tests skip
* igt@kms_psr2_su@page_flip-nv12:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1128<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387>)
* igt@kms_psr@pr-cursor-plane-onoff:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_psr@pr-cursor-plane-onoff.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +7 other tests skip
* igt@kms_psr@psr-primary-page-flip:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +19 other tests skip
* igt@kms_psr@psr2-primary-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_psr@psr2-primary-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234>)
* igt@kms_psr@psr2-sprite-render:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_psr@psr2-sprite-render.html> (Intel XE#3536<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3536>) +1 other test fail
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +2 other tests skip
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
* igt@kms_setmode@invalid-clone-single-crtc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) +1 other test skip
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#362<https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
* igt@kms_vrr@lobf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_vrr@lobf.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
* igt@kms_vrr@seamless-rr-switch-virtual:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-virtual.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
* igt@kms_writeback@writeback-check-output-xrgb2101010:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +2 other tests skip
* igt@kms_writeback@writeback-invalid-parameters:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +1 other test skip
* igt@sriov_basic@enable-vfs-autoprobe-off:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
* igt@xe_eudebug@multigpu-basic-client:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +11 other tests skip
* igt@xe_evict@evict-beng-cm-threads-small:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +16 other tests skip
* igt@xe_evict@evict-mixed-many-threads-large:
* shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +14 other tests skip
* igt@xe_exec_basic@multigpu-once-userptr:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_exec_basic@multigpu-once-userptr.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +17 other tests skip
* igt@xe_exec_fault_mode@twice-bindexecqueue:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_exec_fault_mode@twice-bindexecqueue.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +5 other tests dmesg-warn
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_exec_sip_eudebug@breakpoint-writesip.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +10 other tests skip
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-warn
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) +1 other test skip
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
* igt@xe_module_load@load:
* shard-lnl: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
* igt@xe_module_load@reload-no-display:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_module_load@reload-no-display.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@xe_module_load@reload-no-display.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_oa@oa-tlb-invalidate:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>)
* igt@xe_pm@d3cold-basic-exec:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_pm@d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
* igt@xe_pm@d3cold-mmap-vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm@d3cold-mmap-vram.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +3 other tests skip
* igt@xe_pm@d3hot-mmap-system:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-mmap-system.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_pm@d3hot-mmap-system.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_pm@s2idle-basic-exec:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>)
* igt@xe_pm@s3-basic:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_pm@s3-basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_pm@s3-basic.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-basic-exec:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-basic-exec.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_pm@s3-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-vm-bind-prefetch:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm@s3-vm-bind-prefetch.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>)
* igt@xe_pm@vram-d3cold-threshold:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm@vram-d3cold-threshold.html> (Intel XE#579<https://gitlab.freedesktop.org/drm/xe/kernel/issues/579>)
* igt@xe_pm_residency@gt-c6-freeze@gt0:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +8 other tests abort
* shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm_residency@toggle-gt-c6:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html> (Intel XE#958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/958>)
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip
* igt@xe_wedged@wedged-at-any-timeout:
* shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html> (Intel XE#3421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421>)
Possible fixes
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html>
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html>
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html>
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html>
* igt@kms_display_modes@extended-mode-basic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html> (Intel XE#2425<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html>
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html>
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> +2 other tests pass
* igt@kms_flip@2x-wf_vblank-ts-check:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check.html> +4 other tests pass
* igt@kms_flip@flip-vs-panning-interruptible:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_flip@flip-vs-panning-interruptible.html> +1 other test pass
* igt@kms_flip@wf_vblank-ts-check@c-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@c-edp1.html>
* igt@kms_joiner@invalid-modeset-force-big-joiner:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (Intel XE#3012<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html>
* igt@kms_setmode@basic:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic.html> (Intel XE#2883<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_setmode@basic.html> +1 other test pass
* igt@kms_vblank@wait-busy-hang:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_vblank@wait-busy-hang.html> +3 other tests pass
* igt@xe_evict@evict-mixed-many-threads-small:
* shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html>
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html> (Intel XE#3721<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3721>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html>
* igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html> +1 other test pass
* igt@xe_exec_threads@threads-cm-userptr-invalidate-race:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html> +2 other tests pass
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> +1 other test pass
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> +1 other test pass
* igt@xe_module_load@many-reload:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html> (Intel XE#3625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_module_load@many-reload.html>
* igt@xe_pm@d3hot-basic-exec:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@d3hot-basic-exec.html>
* igt@xe_pm@s3-exec-after:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-exec-after.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_pm@s3-exec-after.html>
* igt@xe_pm@s3-mocs:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s3-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_pm@s3-mocs.html>
* igt@xe_pm@s4-vm-bind-userptr:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s4-vm-bind-userptr.html>
* igt@xe_pm_residency@idle-residency-on-exec:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html> (Intel XE#2564<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm_residency@idle-residency-on-exec.html> +1 other test pass
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> +40 other tests pass
Warnings
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
* igt@kms_flip@wf_vblank-ts-check:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>)
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +3 other tests fail
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +7 other tests fail
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +5 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +8 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +15 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +8 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +7 other tests skip
* igt@kms_tiled_display@basic-test-pattern:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#1729<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm@s2idle-exec-after:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s2idle-exec-after.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm@s2idle-vm-bind-prefetch:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) +1 other test abort
Build changes
* IGT: IGT_8139 -> IGTPW_12262
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422
IGTPW_12262: 12262
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
[-- Attachment #2: Type: text/html, Size: 145348 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6)
2024-12-06 10:05 ` Sharma, Nishit
@ 2024-12-06 11:17 ` Sharma, Nishit
0 siblings, 0 replies; 19+ messages in thread
From: Sharma, Nishit @ 2024-12-06 11:17 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org,
I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 81721 bytes --]
Hi,
The regression issues mentioned are unrelated to my patch series.
Regards
Nishit
From: Sharma, Nishit
Sent: Friday, December 6, 2024 3:35 PM
To: igt-dev@lists.freedesktop.org; I915-ci-infra@lists.freedesktop.org
Subject: RE: ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6)
Hi,
The Possible regression issue mentioned is not because of IGT patch submitted and is not related to
Issue mentioned. IGT patch should pass.
Possible regressions
* igt@kms_async_flips@test-cursor-atomic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_async_flips@test-cursor-atomic.html>
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html> +6 other tests abort
* igt@xe_intel_bb@lot-of-buffers:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_intel_bb@lot-of-buffers.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_intel_bb@lot-of-buffers.html> +2 other tests dmesg-warn
Regards
Nishit
From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Friday, December 6, 2024 3:32 PM
To: Sharma, Nishit <nishit.sharma@intel.com<mailto:nishit.sharma@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6)
Patch Details
Series:
GPGPU support for MTL platform (rev6)
URL:
https://patchwork.freedesktop.org/series/142149/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/index.html
CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12262_full
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_12262_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12262_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_12262_full:
IGT changes
Possible regressions
* igt@kms_async_flips@test-cursor-atomic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_async_flips@test-cursor-atomic.html>
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html> +6 other tests abort
* igt@xe_intel_bb@lot-of-buffers:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_intel_bb@lot-of-buffers.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_intel_bb@lot-of-buffers.html> +2 other tests dmesg-warn
Warnings
* igt@xe_module_load@load:
* shard-dg2-set2: (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>) (Intel XE#3715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3715>) -> (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>)
Known issues
Here are the changes found in XEIGTPW_12262_full that come from known issues:
IGT changes
Issues hit
* igt@intel_hwmon@hwmon-write:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@intel_hwmon@hwmon-write.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>)
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (Intel XE#3157<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157>)
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-fail
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +25 other tests dmesg-warn
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-fail
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-2-4-rc-ccs:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-2-4-rc-ccs.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +6 other tests dmesg-fail
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3 other tests fail
* igt@kms_async_flips@invalid-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
* igt@kms_async_flips@test-cursor:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_async_flips@test-cursor.html> (Intel XE#664<https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>)
* igt@kms_atomic_transition@modeset-transition-nonblocking:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_atomic_transition@modeset-transition-nonblocking.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_atomic_transition@modeset-transition-nonblocking.html> (Intel XE#2613<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613>) +1 other test incomplete
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (Intel XE#3279<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279>) +1 other test skip
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (Intel XE#2370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370>)
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +4 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#3658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>)
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +5 other tests skip
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +23 other tests skip
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +19 other tests skip
* igt@kms_big_fb@yf-tiled-addfb:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>)
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#1428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>)
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>)
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +4 other tests skip
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +5 other tests skip
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html> (Intel XE#2669<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +7 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#3433<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433>) +3 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +2 other tests skip
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +4 other tests skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +21 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +20 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +12 other tests skip
* igt@kms_cdclk@plane-scaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_cdclk@plane-scaling.html> (Intel XE#1152<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152>) +3 other tests skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_cdclk@plane-scaling.html> (Intel XE#2724<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724>)
* igt@kms_chamelium_color@ctm-negative:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_chamelium_color@ctm-negative.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +2 other tests skip
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +14 other tests skip
* igt@kms_chamelium_hpd@dp-hpd:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_chamelium_hpd@dp-hpd.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +19 other tests skip
* igt@kms_content_protection@dp-mst-lic-type-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)
* igt@kms_content_protection@dp-mst-type-1:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390>) +1 other test skip
* igt@kms_content_protection@lic-type-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_content_protection@lic-type-1.html> (Intel XE#3278<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_content_protection@lic-type-1.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
* igt@kms_cursor_crc@cursor-offscreen-128x42:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +7 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +21 other tests dmesg-warn
* igt@kms_cursor_crc@cursor-random-512x170:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +1 other test skip
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +11 other tests skip
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +4 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +9 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>)
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)
* igt@kms_draw_crc@draw-method-render:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests incomplete
* igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip
* igt@kms_fbcon_fbt@fbc-suspend:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#1695<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695>)
* igt@kms_fbcon_fbt@psr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>)
* igt@kms_feature_discovery@display-2x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_feature_discovery@display-2x.html> (Intel XE#702<https://gitlab.freedesktop.org/drm/xe/kernel/issues/702>)
* igt@kms_feature_discovery@display-3x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_feature_discovery@display-3x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html> (Intel XE#3640<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640>)
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +1 other test skip
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +9 other tests skip
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +3 other tests skip
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +1 other test fail
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +12 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +12 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +4 other tests skip
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +28 other tests skip
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +13 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +12 other tests fail
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +33 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#1469<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>)
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +23 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +63 other tests skip
* igt@kms_getfb@getfb2-accept-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* igt@kms_hdr@brightness-with-hdr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
* igt@kms_hdr@invalid-metadata-sizes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>)
* igt@kms_joiner@basic-big-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) +1 other test skip
* igt@kms_joiner@basic-force-ultra-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* igt@kms_joiner@invalid-modeset-big-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* igt@kms_joiner@invalid-modeset-ultra-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
* igt@kms_panel_fitting@atomic-fastset:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html> (Intel XE#2486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486>)
* igt@kms_pipe_crc_basic@hang-read-crc:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_pipe_crc_basic@hang-read-crc.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_pipe_crc_basic@hang-read-crc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-2:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +10 other tests dmesg-fail
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +4 other tests skip
* igt@kms_plane_multiple@tiling-yf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +19 other tests skip
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +35 other tests skip
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_pm_dc@dc5-dpms:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>)
* igt@kms_pm_dc@dc5-dpms-negative:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_pm_dc@dc5-dpms-negative.html> (Intel XE#1131<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131>)
* igt@kms_pm_dc@dc6-dpms:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>)
* igt@kms_pm_rpm@modeset-lpsp:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
* igt@kms_pm_rpm@modeset-non-lpsp:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>) +1 other test skip
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +8 other tests skip
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +12 other tests skip
* igt@kms_psr2_su@page_flip-nv12:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1128<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387>)
* igt@kms_psr@pr-cursor-plane-onoff:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_psr@pr-cursor-plane-onoff.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +7 other tests skip
* igt@kms_psr@psr-primary-page-flip:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +19 other tests skip
* igt@kms_psr@psr2-primary-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_psr@psr2-primary-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234>)
* igt@kms_psr@psr2-sprite-render:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_psr@psr2-sprite-render.html> (Intel XE#3536<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3536>) +1 other test fail
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +2 other tests skip
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
* igt@kms_setmode@invalid-clone-single-crtc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) +1 other test skip
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#362<https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
* igt@kms_vrr@lobf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_vrr@lobf.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
* igt@kms_vrr@seamless-rr-switch-virtual:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-virtual.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
* igt@kms_writeback@writeback-check-output-xrgb2101010:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +2 other tests skip
* igt@kms_writeback@writeback-invalid-parameters:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +1 other test skip
* igt@sriov_basic@enable-vfs-autoprobe-off:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
* igt@xe_eudebug@multigpu-basic-client:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +11 other tests skip
* igt@xe_evict@evict-beng-cm-threads-small:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +16 other tests skip
* igt@xe_evict@evict-mixed-many-threads-large:
* shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +14 other tests skip
* igt@xe_exec_basic@multigpu-once-userptr:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_exec_basic@multigpu-once-userptr.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +17 other tests skip
* igt@xe_exec_fault_mode@twice-bindexecqueue:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_exec_fault_mode@twice-bindexecqueue.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +5 other tests dmesg-warn
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_exec_sip_eudebug@breakpoint-writesip.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +10 other tests skip
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-warn
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) +1 other test skip
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
* igt@xe_module_load@load:
* shard-lnl: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
* igt@xe_module_load@reload-no-display:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_module_load@reload-no-display.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@xe_module_load@reload-no-display.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_oa@oa-tlb-invalidate:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>)
* igt@xe_pm@d3cold-basic-exec:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_pm@d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
* igt@xe_pm@d3cold-mmap-vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm@d3cold-mmap-vram.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +3 other tests skip
* igt@xe_pm@d3hot-mmap-system:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-mmap-system.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_pm@d3hot-mmap-system.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_pm@s2idle-basic-exec:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>)
* igt@xe_pm@s3-basic:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_pm@s3-basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_pm@s3-basic.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-basic-exec:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-basic-exec.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_pm@s3-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-vm-bind-prefetch:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm@s3-vm-bind-prefetch.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>)
* igt@xe_pm@vram-d3cold-threshold:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm@vram-d3cold-threshold.html> (Intel XE#579<https://gitlab.freedesktop.org/drm/xe/kernel/issues/579>)
* igt@xe_pm_residency@gt-c6-freeze@gt0:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +8 other tests abort
* shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm_residency@toggle-gt-c6:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html> (Intel XE#958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/958>)
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip
* igt@xe_wedged@wedged-at-any-timeout:
* shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html> (Intel XE#3421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421>)
Possible fixes
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html>
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html>
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html>
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html>
* igt@kms_display_modes@extended-mode-basic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html> (Intel XE#2425<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html>
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html>
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> +2 other tests pass
* igt@kms_flip@2x-wf_vblank-ts-check:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check.html> +4 other tests pass
* igt@kms_flip@flip-vs-panning-interruptible:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_flip@flip-vs-panning-interruptible.html> +1 other test pass
* igt@kms_flip@wf_vblank-ts-check@c-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@c-edp1.html>
* igt@kms_joiner@invalid-modeset-force-big-joiner:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (Intel XE#3012<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html>
* igt@kms_setmode@basic:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic.html> (Intel XE#2883<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_setmode@basic.html> +1 other test pass
* igt@kms_vblank@wait-busy-hang:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_vblank@wait-busy-hang.html> +3 other tests pass
* igt@xe_evict@evict-mixed-many-threads-small:
* shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html>
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html> (Intel XE#3721<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3721>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html>
* igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html> +1 other test pass
* igt@xe_exec_threads@threads-cm-userptr-invalidate-race:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html> +2 other tests pass
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> +1 other test pass
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> +1 other test pass
* igt@xe_module_load@many-reload:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html> (Intel XE#3625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_module_load@many-reload.html>
* igt@xe_pm@d3hot-basic-exec:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@d3hot-basic-exec.html>
* igt@xe_pm@s3-exec-after:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-exec-after.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_pm@s3-exec-after.html>
* igt@xe_pm@s3-mocs:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s3-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_pm@s3-mocs.html>
* igt@xe_pm@s4-vm-bind-userptr:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s4-vm-bind-userptr.html>
* igt@xe_pm_residency@idle-residency-on-exec:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html> (Intel XE#2564<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm_residency@idle-residency-on-exec.html> +1 other test pass
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> +40 other tests pass
Warnings
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
* igt@kms_flip@wf_vblank-ts-check:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>)
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +3 other tests fail
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +7 other tests fail
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +5 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +8 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +15 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +8 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +7 other tests skip
* igt@kms_tiled_display@basic-test-pattern:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#1729<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm@s2idle-exec-after:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s2idle-exec-after.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm@s2idle-vm-bind-prefetch:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) +1 other test abort
Build changes
* IGT: IGT_8139 -> IGTPW_12262
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422
IGTPW_12262: 12262
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
[-- Attachment #2: Type: text/html, Size: 160064 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ i915.CI.BAT: success for GPGPU support for MTL platform (rev6)
2024-12-05 13:28 [PATCH i-g-t] GPGPU support for MTL platform nishit.sharma
` (6 preceding siblings ...)
2024-12-06 10:02 ` ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6) Patchwork
@ 2024-12-06 12:33 ` Patchwork
2024-12-06 13:00 ` [PATCH i-g-t] GPGPU support for MTL platform Kamil Konieczny
8 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2024-12-06 12:33 UTC (permalink / raw)
To: Sharma, Nishit; +Cc: igt-dev
== Series Details ==
Series: GPGPU support for MTL platform (rev6)
URL : https://patchwork.freedesktop.org/series/142149/
State : success
== Summary ==
CI Bug Log - changes from IGT_8139 -> IGTPW_12262
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12262 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [PASS][1] -> [FAIL][2] ([i915#12903])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-arlh-2: [PASS][3] -> [INCOMPLETE][4] ([i915#13194])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-arlh-2/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [PASS][5] -> [INCOMPLETE][6] ([i915#13269])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [PASS][7] -> [ABORT][8] ([i915#12061]) +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-2:
- fi-cfl-8109u: [PASS][9] -> [DMESG-WARN][10] ([i915#12914]) +2 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/fi-cfl-8109u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-2.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/fi-cfl-8109u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-2.html
#### Possible fixes ####
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: [SKIP][11] ([i915#9197]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914
[i915#13194]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13194
[i915#13269]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13269
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8139 -> IGTPW_12262
* Linux: CI_DRM_15796 -> CI_DRM_15799
CI-20190529: 20190529
CI_DRM_15796: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15799: e57b4b7cd137e0ae00d2601b4b55ab7f504da422 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12262: 12262
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12262/index.html
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: ✗ Xe.CI.BAT: failure for GPGPU support for MTL platform (rev5)
2024-12-06 5:47 ` Sharma, Nishit
@ 2024-12-06 12:35 ` Ravali, JupallyX
0 siblings, 0 replies; 19+ messages in thread
From: Ravali, JupallyX @ 2024-12-06 12:35 UTC (permalink / raw)
To: i915-ci-infra@lists.freedesktop.org,
igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 3226 bytes --]
Hi,
https://patchwork.freedesktop.org/series/142149/ - Re-reported
Xe.CI.BAT - Addressed failures, Xe cannot be re-reported
Xe.CI.Full - Addressed failures, Xe cannot be re-reported
i915.CI.BAT - Re-reported.
Thanks and Regards,
Ravali Jupally.
From: I915-ci-infra <i915-ci-infra-bounces@lists.freedesktop.org> On Behalf Of Sharma, Nishit
Sent: 06 December 2024 11:17
To: igt-dev@lists.freedesktop.org
Cc: I915-ci-infra@lists.freedesktop.org
Subject: RE: ✗ Xe.CI.BAT: failure for GPGPU support for MTL platform (rev5)
Hi,
The regression is not because of IGT patch. It might be due to something else
Requesting for full run.
Possible regressions
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
* bat-lnl-1: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html> +1 other test dmesg-warn
Regards
Nishit
From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Friday, December 6, 2024 9:10 AM
To: Sharma, Nishit <nishit.sharma@intel.com<mailto:nishit.sharma@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Xe.CI.BAT: failure for GPGPU support for MTL platform (rev5)
Patch Details
Series:
GPGPU support for MTL platform (rev5)
URL:
https://patchwork.freedesktop.org/series/142149/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/index.html
CI Bug Log - changes from XEIGT_8139_BAT -> XEIGTPW_12258_BAT
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_12258_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12258_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto: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 XEIGTPW_12258_BAT:
IGT changes
Possible regressions
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
* bat-lnl-1: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12258/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html> +1 other test dmesg-warn
Build changes
* IGT: IGT_8139 -> IGTPW_12258
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
IGTPW_12258: fb6b180fbabea583b2bfb4e451a51105e9d82b89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb
[-- Attachment #2: Type: text/html, Size: 22858 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6)
2024-12-06 10:02 ` ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6) Patchwork
2024-12-06 10:05 ` Sharma, Nishit
@ 2024-12-06 12:49 ` Sharma, Nishit
2024-12-06 12:50 ` Sharma, Nishit
1 sibling, 1 reply; 19+ messages in thread
From: Sharma, Nishit @ 2024-12-06 12:49 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 80550 bytes --]
Hi,
The patch series is success in i915.CI.BAT: success for GPGPU support for MTL platform (rev6). The regression mentioned is not related to patch series submitted.
Regards
Nishit
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Friday, December 6, 2024 3:32 PM
To: Sharma, Nishit <nishit.sharma@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6)
Patch Details
Series:
GPGPU support for MTL platform (rev6)
URL:
https://patchwork.freedesktop.org/series/142149/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/index.html
CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12262_full
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_12262_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12262_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_12262_full:
IGT changes
Possible regressions
* igt@kms_async_flips@test-cursor-atomic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_async_flips@test-cursor-atomic.html>
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html> +6 other tests abort
* igt@xe_intel_bb@lot-of-buffers:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_intel_bb@lot-of-buffers.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_intel_bb@lot-of-buffers.html> +2 other tests dmesg-warn
Warnings
* igt@xe_module_load@load:
* shard-dg2-set2: (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>) (Intel XE#3715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3715>) -> (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>)
Known issues
Here are the changes found in XEIGTPW_12262_full that come from known issues:
IGT changes
Issues hit
* igt@intel_hwmon@hwmon-write:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@intel_hwmon@hwmon-write.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>)
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (Intel XE#3157<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157>)
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-fail
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +25 other tests dmesg-warn
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-fail
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-2-4-rc-ccs:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-2-4-rc-ccs.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +6 other tests dmesg-fail
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3 other tests fail
* igt@kms_async_flips@invalid-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
* igt@kms_async_flips@test-cursor:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_async_flips@test-cursor.html> (Intel XE#664<https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>)
* igt@kms_atomic_transition@modeset-transition-nonblocking:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_atomic_transition@modeset-transition-nonblocking.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_atomic_transition@modeset-transition-nonblocking.html> (Intel XE#2613<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613>) +1 other test incomplete
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (Intel XE#3279<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279>) +1 other test skip
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (Intel XE#2370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370>)
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +4 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#3658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>)
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +5 other tests skip
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +23 other tests skip
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +19 other tests skip
* igt@kms_big_fb@yf-tiled-addfb:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>)
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#1428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>)
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>)
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +4 other tests skip
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +5 other tests skip
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html> (Intel XE#2669<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +7 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#3433<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433>) +3 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +2 other tests skip
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +4 other tests skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +21 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +20 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +12 other tests skip
* igt@kms_cdclk@plane-scaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_cdclk@plane-scaling.html> (Intel XE#1152<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152>) +3 other tests skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_cdclk@plane-scaling.html> (Intel XE#2724<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724>)
* igt@kms_chamelium_color@ctm-negative:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_chamelium_color@ctm-negative.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +2 other tests skip
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +14 other tests skip
* igt@kms_chamelium_hpd@dp-hpd:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_chamelium_hpd@dp-hpd.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +19 other tests skip
* igt@kms_content_protection@dp-mst-lic-type-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)
* igt@kms_content_protection@dp-mst-type-1:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390>) +1 other test skip
* igt@kms_content_protection@lic-type-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_content_protection@lic-type-1.html> (Intel XE#3278<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_content_protection@lic-type-1.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
* igt@kms_cursor_crc@cursor-offscreen-128x42:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +7 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +21 other tests dmesg-warn
* igt@kms_cursor_crc@cursor-random-512x170:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +1 other test skip
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +11 other tests skip
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +4 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +9 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>)
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)
* igt@kms_draw_crc@draw-method-render:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests incomplete
* igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip
* igt@kms_fbcon_fbt@fbc-suspend:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#1695<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695>)
* igt@kms_fbcon_fbt@psr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>)
* igt@kms_feature_discovery@display-2x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_feature_discovery@display-2x.html> (Intel XE#702<https://gitlab.freedesktop.org/drm/xe/kernel/issues/702>)
* igt@kms_feature_discovery@display-3x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_feature_discovery@display-3x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html> (Intel XE#3640<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640>)
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +1 other test skip
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +9 other tests skip
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +3 other tests skip
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +1 other test fail
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +12 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +12 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +4 other tests skip
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +28 other tests skip
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +13 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +12 other tests fail
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +33 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#1469<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>)
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +23 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +63 other tests skip
* igt@kms_getfb@getfb2-accept-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* igt@kms_hdr@brightness-with-hdr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
* igt@kms_hdr@invalid-metadata-sizes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>)
* igt@kms_joiner@basic-big-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) +1 other test skip
* igt@kms_joiner@basic-force-ultra-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* igt@kms_joiner@invalid-modeset-big-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* igt@kms_joiner@invalid-modeset-ultra-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
* igt@kms_panel_fitting@atomic-fastset:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html> (Intel XE#2486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486>)
* igt@kms_pipe_crc_basic@hang-read-crc:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_pipe_crc_basic@hang-read-crc.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_pipe_crc_basic@hang-read-crc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-2:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +10 other tests dmesg-fail
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +4 other tests skip
* igt@kms_plane_multiple@tiling-yf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +19 other tests skip
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +35 other tests skip
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_pm_dc@dc5-dpms:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>)
* igt@kms_pm_dc@dc5-dpms-negative:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_pm_dc@dc5-dpms-negative.html> (Intel XE#1131<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131>)
* igt@kms_pm_dc@dc6-dpms:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>)
* igt@kms_pm_rpm@modeset-lpsp:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
* igt@kms_pm_rpm@modeset-non-lpsp:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>) +1 other test skip
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +8 other tests skip
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +12 other tests skip
* igt@kms_psr2_su@page_flip-nv12:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1128<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387>)
* igt@kms_psr@pr-cursor-plane-onoff:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_psr@pr-cursor-plane-onoff.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +7 other tests skip
* igt@kms_psr@psr-primary-page-flip:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +19 other tests skip
* igt@kms_psr@psr2-primary-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_psr@psr2-primary-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234>)
* igt@kms_psr@psr2-sprite-render:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_psr@psr2-sprite-render.html> (Intel XE#3536<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3536>) +1 other test fail
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +2 other tests skip
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
* igt@kms_setmode@invalid-clone-single-crtc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) +1 other test skip
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#362<https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
* igt@kms_vrr@lobf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_vrr@lobf.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
* igt@kms_vrr@seamless-rr-switch-virtual:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-virtual.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
* igt@kms_writeback@writeback-check-output-xrgb2101010:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +2 other tests skip
* igt@kms_writeback@writeback-invalid-parameters:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +1 other test skip
* igt@sriov_basic@enable-vfs-autoprobe-off:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
* igt@xe_eudebug@multigpu-basic-client:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +11 other tests skip
* igt@xe_evict@evict-beng-cm-threads-small:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +16 other tests skip
* igt@xe_evict@evict-mixed-many-threads-large:
* shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +14 other tests skip
* igt@xe_exec_basic@multigpu-once-userptr:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_exec_basic@multigpu-once-userptr.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +17 other tests skip
* igt@xe_exec_fault_mode@twice-bindexecqueue:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_exec_fault_mode@twice-bindexecqueue.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +5 other tests dmesg-warn
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_exec_sip_eudebug@breakpoint-writesip.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +10 other tests skip
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-warn
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) +1 other test skip
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
* igt@xe_module_load@load:
* shard-lnl: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
* igt@xe_module_load@reload-no-display:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_module_load@reload-no-display.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@xe_module_load@reload-no-display.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_oa@oa-tlb-invalidate:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>)
* igt@xe_pm@d3cold-basic-exec:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_pm@d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
* igt@xe_pm@d3cold-mmap-vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm@d3cold-mmap-vram.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +3 other tests skip
* igt@xe_pm@d3hot-mmap-system:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-mmap-system.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_pm@d3hot-mmap-system.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_pm@s2idle-basic-exec:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>)
* igt@xe_pm@s3-basic:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_pm@s3-basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_pm@s3-basic.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-basic-exec:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-basic-exec.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_pm@s3-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-vm-bind-prefetch:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm@s3-vm-bind-prefetch.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>)
* igt@xe_pm@vram-d3cold-threshold:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm@vram-d3cold-threshold.html> (Intel XE#579<https://gitlab.freedesktop.org/drm/xe/kernel/issues/579>)
* igt@xe_pm_residency@gt-c6-freeze@gt0:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +8 other tests abort
* shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm_residency@toggle-gt-c6:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html> (Intel XE#958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/958>)
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip
* igt@xe_wedged@wedged-at-any-timeout:
* shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html> (Intel XE#3421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421>)
Possible fixes
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html>
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html>
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html>
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html>
* igt@kms_display_modes@extended-mode-basic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html> (Intel XE#2425<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html>
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html>
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> +2 other tests pass
* igt@kms_flip@2x-wf_vblank-ts-check:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check.html> +4 other tests pass
* igt@kms_flip@flip-vs-panning-interruptible:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_flip@flip-vs-panning-interruptible.html> +1 other test pass
* igt@kms_flip@wf_vblank-ts-check@c-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@c-edp1.html>
* igt@kms_joiner@invalid-modeset-force-big-joiner:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (Intel XE#3012<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html>
* igt@kms_setmode@basic:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic.html> (Intel XE#2883<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_setmode@basic.html> +1 other test pass
* igt@kms_vblank@wait-busy-hang:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_vblank@wait-busy-hang.html> +3 other tests pass
* igt@xe_evict@evict-mixed-many-threads-small:
* shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html>
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html> (Intel XE#3721<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3721>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html>
* igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html> +1 other test pass
* igt@xe_exec_threads@threads-cm-userptr-invalidate-race:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html> +2 other tests pass
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> +1 other test pass
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> +1 other test pass
* igt@xe_module_load@many-reload:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html> (Intel XE#3625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_module_load@many-reload.html>
* igt@xe_pm@d3hot-basic-exec:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@d3hot-basic-exec.html>
* igt@xe_pm@s3-exec-after:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-exec-after.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_pm@s3-exec-after.html>
* igt@xe_pm@s3-mocs:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s3-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_pm@s3-mocs.html>
* igt@xe_pm@s4-vm-bind-userptr:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s4-vm-bind-userptr.html>
* igt@xe_pm_residency@idle-residency-on-exec:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html> (Intel XE#2564<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm_residency@idle-residency-on-exec.html> +1 other test pass
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> +40 other tests pass
Warnings
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
* igt@kms_flip@wf_vblank-ts-check:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>)
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +3 other tests fail
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +7 other tests fail
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +5 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +8 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +15 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +8 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +7 other tests skip
* igt@kms_tiled_display@basic-test-pattern:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#1729<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm@s2idle-exec-after:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s2idle-exec-after.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm@s2idle-vm-bind-prefetch:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) +1 other test abort
Build changes
* IGT: IGT_8139 -> IGTPW_12262
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422
IGTPW_12262: 12262
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
[-- Attachment #2: Type: text/html, Size: 143909 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6)
2024-12-06 12:49 ` Sharma, Nishit
@ 2024-12-06 12:50 ` Sharma, Nishit
0 siblings, 0 replies; 19+ messages in thread
From: Sharma, Nishit @ 2024-12-06 12:50 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org,
I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 80661 bytes --]
Hi,
The patch series is success in i915.CI.BAT: success for GPGPU support for MTL platform (rev6). The regression mentioned is not related to patch series submitted.
Regards
Nishit
From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Friday, December 6, 2024 3:32 PM
To: Sharma, Nishit <nishit.sharma@intel.com<mailto:nishit.sharma@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6)
Patch Details
Series:
GPGPU support for MTL platform (rev6)
URL:
https://patchwork.freedesktop.org/series/142149/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/index.html
CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12262_full
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_12262_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12262_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_12262_full:
IGT changes
Possible regressions
* igt@kms_async_flips@test-cursor-atomic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_async_flips@test-cursor-atomic.html>
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html> +6 other tests abort
* igt@xe_intel_bb@lot-of-buffers:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_intel_bb@lot-of-buffers.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_intel_bb@lot-of-buffers.html> +2 other tests dmesg-warn
Warnings
* igt@xe_module_load@load:
* shard-dg2-set2: (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-dg2-436/igt@xe_module_load@load.html>) (Intel XE#3715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3715>) -> (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-dg2-436/igt@xe_module_load@load.html>)
Known issues
Here are the changes found in XEIGTPW_12262_full that come from known issues:
IGT changes
Issues hit
* igt@intel_hwmon@hwmon-write:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@intel_hwmon@hwmon-write.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>)
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (Intel XE#3157<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157>)
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-fail
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +25 other tests dmesg-warn
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-fail
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-2-4-rc-ccs:
* shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-2-4-rc-ccs.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +6 other tests dmesg-fail
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3 other tests fail
* igt@kms_async_flips@invalid-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
* igt@kms_async_flips@test-cursor:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_async_flips@test-cursor.html> (Intel XE#664<https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>)
* igt@kms_atomic_transition@modeset-transition-nonblocking:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_atomic_transition@modeset-transition-nonblocking.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_atomic_transition@modeset-transition-nonblocking.html> (Intel XE#2613<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613>) +1 other test incomplete
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (Intel XE#3279<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279>) +1 other test skip
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (Intel XE#2370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370>)
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +4 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#3658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>)
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +5 other tests skip
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +23 other tests skip
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +19 other tests skip
* igt@kms_big_fb@yf-tiled-addfb:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>)
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#1428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>)
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>)
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +4 other tests skip
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +5 other tests skip
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html> (Intel XE#2669<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +7 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#3433<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433>) +3 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +2 other tests skip
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +4 other tests skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +21 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +20 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +12 other tests skip
* igt@kms_cdclk@plane-scaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_cdclk@plane-scaling.html> (Intel XE#1152<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152>) +3 other tests skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_cdclk@plane-scaling.html> (Intel XE#2724<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724>)
* igt@kms_chamelium_color@ctm-negative:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_chamelium_color@ctm-negative.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +2 other tests skip
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +14 other tests skip
* igt@kms_chamelium_hpd@dp-hpd:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_chamelium_hpd@dp-hpd.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +19 other tests skip
* igt@kms_content_protection@dp-mst-lic-type-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)
* igt@kms_content_protection@dp-mst-type-1:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390>) +1 other test skip
* igt@kms_content_protection@lic-type-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_content_protection@lic-type-1.html> (Intel XE#3278<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_content_protection@lic-type-1.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
* igt@kms_cursor_crc@cursor-offscreen-128x42:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +7 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +21 other tests dmesg-warn
* igt@kms_cursor_crc@cursor-random-512x170:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +1 other test skip
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +11 other tests skip
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +4 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +9 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>)
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)
* igt@kms_draw_crc@draw-method-render:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests incomplete
* igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip
* igt@kms_fbcon_fbt@fbc-suspend:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#1695<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695>)
* igt@kms_fbcon_fbt@psr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>)
* igt@kms_feature_discovery@display-2x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_feature_discovery@display-2x.html> (Intel XE#702<https://gitlab.freedesktop.org/drm/xe/kernel/issues/702>)
* igt@kms_feature_discovery@display-3x:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_feature_discovery@display-3x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html> (Intel XE#3640<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640>)
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +1 other test skip
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +9 other tests skip
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +3 other tests skip
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +1 other test fail
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +12 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +12 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +4 other tests skip
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +28 other tests skip
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +13 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +12 other tests fail
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +33 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#1469<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>)
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +23 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +63 other tests skip
* igt@kms_getfb@getfb2-accept-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* igt@kms_hdr@brightness-with-hdr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
* igt@kms_hdr@invalid-metadata-sizes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>)
* igt@kms_joiner@basic-big-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) +1 other test skip
* igt@kms_joiner@basic-force-ultra-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
* igt@kms_joiner@invalid-modeset-big-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* igt@kms_joiner@invalid-modeset-ultra-joiner:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
* igt@kms_panel_fitting@atomic-fastset:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html> (Intel XE#2486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486>)
* igt@kms_pipe_crc_basic@hang-read-crc:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_pipe_crc_basic@hang-read-crc.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_pipe_crc_basic@hang-read-crc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-2:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +10 other tests dmesg-fail
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +4 other tests skip
* igt@kms_plane_multiple@tiling-yf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +19 other tests skip
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +35 other tests skip
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_pm_dc@dc5-dpms:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>)
* igt@kms_pm_dc@dc5-dpms-negative:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_pm_dc@dc5-dpms-negative.html> (Intel XE#1131<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131>)
* igt@kms_pm_dc@dc6-dpms:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>)
* igt@kms_pm_rpm@modeset-lpsp:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
* igt@kms_pm_rpm@modeset-non-lpsp:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>) +1 other test skip
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +8 other tests skip
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +12 other tests skip
* igt@kms_psr2_su@page_flip-nv12:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1128<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>) +1 other test skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387>)
* igt@kms_psr@pr-cursor-plane-onoff:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_psr@pr-cursor-plane-onoff.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +7 other tests skip
* igt@kms_psr@psr-primary-page-flip:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +19 other tests skip
* igt@kms_psr@psr2-primary-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_psr@psr2-primary-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234>)
* igt@kms_psr@psr2-sprite-render:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@kms_psr@psr2-sprite-render.html> (Intel XE#3536<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3536>) +1 other test fail
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +2 other tests skip
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
* igt@kms_setmode@invalid-clone-single-crtc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) +1 other test skip
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#362<https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>)
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
* igt@kms_vrr@lobf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@kms_vrr@lobf.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
* igt@kms_vrr@seamless-rr-switch-virtual:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-virtual.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
* igt@kms_writeback@writeback-check-output-xrgb2101010:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +2 other tests skip
* igt@kms_writeback@writeback-invalid-parameters:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +1 other test skip
* igt@sriov_basic@enable-vfs-autoprobe-off:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
* igt@xe_eudebug@multigpu-basic-client:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +11 other tests skip
* igt@xe_evict@evict-beng-cm-threads-small:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +16 other tests skip
* igt@xe_evict@evict-mixed-many-threads-large:
* shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +14 other tests skip
* igt@xe_exec_basic@multigpu-once-userptr:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_exec_basic@multigpu-once-userptr.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +17 other tests skip
* igt@xe_exec_fault_mode@twice-bindexecqueue:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_exec_fault_mode@twice-bindexecqueue.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +5 other tests dmesg-warn
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_exec_sip_eudebug@breakpoint-writesip.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +10 other tests skip
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-warn
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) +1 other test skip
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
* igt@xe_module_load@load:
* shard-lnl: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
* igt@xe_module_load@reload-no-display:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_module_load@reload-no-display.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@xe_module_load@reload-no-display.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>)
* igt@xe_oa@oa-tlb-invalidate:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>)
* igt@xe_pm@d3cold-basic-exec:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_pm@d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
* igt@xe_pm@d3cold-mmap-vram:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm@d3cold-mmap-vram.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +3 other tests skip
* igt@xe_pm@d3hot-mmap-system:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-mmap-system.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_pm@d3hot-mmap-system.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@xe_pm@s2idle-basic-exec:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>)
* igt@xe_pm@s3-basic:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_pm@s3-basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_pm@s3-basic.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-basic-exec:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-basic-exec.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_pm@s3-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-vm-bind-prefetch:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm@s3-vm-bind-prefetch.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>)
* igt@xe_pm@vram-d3cold-threshold:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm@vram-d3cold-threshold.html> (Intel XE#579<https://gitlab.freedesktop.org/drm/xe/kernel/issues/579>)
* igt@xe_pm_residency@gt-c6-freeze@gt0:
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +8 other tests abort
* shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm_residency@toggle-gt-c6:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html> (Intel XE#958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/958>)
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip
* igt@xe_wedged@wedged-at-any-timeout:
* shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html> (Intel XE#3421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421>)
Possible fixes
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html>
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html>
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html>
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html>
* igt@kms_display_modes@extended-mode-basic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html> (Intel XE#2425<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html>
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html>
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> +2 other tests pass
* igt@kms_flip@2x-wf_vblank-ts-check:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check.html> +4 other tests pass
* igt@kms_flip@flip-vs-panning-interruptible:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_flip@flip-vs-panning-interruptible.html> +1 other test pass
* igt@kms_flip@wf_vblank-ts-check@c-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@c-edp1.html>
* igt@kms_joiner@invalid-modeset-force-big-joiner:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (Intel XE#3012<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html>
* igt@kms_setmode@basic:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic.html> (Intel XE#2883<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_setmode@basic.html> +1 other test pass
* igt@kms_vblank@wait-busy-hang:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@kms_vblank@wait-busy-hang.html> +3 other tests pass
* igt@xe_evict@evict-mixed-many-threads-small:
* shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html>
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html> (Intel XE#3721<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3721>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html>
* igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html> +1 other test pass
* igt@xe_exec_threads@threads-cm-userptr-invalidate-race:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html> +2 other tests pass
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> +1 other test pass
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> +1 other test pass
* igt@xe_module_load@many-reload:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html> (Intel XE#3625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_module_load@many-reload.html>
* igt@xe_pm@d3hot-basic-exec:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@d3hot-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@d3hot-basic-exec.html>
* igt@xe_pm@s3-exec-after:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-exec-after.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@xe_pm@s3-exec-after.html>
* igt@xe_pm@s3-mocs:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s3-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@xe_pm@s3-mocs.html>
* igt@xe_pm@s4-vm-bind-userptr:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s4-vm-bind-userptr.html>
* igt@xe_pm_residency@idle-residency-on-exec:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html> (Intel XE#2564<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-3/igt@xe_pm_residency@idle-residency-on-exec.html> +1 other test pass
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> +40 other tests pass
Warnings
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
* igt@kms_flip@wf_vblank-ts-check:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>)
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +3 other tests fail
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +7 other tests fail
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +5 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +8 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +15 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +8 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +7 other tests skip
* igt@kms_tiled_display@basic-test-pattern:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#1729<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm@s2idle-exec-after:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s2idle-exec-after.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort
* igt@xe_pm@s2idle-vm-bind-prefetch:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12262/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) +1 other test abort
Build changes
* IGT: IGT_8139 -> IGTPW_12262
* Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422
IGTPW_12262: 12262
IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
[-- Attachment #2: Type: text/html, Size: 157270 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t] GPGPU support for MTL platform
2024-12-05 13:28 [PATCH i-g-t] GPGPU support for MTL platform nishit.sharma
` (7 preceding siblings ...)
2024-12-06 12:33 ` ✓ i915.CI.BAT: success " Patchwork
@ 2024-12-06 13:00 ` Kamil Konieczny
8 siblings, 0 replies; 19+ messages in thread
From: Kamil Konieczny @ 2024-12-06 13:00 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev, dwarakanath.ramadeva, zbigniew.kempczynski
Hi Nishit,
On 2024-12-05 at 13:28:14 +0000, nishit.sharma@intel.com wrote:
> From: Nishit Sharma <nishit.sharma@intel.com>
few nits, first about subject, please use lib/ or test/ name which
you are changing, here I propose to use 'lib/intel_compute: ' as
prefix, so it will be:
[PATCH i-g-t v7] lib/intel_compute*: Add GPGPU support for MTL platform
Add also version 'v7' to it.
>
> GPGPU shader and pipeline was missing for MTL platform
> Added GPGPU Shader and Compute Pipeline for exercising
> gpgpu in MTL for i915 and XE
>
> Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
> ---
> lib/intel_compute.c | 213 +++++++++++++++++++++++++++++
> lib/intel_compute_square_kernels.c | 49 +++++++
> 2 files changed, 262 insertions(+)
>
> diff --git a/lib/intel_compute.c b/lib/intel_compute.c
> index 879928ab6..1c1323130 100644
> --- a/lib/intel_compute.c
> +++ b/lib/intel_compute.c
> @@ -1161,6 +1161,126 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel,
> bo_execenv_destroy(&execenv);
> }
>
> +static void xelpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
> + uint64_t addr_general_state_base,
> + uint64_t addr_surface_state_base,
> + uint64_t addr_dynamic_state_base,
> + uint64_t addr_instruction_state_base,
> + uint64_t offset_indirect_data_start,
> + uint64_t kernel_start_pointer)
> +{
> + int b = 0;
> +
> + igt_debug("general state base: %"PRIx64"\n", addr_general_state_base);
> + igt_debug("surface state base: %"PRIx64"\n", addr_surface_state_base);
> + igt_debug("dynamic state base: %"PRIx64"\n", addr_dynamic_state_base);
> + igt_debug("instruct base addr: %"PRIx64"\n", addr_instruction_state_base);
> + igt_debug("bindless base addr: %"PRIx64"\n", addr_surface_state_base);
> + igt_debug("offset indirect addr: %"PRIx64"\n", offset_indirect_data_start);
> + igt_debug("kernel start pointer: %"PRIx64"\n", kernel_start_pointer);
> +
> +
Remove extra line, one is enough.
> + addr_bo_buffer_batch[b++] = GEN7_PIPELINE_SELECT | GEN9_PIPELINE_SELECTION_MASK |
> + PIPELINE_SELECT_GPGPU;
> +
> + addr_bo_buffer_batch[b++] = XEHP_STATE_COMPUTE_MODE;
> + addr_bo_buffer_batch[b++] = 0x80000000;
> +
> + addr_bo_buffer_batch[b++] = XEHP_CFE_STATE | 0x4;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x03808800;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
> + addr_bo_buffer_batch[b++] = 0x00002580;
> + addr_bo_buffer_batch[b++] = 0x00060002;
> +
> +
Same here.
> + addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
> + addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_general_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x00028000;
> + addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
> + addr_bo_buffer_batch[b++] = (addr_dynamic_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_dynamic_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = (addr_instruction_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_instruction_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0xfffff001;
> + addr_bo_buffer_batch[b++] = 0x00010001;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0xfffff001;
> + addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
> + addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x00007fbf;
> + addr_bo_buffer_batch[b++] = 0x5E70F021;
> + addr_bo_buffer_batch[b++] = 0x00007F6A;
> + addr_bo_buffer_batch[b++] = 0x00010000;
> +
Same here.
> +
> + addr_bo_buffer_batch[b++] = GEN8_3DSTATE_BINDING_TABLE_POOL_ALLOC | 0x2;
> + addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x2;
> + addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
> + addr_bo_buffer_batch[b++] = 0x001ff000;
> +
> + addr_bo_buffer_batch[b++] = XEHP_COMPUTE_WALKER | 0x25;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000040;
> + addr_bo_buffer_batch[b++] = offset_indirect_data_start;
> + addr_bo_buffer_batch[b++] = 0xbe040000;
> + addr_bo_buffer_batch[b++] = 0xffffffff;
> + addr_bo_buffer_batch[b++] = 0x000003ff;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> +
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = kernel_start_pointer;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00001080;
> + addr_bo_buffer_batch[b++] = 0x0c000020;
> +
> + addr_bo_buffer_batch[b++] = 0x00000008;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00001087;
> + addr_bo_buffer_batch[b++] = ADDR_BATCH;
> + addr_bo_buffer_batch[b++] = ADDR_BATCH >> 32;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000400;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000001;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = PIPE_CONTROL;
> + addr_bo_buffer_batch[b++] = 0x00100000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> + addr_bo_buffer_batch[b++] = 0x00000000;
> +
> + addr_bo_buffer_batch[b++] = MI_BATCH_BUFFER_END;
> +}
> +
Same here.
Regards,
Kamil
> +
> static void xe2lpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
> uint64_t addr_general_state_base,
> uint64_t addr_surface_state_base,
> @@ -1321,6 +1441,94 @@ static void xe2_create_indirect_data_inc_kernel(uint32_t *addr_bo_buffer_batch,
> addr_bo_buffer_batch[b++] = 0x00000000;
> }
>
> +/**
> + * xelpg_compute_exec - run a pipeline compatible with MTL
> + *
> + * @fd: file descriptor of the opened DRM device
> + * @kernel: GPU Kernel binary to be executed
> + * @size: size of @kernel.
> + * @eci: xelpg engine class instance if device is MTL
> + */
> +static void xelpg_compute_exec(int fd, const unsigned char *kernel,
> + unsigned int size,
> + struct drm_xe_engine_class_instance *eci)
> +{
> +#define XELPG_BO_DICT_ENTRIES 9
> + struct bo_dict_entry bo_dict[XELPG_BO_DICT_ENTRIES] = {
> + { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL,
> + .name = "instr state base"},
> + { .addr = ADDR_DYNAMIC_STATE_BASE,
> + .size = 0x100000,
> + .name = "dynamic state base"},
> + { .addr = ADDR_SURFACE_STATE_BASE,
> + .size = 0x1000,
> + .name = "surface state base"},
> + { .addr = ADDR_GENERAL_STATE_BASE + OFFSET_INDIRECT_DATA_START,
> + .size = 0x1000,
> + .name = "indirect object base"},
> + { .addr = ADDR_INPUT, .size = SIZE_BUFFER_INPUT,
> + .name = "addr input"},
> + { .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT,
> + .name = "addr output" },
> + { .addr = ADDR_GENERAL_STATE_BASE, .size = 0x100000,
> + .name = "general state base" },
> + { .addr = ADDR_SURFACE_STATE_BASE + OFFSET_BINDING_TABLE,
> + .size = 0x1000,
> + .name = "binding table" },
> + { .addr = ADDR_BATCH,
> + .size = SIZE_BATCH,
> + .name = "batch" },
> + };
> +
> + struct bo_execenv execenv;
> + float *dinput;
> +
> + bo_execenv_create(fd, &execenv, eci);
> +
> + /* Sets Kernel size */
> + bo_dict[0].size = ALIGN(size, 0x1000);
> +
> + bo_execenv_bind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
> +
> + memcpy(bo_dict[0].data, kernel, size);
> +
> + create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL);
> + xehp_create_surface_state(bo_dict[2].data, ADDR_INPUT, ADDR_OUTPUT);
> + xehp_create_indirect_data(bo_dict[3].data, ADDR_INPUT, ADDR_OUTPUT);
> + xehp_create_surface_state(bo_dict[7].data, ADDR_INPUT, ADDR_OUTPUT);
> +
> + dinput = (float *)bo_dict[4].data;
> + srand(time(NULL));
> +
> + for (int i = 0; i < SIZE_DATA; i++)
> + ((float *)dinput)[i] = rand() / (float)RAND_MAX;
> +
> + xelpg_compute_exec_compute(bo_dict[8].data,
> + ADDR_GENERAL_STATE_BASE,
> + ADDR_SURFACE_STATE_BASE,
> + ADDR_DYNAMIC_STATE_BASE,
> + ADDR_INSTRUCTION_STATE_BASE,
> + OFFSET_INDIRECT_DATA_START,
> + OFFSET_KERNEL);
> +
> + bo_execenv_exec(&execenv, ADDR_BATCH);
> +
> + for (int i = 0; i < SIZE_DATA; i++) {
> + float f1, f2;
> +
> + f1 = ((float *) bo_dict[5].data)[i];
> + f2 = ((float *) bo_dict[4].data)[i];
> +
> + if (f1 != f2 * f2)
> + igt_debug("[%4d] f1: %f != %f %f\n", i, f1, f2 * f2, f2);
> +
> + igt_assert(f1 == f2 * f2);
> + }
> +
> + bo_execenv_unbind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
> + bo_execenv_destroy(&execenv);
> +}
> +
> /**
> * xe2lpg_compute_exec - run a pipeline compatible with XE2
> *
> @@ -1449,6 +1657,11 @@ static const struct {
> .compute_exec = xehpc_compute_exec,
> .compat = COMPAT_DRIVER_XE,
> },
> + {
> + .ip_ver = IP_VER(12, 70),
> + .compute_exec = xelpg_compute_exec,
> + .compat = COMPAT_DRIVER_I915 | COMPAT_DRIVER_XE,
> + },
> {
> .ip_ver = IP_VER(20, 01),
> .compute_exec = xe2lpg_compute_exec,
> diff --git a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
> index a1f3b46da..b0912e7e4 100644
> --- a/lib/intel_compute_square_kernels.c
> +++ b/lib/intel_compute_square_kernels.c
> @@ -3844,6 +3844,50 @@ static const unsigned char xe2lpg_kernel_inc_bin[] = {
> 0x00, 0x00, 0x00, 0x00
> };
>
> +unsigned char xelpg_kernel_square_bin[] = {
> + 0x61, 0x00, 0x03, 0x80, 0x20, 0x42, 0x05, 0x7f, 0x00, 0x00, 0x00, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x80, 0x20, 0x82, 0x45, 0x7f,
> + 0x04, 0x00, 0x00, 0x02, 0xc0, 0xff, 0xff, 0xff, 0x40, 0x19, 0x00, 0x80,
> + 0x20, 0x82, 0x45, 0x7f, 0x44, 0x7f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
> + 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x03, 0x80, 0x00, 0x00, 0x14, 0x08,
> + 0x0c, 0x7f, 0xfa, 0xa7, 0x00, 0x00, 0x10, 0x02, 0x61, 0x00, 0x03, 0x80,
> + 0x20, 0x02, 0x05, 0x03, 0x04, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
> + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
> + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x09, 0x00, 0x80,
> + 0x20, 0x82, 0x01, 0x80, 0x00, 0x80, 0x00, 0x01, 0xc0, 0x04, 0xc0, 0x04,
> + 0x01, 0x09, 0x00, 0xe8, 0x01, 0x00, 0x11, 0x00, 0x41, 0x1a, 0x20, 0x22,
> + 0x16, 0x09, 0x11, 0x03, 0x49, 0x00, 0x04, 0xa2, 0x12, 0x09, 0x11, 0x03,
> + 0x52, 0x19, 0x04, 0x00, 0x60, 0x06, 0x04, 0x05, 0x04, 0x04, 0x0e, 0x01,
> + 0x04, 0x01, 0x04, 0x07, 0x52, 0x00, 0x24, 0x00, 0x60, 0x06, 0x04, 0x0a,
> + 0x04, 0x04, 0x0e, 0x01, 0x04, 0x02, 0x04, 0x07, 0x70, 0x1a, 0x04, 0x00,
> + 0x60, 0x02, 0x01, 0x00, 0x04, 0x05, 0x10, 0x52, 0x84, 0x08, 0x00, 0x00,
> + 0x70, 0x1a, 0x24, 0x00, 0x60, 0x02, 0x01, 0x00, 0x04, 0x0a, 0x10, 0x52,
> + 0x84, 0x08, 0x00, 0x00, 0x2e, 0x00, 0x05, 0x11, 0x00, 0xc0, 0x00, 0x00,
> + 0xd0, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x69, 0x00, 0x0c, 0x60,
> + 0x02, 0x05, 0x20, 0x00, 0x69, 0x00, 0x0e, 0x66, 0x02, 0x0a, 0x20, 0x00,
> + 0x40, 0x1a, 0x10, 0xa0, 0x32, 0x0c, 0x10, 0x08, 0x40, 0x1a, 0x12, 0xa6,
> + 0x32, 0x0e, 0x10, 0x08, 0x01, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x04, 0x00,
> + 0x00, 0x00, 0x14, 0x14, 0x94, 0x10, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04,
> + 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x31, 0x41, 0x24, 0x00, 0x00, 0x00, 0x14, 0x16,
> + 0x94, 0x12, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04, 0x40, 0x00, 0x0c, 0xa0,
> + 0x4a, 0x0c, 0x10, 0x08, 0x40, 0x00, 0x0e, 0xa6, 0x4a, 0x0e, 0x10, 0x08,
> + 0x41, 0x20, 0x14, 0x20, 0x00, 0x14, 0x00, 0x14, 0x41, 0x21, 0x16, 0x26,
> + 0x00, 0x16, 0x00, 0x16, 0x31, 0xa0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x95, 0x0c, 0x08, 0xfa, 0x14, 0x14, 0x00, 0x04, 0x31, 0x91, 0x24, 0x00,
> + 0x00, 0x00, 0x00, 0x00, 0x95, 0x0e, 0x08, 0xfa, 0x14, 0x16, 0x00, 0x04,
> + 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
> + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
> + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00,
> + 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
> + 0x61, 0x00, 0x7f, 0x64, 0x00, 0x03, 0x10, 0x00, 0x01, 0x11, 0x00, 0x80,
> + 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
> + 0x31, 0x40, 0x00, 0x80, 0x04, 0x00, 0x00, 0x00, 0x0c, 0x7f, 0x20, 0x30,
> + 0x00, 0x00, 0x00, 0x00
> +};
>
> const struct intel_compute_kernels intel_compute_square_kernels[] = {
> {
> @@ -3866,6 +3910,11 @@ const struct intel_compute_kernels intel_compute_square_kernels[] = {
> .size = sizeof(xehpc_kernel_square_bin),
> .kernel = xehpc_kernel_square_bin,
> },
> + {
> + .ip_ver = IP_VER(12, 70),
> + .size = sizeof(xelpg_kernel_square_bin),
> + .kernel = xelpg_kernel_square_bin,
> + },
> {
> .ip_ver = IP_VER(20, 01),
> .size = sizeof(xe2lpg_kernel_square_bin),
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2024-12-09 9:21 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-05 13:28 [PATCH i-g-t] GPGPU support for MTL platform nishit.sharma
2024-12-06 3:01 ` ✗ i915.CI.BAT: failure for GPGPU support for MTL platform (rev5) Patchwork
2024-12-06 3:40 ` ✗ Xe.CI.BAT: " Patchwork
2024-12-06 5:47 ` Sharma, Nishit
2024-12-06 12:35 ` Ravali, JupallyX
2024-12-06 3:41 ` [PATCH i-g-t] GPGPU support for MTL platform Zbigniew Kempczyński
2024-12-06 5:37 ` ✗ Xe.CI.BAT: failure for GPGPU support for MTL platform (rev6) Patchwork
2024-12-06 5:46 ` ✗ i915.CI.BAT: " Patchwork
2024-12-06 6:41 ` ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev5) Patchwork
2024-12-06 10:02 ` ✗ Xe.CI.Full: failure for GPGPU support for MTL platform (rev6) Patchwork
2024-12-06 10:05 ` Sharma, Nishit
2024-12-06 11:17 ` Sharma, Nishit
2024-12-06 12:49 ` Sharma, Nishit
2024-12-06 12:50 ` Sharma, Nishit
2024-12-06 12:33 ` ✓ i915.CI.BAT: success " Patchwork
2024-12-06 13:00 ` [PATCH i-g-t] GPGPU support for MTL platform Kamil Konieczny
-- strict thread matches above, loose matches on Subject: below --
2024-12-05 8:48 nishit.sharma
2024-12-05 11:26 ` Zbigniew Kempczyński
2024-12-04 14:53 nishit.sharma
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox