* [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support
@ 2024-11-25 14:32 Andrzej Hajda
2024-11-25 14:33 ` [PATCH v5 1/4] scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation Andrzej Hajda
` (8 more replies)
0 siblings, 9 replies; 11+ messages in thread
From: Andrzej Hajda @ 2024-11-25 14:32 UTC (permalink / raw)
To: igt-dev
Cc: Dominik Grzegorzek, Zbigniew Kempczyński, Gwan-gyeong Mun,
Kamil Konieczny, Christoph Manszewski, Andrzej Hajda
The patchset tries to simplify and unify iga64 load/store assemblies.
Moreover it adds support for Xe3 platforms (PTL).
v2:
- addressed comments to v1, details in patches
v3:
- added passing surface descriptor via COMPUTE_WALKER/inline_data,
required for stateless load/stores in Xe3.
- added support for Xe3 platforms.
v4:
- fixed placement of gpgpu_alloc_gpu_addr changes(Dominik),
- pass vm_id in gpgpu_alloc_gpu_addr (Dominik),
- added R-B
v5:
- updated comment in the last patch (Dominik),
- removed extra lines (Dominik)
- added R-B,
- rebased
Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
---
- Link to v1: https://lore.kernel.org/r/20241114-gpgpu_send_rework-v1-0-e0914e09e7b2@intel.com
- Link to v2: https://lore.kernel.org/r/20241115-gpgpu_send_rework-v2-0-d1c84135aaaf@intel.com
- Link to v3: https://lore.kernel.org/r/20241121-gpgpu_send_rework-v3-0-0b6aa48ab006@intel.com
- Link to v4: https://lore.kernel.org/r/20241125-gpgpu_send_rework-v4-0-c16b568a1f3d@intel.com
---
Andrzej Hajda (4):
scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation
lib/gpgpu_shader: simplify load/store shaders
lib/gpgpu_shader: pass surface desription to shaders via inline data
lib/gpgpu_shader: add support for Xe3 platforms
lib/gpgpu_shader.c | 188 +++++++------------------
lib/iga64_generated_codes.c | 329 +++++++++++++++++++++----------------------
lib/iga64_macros.h | 72 +++++++++-
lib/meson.build | 1 +
scripts/generate_iga64_codes | 2 +-
5 files changed, 280 insertions(+), 312 deletions(-)
---
base-commit: 027caf37991f4d39cb41beaf82dc7c920d976db6
change-id: 20241106-gpgpu_send_rework-817a3e4f464e
Best regards,
--
Andrzej Hajda <andrzej.hajda@intel.com>
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH v5 1/4] scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation 2024-11-25 14:32 [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda @ 2024-11-25 14:33 ` Andrzej Hajda 2024-11-25 14:33 ` [PATCH v5 2/4] lib/gpgpu_shader: simplify load/store shaders Andrzej Hajda ` (7 subsequent siblings) 8 siblings, 0 replies; 11+ messages in thread From: Andrzej Hajda @ 2024-11-25 14:33 UTC (permalink / raw) To: igt-dev Cc: Dominik Grzegorzek, Zbigniew Kempczyński, Gwan-gyeong Mun, Kamil Konieczny, Christoph Manszewski, Andrzej Hajda Since generated code depends on iga64_macros.h assemblies should be recompiled on it's change as well. v2: - added warning to iga64_macros.h (Zbigniew) Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- lib/iga64_generated_codes.c | 2 +- lib/iga64_macros.h | 5 ++++- lib/meson.build | 1 + scripts/generate_iga64_codes | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c index 9db6bdd95c81..7bece1452e30 100644 --- a/lib/iga64_generated_codes.c +++ b/lib/iga64_generated_codes.c @@ -3,7 +3,7 @@ #include "gpgpu_shader.h" -#define MD5_SUM_IGA64_ASMS 85067cf5769bd5f5ab2a2abe5bdc9645 +#define MD5_SUM_IGA64_ASMS 4c0bba92477c23a16c976cf0d7ccaba9 struct iga64_template const iga64_code_gpgpu_fill[] = { { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { diff --git a/lib/iga64_macros.h b/lib/iga64_macros.h index 03cc726d48c2..6459b524c3fd 100644 --- a/lib/iga64_macros.h +++ b/lib/iga64_macros.h @@ -1,7 +1,10 @@ /* SPDX-License-Identifier: MIT */ /* Copyright © 2024 Intel Corporation */ -/* Header used during pre-process phase of iga64 assembly. */ +/* Header used during pre-process phase of iga64 assembly. + * WARNING: changing this file causes rebuild of all shaders. + * Do not touch without current version of iga64 compiler. + */ #ifndef IGA64_MACROS_H #define IGA64_MACROS_H diff --git a/lib/meson.build b/lib/meson.build index 3d459c7a3bae..207b6e18519a 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -250,6 +250,7 @@ iga64_generated_codes = custom_target( 'iga64_generated_codes.c', input : [ 'iga64_generated_codes.c' ] + iga64_assembly_libs, output : 'iga64_generated_codes.c', + depend_files : 'iga64_macros.h', command : [ generate_iga64_codes, '-o', '@OUTPUT@', '-i', '@INPUT@' ] ) diff --git a/scripts/generate_iga64_codes b/scripts/generate_iga64_codes index bbf1f7008242..652bf01a080c 100755 --- a/scripts/generate_iga64_codes +++ b/scripts/generate_iga64_codes @@ -40,7 +40,7 @@ while read -d $'\0' asm; do done < <(for f in $LIBS; do objcopy --dump-section .iga64_assembly=/dev/stdout $f.p/*.o /dev/null; done) # check if we need to recompile - checksum difference and compiler present -MD5_ASMS="$(md5sum <<< "${ASMS[@]}" | cut -b1-32)" +MD5_ASMS="$(md5sum <<< "$(< ../lib/iga64_macros.h) ${ASMS[@]}" | cut -b1-32)" MD5_PRE="$(grep -Po '(?<=^#define MD5_SUM_IGA64_ASMS )\S{32,32}' $INPUT 2>/dev/null)" if [ "$MD5_ASMS" = "$MD5_PRE" ]; then -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v5 2/4] lib/gpgpu_shader: simplify load/store shaders 2024-11-25 14:32 [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda 2024-11-25 14:33 ` [PATCH v5 1/4] scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation Andrzej Hajda @ 2024-11-25 14:33 ` Andrzej Hajda 2024-11-25 14:33 ` [PATCH v5 3/4] lib/gpgpu_shader: pass surface desription to shaders via inline data Andrzej Hajda ` (6 subsequent siblings) 8 siblings, 0 replies; 11+ messages in thread From: Andrzej Hajda @ 2024-11-25 14:33 UTC (permalink / raw) To: igt-dev Cc: Dominik Grzegorzek, Zbigniew Kempczyński, Gwan-gyeong Mun, Kamil Konieczny, Christoph Manszewski, Andrzej Hajda There is lot of redundancy in shaders code regarding load/store messages. It makes the code barely readable. Simplify it by using macros in iga64 assembler. Every load/store operation is split into two phases: 1. Load address/descriptor (from) where data should be stored/loaded. 2. Issue load/store instruction. Shader threads needs two types of memory access: 3. Private area per thread. 4. Area shared per all threads. Different platforms access surface in different ways: 5. Using media block messages. 6. Using untyped 2d block messages. 7. Future platforms will use different messages. All this is simplified to two macros per message in shader: SET_(SHARED|THREAD)_SPACE_ADDR(dst,y,width) (LOAD_STORE)_SPACE_DW(dst, src) v2: - captialze introduced macros (Dominik) - fixed thread -> shared call (Zbigniew) Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com> --- lib/gpgpu_shader.c | 160 +++------------------- lib/iga64_generated_codes.c | 318 +++++++++++++++++++++----------------------- lib/iga64_macros.h | 43 ++++++ 3 files changed, 215 insertions(+), 306 deletions(-) diff --git a/lib/gpgpu_shader.c b/lib/gpgpu_shader.c index 38d9cc6809a6..d9b511d4a474 100644 --- a/lib/gpgpu_shader.c +++ b/lib/gpgpu_shader.c @@ -431,22 +431,8 @@ void gpgpu_shader__jump_neq(struct gpgpu_shader *shdr, int label_id, size = emit_iga64_code(shdr, jump_dw_neq, " \n\ L0: \n\ -(W) mov (16|M0) r30.0<1>:ud 0x0:ud \n\ -#if GEN_VER < 2000 // Media Block Write \n\ - // Y offset of the block in rows := thread group id Y \n\ -(W) mov (1|M0) r30.1<1>:ud ARG(0):ud \n\ - // block width [0,63] representing 1 to 64 bytes, we want dword \n\ -(W) mov (1|M0) r30.2<1>:ud 0x3:ud \n\ - // FFTID := FFTID from R0 header \n\ -(W) mov (1|M0) r30.4<1>:ud r0.5<0;1,0>:ud \n\ -(W) send.dc1 (16|M0) r31 r30 null 0x0 0x2190000 \n\ -#else // Typed 2D Block Store \n\ - // Store X and Y block start (160:191 and 192:223) \n\ -(W) mov (1|M0) r30.6<1>:ud ARG(0):ud \n\ - // Store X and Y block size (224:231 and 232:239) \n\ -(W) mov (1|M0) r30.7<1>:ud 0x3:ud \n\ -(W) send.tgm (16|M0) r31 r30 null:0 0x0 0x62100003 \n\ -#endif \n\ + SET_SHARED_SPACE_ADDR(r30, ARG(0):ud, 4) \n\ +(W) LOAD_SPACE_DW(r31, r30) \n\ // clear the flag register \n\ (W) mov (1|M0) f0.0<1>:ud 0x0:ud \n\ (W) cmp (1|M0) (ne)f0.0 null<1>:ud r31.0<0;1,0>:ud ARG(1):ud \n\ @@ -511,28 +497,13 @@ void gpgpu_shader__common_target_write(struct gpgpu_shader *shdr, uint32_t y_offset, const uint32_t value[4]) { emit_iga64_code(shdr, common_target_write, " \n\ -(W) mov (16|M0) r30.0<1>:ud 0x0:ud \n\ (W) mov (16|M0) r31.0<1>:ud 0x0:ud \n\ (W) mov (1|M0) r31.0<1>:ud ARG(1):ud \n\ (W) mov (1|M0) r31.1<1>:ud ARG(2):ud \n\ (W) mov (1|M0) r31.2<1>:ud ARG(3):ud \n\ (W) mov (1|M0) r31.3<1>:ud ARG(4):ud \n\ -#if GEN_VER < 2000 // Media Block Write \n\ - // Y offset of the block in rows \n\ -(W) mov (1|M0) r30.1<1>:ud ARG(0):ud \n\ - // block width [0,63] representing 1 to 64 bytes \n\ -(W) mov (1|M0) r30.2<1>:ud 0xf:ud \n\ - // FFTID := FFTID from R0 header \n\ -(W) mov (1|M0) r30.4<1>:ud r0.5<0;1,0>:ud \n\ - // written value \n\ -(W) send.dc1 (16|M0) null r30 src1_null 0x0 0x40A8000 \n\ -#else // Typed 2D Block Store \n\ - // Store X and Y block start (160:191 and 192:223) \n\ -(W) mov (1|M0) r30.6<1>:ud ARG(0):ud \n\ - // Store X and Y block size (224:231 and 232:239) \n\ -(W) mov (1|M0) r30.7<1>:ud 0xf:ud \n\ -(W) send.tgm (16|M0) null r30 null:0 0x0 0x64000007 \n\ -#endif \n\ + SET_SHARED_SPACE_ADDR(r30, ARG(0):ud, 16) \n\ +(W) STORE_SPACE_DW(r30, r31) \n\ ", y_offset, value[0], value[1], value[2], value[3]); } @@ -565,31 +536,8 @@ void gpgpu_shader__write_aip(struct gpgpu_shader *shdr, uint32_t y_offset) emit_iga64_code(shdr, media_block_write_aip, " \n\ // Payload \n\ (W) mov (1|M0) r5.0<1>:ud cr0.2:ud \n\ -#if GEN_VER < 2000 // Media Block Write \n\ - // X offset of the block in bytes := (thread group id X << ARG(0)) \n\ -(W) shl (1|M0) r4.0<1>:ud r0.1<0;1,0>:ud 0x2:ud \n\ - // Y offset of the block in rows := thread group id Y \n\ -(W) mov (1|M0) r4.1<1>:ud r0.6<0;1,0>:ud \n\ -(W) add (1|M0) r4.1<1>:ud r4.1<0;1,0>:ud ARG(0):ud \n\ - // block width [0,63] representing 1 to 64 bytes \n\ -(W) mov (1|M0) r4.2<1>:ud 0x3:ud \n\ - // FFTID := FFTID from R0 header \n\ -(W) mov (1|M0) r4.4<1>:ud r0.5<0;1,0>:ud \n\ -(W) send.dc1 (16|M0) null r4 src1_null 0 0x40A8000 \n\ -#else // Typed 2D Block Store \n\ - // Load r2.0-3 with tg id X << ARG(0) \n\ -(W) shl (1|M0) r2.0<1>:ud r0.1<0;1,0>:ud 0x2:ud \n\ - // Load r2.4-7 with tg id Y + ARG(1):ud \n\ -(W) mov (1|M0) r2.1<1>:ud r0.6<0;1,0>:ud \n\ -(W) add (1|M0) r2.1<1>:ud r2.1<0;1,0>:ud ARG(0):ud \n\ - // payload setup \n\ -(W) mov (16|M0) r4.0<1>:ud 0x0:ud \n\ - // Store X and Y block start (160:191 and 192:223) \n\ -(W) mov (2|M0) r4.5<1>:ud r2.0<2;2,1>:ud \n\ - // Store X and Y block max_size (224:231 and 232:239) \n\ -(W) mov (1|M0) r4.7<1>:ud 0x3:ud \n\ -(W) send.tgm (16|M0) null r4 null:0 0 0x64000007 \n\ -#endif \n\ + SET_THREAD_SPACE_ADDR(r4, 0, ARG(0):ud, 4) \n\ +(W) STORE_SPACE_DW(r4, r5) \n\ ", y_offset); } @@ -618,38 +566,11 @@ void gpgpu_shader__increase_aip(struct gpgpu_shader *shdr, uint32_t value) void gpgpu_shader__write_dword(struct gpgpu_shader *shdr, uint32_t value, uint32_t y_offset) { - emit_iga64_code(shdr, media_block_write, " \n\ - // Clear message header \n\ -(W) mov (16|M0) r4.0<1>:ud 0x0:ud \n\ - // Payload \n\ -(W) mov (1|M0) r5.0<1>:ud ARG(3):ud \n\ -(W) mov (1|M0) r5.1<1>:ud ARG(4):ud \n\ -(W) mov (1|M0) r5.2<1>:ud ARG(5):ud \n\ -(W) mov (1|M0) r5.3<1>:ud ARG(6):ud \n\ -#if GEN_VER < 2000 // Media Block Write \n\ - // X offset of the block in bytes := (thread group id X << ARG(0)) \n\ -(W) shl (1|M0) r4.0<1>:ud r0.1<0;1,0>:ud ARG(0):ud \n\ - // Y offset of the block in rows := thread group id Y \n\ -(W) mov (1|M0) r4.1<1>:ud r0.6<0;1,0>:ud \n\ -(W) add (1|M0) r4.1<1>:ud r4.1<0;1,0>:ud ARG(1):ud \n\ - // block width [0,63] representing 1 to 64 bytes \n\ -(W) mov (1|M0) r4.2<1>:ud ARG(2):ud \n\ - // FFTID := FFTID from R0 header \n\ -(W) mov (1|M0) r4.4<1>:ud r0.5<0;1,0>:ud \n\ -(W) send.dc1 (16|M0) null r4 src1_null 0 0x40A8000 \n\ -#else // Typed 2D Block Store \n\ - // Load r2.0-3 with tg id X << ARG(0) \n\ -(W) shl (1|M0) r2.0<1>:ud r0.1<0;1,0>:ud ARG(0):ud \n\ - // Load r2.4-7 with tg id Y + ARG(1):ud \n\ -(W) mov (1|M0) r2.1<1>:ud r0.6<0;1,0>:ud \n\ -(W) add (1|M0) r2.1<1>:ud r2.1<0;1,0>:ud ARG(1):ud \n\ - // Store X and Y block start (160:191 and 192:223) \n\ -(W) mov (2|M0) r4.5<1>:ud r2.0<2;2,1>:ud \n\ - // Store X and Y block max_size (224:231 and 232:239) \n\ -(W) mov (1|M0) r4.7<1>:ud ARG(2):ud \n\ -(W) send.tgm (16|M0) null r4 null:0 0 0x64000007 \n\ -#endif \n\ - ", 2, y_offset, 3, value, value, value, value); + emit_iga64_code(shdr, media_block_write, " \n\ +(W) mov (1) r5.0<1>:ud ARG(1):ud \n\ + SET_THREAD_SPACE_ADDR(r4, 0, ARG(0):ud, 4) \n\ +(W) STORE_SPACE_DW(r4, r5) \n\ + ", y_offset, value); } /** @@ -697,41 +618,14 @@ void gpgpu_shader__write_on_exception(struct gpgpu_shader *shdr, uint32_t value, uint32_t y_offset, uint32_t mask, uint32_t expected) { emit_iga64_code(shdr, write_on_exception, " \n\ - // Clear message header \n\ -(W) mov (16|M0) r4.0<1>:ud 0x0:ud \n\ - // Payload \n\ -(W) mov (1|M0) r5.0<1>:ud ARG(4):ud \n\ -#if GEN_VER < 2000 // prepare Media Block Write \n\ - // X offset of the block in bytes := (thread group id X << ARG(0)) \n\ -(W) add (1|M0) r4.0<1>:ud r0.1<0;1,0>:ud ARG(1):ud \n\ -(W) shl (1|M0) r4.0<1>:ud r4.0<0;1,0>:ud ARG(0):ud \n\ - // Y offset of the block in rows := thread group id Y \n\ -(W) add (1|M0) r4.1<1>:ud r0.6<0;1,0>:ud ARG(2):ud \n\ - // block width [0,63] representing 1 to 64 bytes \n\ -(W) mov (1|M0) r4.2<1>:ud ARG(3):ud \n\ - // FFTID := FFTID from R0 header \n\ -(W) mov (1|M0) r4.4<1>:ud r0.5<0;1,0>:ud \n\ -#else // prepare Typed 2D Block Store \n\ - // Load r2.0 with tg id (X + ARG(1)) << ARG(0) \n\ -(W) add (1|M0) r2.0<1>:ud r0.1<0;1,0>:ud ARG(1):ud \n\ -(W) shl (1|M0) r2.0<1>:ud r2.0<0;1,0>:ud ARG(0):ud \n\ - // Load r2.4-7 with tg id Y + ARG(2):ud \n\ -(W) add (1|M0) r2.1<1>:ud r0.6<0;1,0>:ud ARG(2):ud \n\ - // Store X and Y block start (160:191 and 192:223) \n\ -(W) mov (2|M0) r4.5<1>:ud r2.0<2;2,1>:ud \n\ - // Store X and Y block max_size (224:231 and 232:239) \n\ -(W) mov (1|M0) r4.7<1>:ud ARG(3):ud \n\ -#endif \n\ +(W) mov (1|M0) r5.0<1>:ud ARG(2):ud \n\ + SET_THREAD_SPACE_ADDR(r4, ARG(0), ARG(1):ud, 4) \n\ // Check if masked exception is equal to provided value and write conditionally \n\ -(W) and (1|M0) r3.0<1>:ud cr0.1<0;1,0>:ud ARG(5):ud \n\ -(W) mov (1|M0) f0.0<1>:ud 0x0:ud \n\ -(W) cmp (1|M0) (eq)f0.0 null:ud r3.0<0;1,0>:ud ARG(6):ud \n\ -#if GEN_VER < 2000 // Media Block Write \n\ -(W&f0.0) send.dc1 (16|M0) null r4 src1_null 0 0x40A8000 \n\ -#else // Typed 2D Block Store \n\ -(W&f0.0) send.tgm (16|M0) null r4 null:0 0 0x64000007 \n\ -#endif \n\ - ", 2, x_offset, y_offset, 3, value, mask, expected); +(W) and (1|M0) r3.0<1>:ud cr0.1<0;1,0>:ud ARG(3):ud \n\ +(W) mov (1|M0) f0.0<1>:ud 0x0:ud \n\ +(W) cmp (1|M0) (eq)f0.0 null:ud r3.0<0;1,0>:ud ARG(4):ud \n\ +(W&f0.0) STORE_SPACE_DW(r4, r5) \n\ + ", 4 * x_offset, y_offset, value, mask, expected); } /** @@ -778,22 +672,8 @@ void gpgpu_shader__end_system_routine_step_if_eq(struct gpgpu_shader *shdr, emit_iga64_code(shdr, end_system_routine_step_if_eq, " \n\ (W) or (1|M0) cr0.0<1>:ud cr0.0<0;1,0>:ud 0x8000:ud \n\ (W) and (1|M0) cr0.1<1>:ud cr0.1<0;1,0>:ud ARG(0):ud \n\ -(W) mov (16|M0) r30.0<1>:ud 0x0:ud \n\ -#if GEN_VER < 2000 // Media Block Write \n\ - // Y offset of the block in rows := thread group id Y \n\ -(W) mov (1|M0) r30.1<1>:ud ARG(1):ud \n\ - // block width [0,63] representing 1 to 64 bytes, we want dword \n\ -(W) mov (1|M0) r30.2<1>:ud 0x3:ud \n\ - // FFTID := FFTID from R0 header \n\ -(W) mov (1|M0) r30.4<1>:ud r0.5<0;1,0>:ud \n\ -(W) send.dc1 (16|M0) r31 r30 null 0x0 0x2190000 \n\ -#else // Typed 2D Block Store \n\ - // Store X and Y block start (160:191 and 192:223) \n\ -(W) mov (1|M0) r30.6<1>:ud ARG(1):ud \n\ - // Store X and Y block size (224:231 and 232:239) \n\ -(W) mov (1|M0) r30.7<1>:ud 0x3:ud \n\ -(W) send.tgm (16|M0) r31 r30 null:0 0x0 0x62100003 \n\ -#endif \n\ + SET_SHARED_SPACE_ADDR(r30, ARG(0):ud, 4) \n\ +(W) LOAD_SPACE_DW(r31, r30) \n\ // clear the flag register \n\ (W) mov (1|M0) f0.0<1>:ud 0x0:ud \n\ (W) cmp (1|M0) (ne)f0.0 null<1>:ud r31.0<0;1,0>:ud ARG(2):ud \n\ diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c index 7bece1452e30..96126b8c50c2 100644 --- a/lib/iga64_generated_codes.c +++ b/lib/iga64_generated_codes.c @@ -3,7 +3,7 @@ #include "gpgpu_shader.h" -#define MD5_SUM_IGA64_ASMS 4c0bba92477c23a16c976cf0d7ccaba9 +#define MD5_SUM_IGA64_ASMS 3534731658223b1594f68ca427687773 struct iga64_template const iga64_code_gpgpu_fill[] = { { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { @@ -121,10 +121,10 @@ struct iga64_template const iga64_code_end_system_routine_step_if_eq[] = { { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { 0x80000966, 0x80018220, 0x02008000, 0x00008000, 0x80000965, 0x80118220, 0x02008010, 0xc0ded000, - 0x80100961, 0x1e054220, 0x00000000, 0x00000000, - 0x80000061, 0x1e654220, 0x00000000, 0xc0ded001, + 0x800c0961, 0x1e054220, 0x00000000, 0x00000000, + 0x80000061, 0x1e654220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e754220, 0x00000000, 0x00000003, - 0x80132031, 0x1f0c0000, 0xd0061e8c, 0x04000000, + 0x80032031, 0x1f0c0000, 0xd0061e8c, 0x04000000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80008070, 0x00018220, 0x22001f04, 0xc0ded002, 0x84000965, 0x80118220, 0x02008010, 0xc0ded003, @@ -134,12 +134,12 @@ struct iga64_template const iga64_code_end_system_routine_step_if_eq[] = { { .gen_ver = 1270, .size = 52, .code = (const uint32_t []) { 0x80000966, 0x80018220, 0x02008000, 0x00008000, 0x80000965, 0x80218220, 0x02008020, 0xc0ded000, - 0x80040961, 0x1e054220, 0x00000000, 0x00000000, - 0x80000061, 0x1e254220, 0x00000000, 0xc0ded001, + 0x80030961, 0x1e054220, 0x00000000, 0x00000000, + 0x80000061, 0x1e254220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e454220, 0x00000000, 0x00000003, 0x80000061, 0x1e850220, 0x000000a4, 0x00000000, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x80044031, 0x1f0c0000, 0xc0001e0c, 0x02400000, + 0x80004031, 0x1f0c0000, 0xc0001e0c, 0x02400000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80002070, 0x00018220, 0x22001f04, 0xc0ded002, 0x81000965, 0x80218220, 0x02008020, 0xc0ded003, @@ -149,11 +149,11 @@ struct iga64_template const iga64_code_end_system_routine_step_if_eq[] = { { .gen_ver = 1260, .size = 48, .code = (const uint32_t []) { 0x80000966, 0x80018220, 0x02008000, 0x00008000, 0x80000965, 0x80118220, 0x02008010, 0xc0ded000, - 0x80100961, 0x1e054220, 0x00000000, 0x00000000, - 0x80000061, 0x1e154220, 0x00000000, 0xc0ded001, + 0x800c0961, 0x1e054220, 0x00000000, 0x00000000, + 0x80000061, 0x1e154220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e254220, 0x00000000, 0x00000003, 0x80000061, 0x1e450220, 0x00000054, 0x00000000, - 0x80132031, 0x1f0c0000, 0xc0001e0c, 0x02400000, + 0x80032031, 0x1f0c0000, 0xc0001e0c, 0x02400000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80008070, 0x00018220, 0x22001f04, 0xc0ded002, 0x84000965, 0x80118220, 0x02008010, 0xc0ded003, @@ -163,12 +163,12 @@ struct iga64_template const iga64_code_end_system_routine_step_if_eq[] = { { .gen_ver = 1250, .size = 52, .code = (const uint32_t []) { 0x80000966, 0x80018220, 0x02008000, 0x00008000, 0x80000965, 0x80218220, 0x02008020, 0xc0ded000, - 0x80040961, 0x1e054220, 0x00000000, 0x00000000, - 0x80000061, 0x1e254220, 0x00000000, 0xc0ded001, + 0x80030961, 0x1e054220, 0x00000000, 0x00000000, + 0x80000061, 0x1e254220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e454220, 0x00000000, 0x00000003, 0x80000061, 0x1e850220, 0x000000a4, 0x00000000, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x80044031, 0x1f0c0000, 0xc0001e0c, 0x02400000, + 0x80004031, 0x1f0c0000, 0xc0001e0c, 0x02400000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80002070, 0x00018220, 0x22001f04, 0xc0ded002, 0x81000965, 0x80218220, 0x02008020, 0xc0ded003, @@ -178,11 +178,11 @@ struct iga64_template const iga64_code_end_system_routine_step_if_eq[] = { { .gen_ver = 0, .size = 48, .code = (const uint32_t []) { 0x80000166, 0x80018220, 0x02008000, 0x00008000, 0x80000165, 0x80218220, 0x02008020, 0xc0ded000, - 0x80040161, 0x1e054220, 0x00000000, 0x00000000, - 0x80000061, 0x1e254220, 0x00000000, 0xc0ded001, + 0x80030161, 0x1e054220, 0x00000000, 0x00000000, + 0x80000061, 0x1e254220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e454220, 0x00000000, 0x00000003, 0x80000061, 0x1e850220, 0x000000a4, 0x00000000, - 0x80049031, 0x1f0c0000, 0xc0001e0c, 0x02400000, + 0x80009031, 0x1f0c0000, 0xc0001e0c, 0x02400000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80002070, 0x00018220, 0x22001f04, 0xc0ded002, 0x81000165, 0x80218220, 0x02008020, 0xc0ded003, @@ -231,84 +231,83 @@ struct iga64_template const iga64_code_breakpoint_suppress[] = { }; struct iga64_template const iga64_code_write_on_exception[] = { - { .gen_ver = 2000, .size = 56, .code = (const uint32_t []) { - 0x80100061, 0x04054220, 0x00000000, 0x00000000, - 0x80000061, 0x05054220, 0x00000000, 0xc0ded004, - 0x80000040, 0x02058220, 0x02000014, 0xc0ded001, - 0x80001969, 0x02058220, 0x02000204, 0xc0ded000, - 0x80000040, 0x02158220, 0x02000064, 0xc0ded002, - 0x80041961, 0x04550220, 0x00220205, 0x00000000, - 0x80000061, 0x04754220, 0x00000000, 0xc0ded003, - 0x80000965, 0x03058220, 0x02008010, 0xc0ded005, + { .gen_ver = 2000, .size = 52, .code = (const uint32_t []) { + 0x80000061, 0x05054220, 0x00000000, 0xc0ded002, + 0x800c0061, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04558220, 0x02000014, 0x00000002, + 0x80001940, 0x04558220, 0x02000454, 0xc0ded000, + 0x80000040, 0x04658220, 0x02000064, 0xc0ded001, + 0x80000061, 0x04754220, 0x00000000, 0x00000003, + 0x80000965, 0x03058220, 0x02008010, 0xc0ded003, 0x80000961, 0x30014220, 0x00000000, 0x00000000, - 0x80001a70, 0x00018220, 0x12000304, 0xc0ded006, - 0x84132031, 0x00000000, 0xd00e0494, 0x04000000, + 0x80001a70, 0x00018220, 0x12000304, 0xc0ded004, + 0x84032031, 0x00000000, 0xd00e0494, 0x04000000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 1270, .size = 60, .code = (const uint32_t []) { - 0x80040061, 0x04054220, 0x00000000, 0x00000000, - 0x80000061, 0x05054220, 0x00000000, 0xc0ded004, - 0x80000040, 0x04058220, 0x02000024, 0xc0ded001, - 0x80001969, 0x04058220, 0x02000404, 0xc0ded000, - 0x80000040, 0x04258220, 0x020000c4, 0xc0ded002, - 0x80000061, 0x04454220, 0x00000000, 0xc0ded003, + 0x80000061, 0x05054220, 0x00000000, 0xc0ded002, + 0x80030061, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000024, 0x00000002, + 0x80001940, 0x04058220, 0x02000404, 0xc0ded000, + 0x80000040, 0x04258220, 0x020000c4, 0xc0ded001, + 0x80000061, 0x04454220, 0x00000000, 0x00000003, 0x80000061, 0x04850220, 0x000000a4, 0x00000000, - 0x80000965, 0x03058220, 0x02008020, 0xc0ded005, + 0x80000965, 0x03058220, 0x02008020, 0xc0ded003, 0x80000961, 0x30014220, 0x00000000, 0x00000000, - 0x80001a70, 0x00018220, 0x12000304, 0xc0ded006, + 0x80001a70, 0x00018220, 0x12000304, 0xc0ded004, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x81044031, 0x00000000, 0xc0000414, 0x02a00000, + 0x81004031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 1260, .size = 56, .code = (const uint32_t []) { - 0x80100061, 0x04054220, 0x00000000, 0x00000000, - 0x80000061, 0x05054220, 0x00000000, 0xc0ded004, - 0x80000040, 0x04058220, 0x02000014, 0xc0ded001, - 0x80001969, 0x04058220, 0x02000404, 0xc0ded000, - 0x80000040, 0x04158220, 0x02000064, 0xc0ded002, - 0x80000061, 0x04254220, 0x00000000, 0xc0ded003, + 0x80000061, 0x05054220, 0x00000000, 0xc0ded002, + 0x800c0061, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000014, 0x00000002, + 0x80001940, 0x04058220, 0x02000404, 0xc0ded000, + 0x80000040, 0x04158220, 0x02000064, 0xc0ded001, + 0x80000061, 0x04254220, 0x00000000, 0x00000003, 0x80000061, 0x04450220, 0x00000054, 0x00000000, - 0x80000965, 0x03058220, 0x02008010, 0xc0ded005, + 0x80000965, 0x03058220, 0x02008010, 0xc0ded003, 0x80000961, 0x30014220, 0x00000000, 0x00000000, - 0x80001a70, 0x00018220, 0x12000304, 0xc0ded006, - 0x84132031, 0x00000000, 0xc0000414, 0x02a00000, + 0x80001a70, 0x00018220, 0x12000304, 0xc0ded004, + 0x84032031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 1250, .size = 60, .code = (const uint32_t []) { - 0x80040061, 0x04054220, 0x00000000, 0x00000000, - 0x80000061, 0x05054220, 0x00000000, 0xc0ded004, - 0x80000040, 0x04058220, 0x02000024, 0xc0ded001, - 0x80001969, 0x04058220, 0x02000404, 0xc0ded000, - 0x80000040, 0x04258220, 0x020000c4, 0xc0ded002, - 0x80000061, 0x04454220, 0x00000000, 0xc0ded003, + 0x80000061, 0x05054220, 0x00000000, 0xc0ded002, + 0x80030061, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000024, 0x00000002, + 0x80001940, 0x04058220, 0x02000404, 0xc0ded000, + 0x80000040, 0x04258220, 0x020000c4, 0xc0ded001, + 0x80000061, 0x04454220, 0x00000000, 0x00000003, 0x80000061, 0x04850220, 0x000000a4, 0x00000000, - 0x80000965, 0x03058220, 0x02008020, 0xc0ded005, + 0x80000965, 0x03058220, 0x02008020, 0xc0ded003, 0x80000961, 0x30014220, 0x00000000, 0x00000000, - 0x80001a70, 0x00018220, 0x12000304, 0xc0ded006, + 0x80001a70, 0x00018220, 0x12000304, 0xc0ded004, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x81044031, 0x00000000, 0xc0000414, 0x02a00000, + 0x81004031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 0, .size = 56, .code = (const uint32_t []) { - 0x80040061, 0x04054220, 0x00000000, 0x00000000, - 0x80000061, 0x05054220, 0x00000000, 0xc0ded004, - 0x80000040, 0x04058220, 0x02000024, 0xc0ded001, - 0x80000169, 0x04058220, 0x02000404, 0xc0ded000, - 0x80000040, 0x04258220, 0x020000c4, 0xc0ded002, - 0x80000061, 0x04454220, 0x00000000, 0xc0ded003, + 0x80000061, 0x05054220, 0x00000000, 0xc0ded002, + 0x80030061, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000024, 0x00000002, + 0x80000140, 0x04058220, 0x02000404, 0xc0ded000, + 0x80000040, 0x04258220, 0x020000c4, 0xc0ded001, + 0x80000061, 0x04454220, 0x00000000, 0x00000003, 0x80000061, 0x04850220, 0x000000a4, 0x00000000, - 0x80000165, 0x03058220, 0x02008020, 0xc0ded005, + 0x80000165, 0x03058220, 0x02008020, 0xc0ded003, 0x80000161, 0x30014220, 0x00000000, 0x00000000, - 0x80000270, 0x00018220, 0x12000304, 0xc0ded006, - 0x81049031, 0x00000000, 0xc0000414, 0x02a00000, + 0x80000270, 0x00018220, 0x12000304, 0xc0ded004, + 0x81009031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000101, 0x00010000, 0x00000000, 0x00000000, @@ -362,84 +361,68 @@ struct iga64_template const iga64_code_clear_exception[] = { }; struct iga64_template const iga64_code_media_block_write[] = { - { .gen_ver = 2000, .size = 56, .code = (const uint32_t []) { - 0x80100061, 0x04054220, 0x00000000, 0x00000000, - 0x80000061, 0x05054220, 0x00000000, 0xc0ded003, - 0x80000061, 0x05154220, 0x00000000, 0xc0ded004, - 0x80000061, 0x05254220, 0x00000000, 0xc0ded005, - 0x80000061, 0x05354220, 0x00000000, 0xc0ded006, - 0x80000069, 0x02058220, 0x02000014, 0xc0ded000, - 0x80000061, 0x02150220, 0x00000064, 0x00000000, - 0x80001940, 0x02158220, 0x02000214, 0xc0ded001, - 0x80041961, 0x04550220, 0x00220205, 0x00000000, - 0x80000061, 0x04754220, 0x00000000, 0xc0ded002, - 0x80132031, 0x00000000, 0xd00e0494, 0x04000000, + { .gen_ver = 2000, .size = 40, .code = (const uint32_t []) { + 0x80000061, 0x05054220, 0x00000000, 0xc0ded001, + 0x800c0061, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04558220, 0x02000014, 0x00000002, + 0x80001940, 0x04558220, 0x02000454, 0x00000000, + 0x80000040, 0x04658220, 0x02000064, 0xc0ded000, + 0x80000061, 0x04754220, 0x00000000, 0x00000003, + 0x80032031, 0x00000000, 0xd00e0494, 0x04000000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, - { .gen_ver = 1270, .size = 60, .code = (const uint32_t []) { - 0x80040061, 0x04054220, 0x00000000, 0x00000000, - 0x80000061, 0x05054220, 0x00000000, 0xc0ded003, - 0x80000061, 0x05254220, 0x00000000, 0xc0ded004, - 0x80000061, 0x05454220, 0x00000000, 0xc0ded005, - 0x80000061, 0x05654220, 0x00000000, 0xc0ded006, - 0x80000069, 0x04058220, 0x02000024, 0xc0ded000, - 0x80000061, 0x04250220, 0x000000c4, 0x00000000, - 0x80001940, 0x04258220, 0x02000424, 0xc0ded001, - 0x80000061, 0x04454220, 0x00000000, 0xc0ded002, + { .gen_ver = 1270, .size = 48, .code = (const uint32_t []) { + 0x80000061, 0x05054220, 0x00000000, 0xc0ded001, + 0x80030061, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000024, 0x00000002, + 0x80001940, 0x04058220, 0x02000404, 0x00000000, + 0x80000040, 0x04258220, 0x020000c4, 0xc0ded000, + 0x80000061, 0x04454220, 0x00000000, 0x00000003, 0x80000061, 0x04850220, 0x000000a4, 0x00000000, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x80044031, 0x00000000, 0xc0000414, 0x02a00000, + 0x80004031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, - { .gen_ver = 1260, .size = 56, .code = (const uint32_t []) { - 0x80100061, 0x04054220, 0x00000000, 0x00000000, - 0x80000061, 0x05054220, 0x00000000, 0xc0ded003, - 0x80000061, 0x05154220, 0x00000000, 0xc0ded004, - 0x80000061, 0x05254220, 0x00000000, 0xc0ded005, - 0x80000061, 0x05354220, 0x00000000, 0xc0ded006, - 0x80000069, 0x04058220, 0x02000014, 0xc0ded000, - 0x80000061, 0x04150220, 0x00000064, 0x00000000, - 0x80001940, 0x04158220, 0x02000414, 0xc0ded001, - 0x80000061, 0x04254220, 0x00000000, 0xc0ded002, + { .gen_ver = 1260, .size = 44, .code = (const uint32_t []) { + 0x80000061, 0x05054220, 0x00000000, 0xc0ded001, + 0x800c0061, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000014, 0x00000002, + 0x80001940, 0x04058220, 0x02000404, 0x00000000, + 0x80000040, 0x04158220, 0x02000064, 0xc0ded000, + 0x80000061, 0x04254220, 0x00000000, 0x00000003, 0x80000061, 0x04450220, 0x00000054, 0x00000000, - 0x80132031, 0x00000000, 0xc0000414, 0x02a00000, + 0x80032031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, - { .gen_ver = 1250, .size = 60, .code = (const uint32_t []) { - 0x80040061, 0x04054220, 0x00000000, 0x00000000, - 0x80000061, 0x05054220, 0x00000000, 0xc0ded003, - 0x80000061, 0x05254220, 0x00000000, 0xc0ded004, - 0x80000061, 0x05454220, 0x00000000, 0xc0ded005, - 0x80000061, 0x05654220, 0x00000000, 0xc0ded006, - 0x80000069, 0x04058220, 0x02000024, 0xc0ded000, - 0x80000061, 0x04250220, 0x000000c4, 0x00000000, - 0x80001940, 0x04258220, 0x02000424, 0xc0ded001, - 0x80000061, 0x04454220, 0x00000000, 0xc0ded002, + { .gen_ver = 1250, .size = 48, .code = (const uint32_t []) { + 0x80000061, 0x05054220, 0x00000000, 0xc0ded001, + 0x80030061, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000024, 0x00000002, + 0x80001940, 0x04058220, 0x02000404, 0x00000000, + 0x80000040, 0x04258220, 0x020000c4, 0xc0ded000, + 0x80000061, 0x04454220, 0x00000000, 0x00000003, 0x80000061, 0x04850220, 0x000000a4, 0x00000000, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x80044031, 0x00000000, 0xc0000414, 0x02a00000, + 0x80004031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, - { .gen_ver = 0, .size = 56, .code = (const uint32_t []) { - 0x80040061, 0x04054220, 0x00000000, 0x00000000, - 0x80000061, 0x05054220, 0x00000000, 0xc0ded003, - 0x80000061, 0x05254220, 0x00000000, 0xc0ded004, - 0x80000061, 0x05454220, 0x00000000, 0xc0ded005, - 0x80000061, 0x05654220, 0x00000000, 0xc0ded006, - 0x80000069, 0x04058220, 0x02000024, 0xc0ded000, - 0x80000061, 0x04250220, 0x000000c4, 0x00000000, - 0x80000140, 0x04258220, 0x02000424, 0xc0ded001, - 0x80000061, 0x04454220, 0x00000000, 0xc0ded002, + { .gen_ver = 0, .size = 44, .code = (const uint32_t []) { + 0x80000061, 0x05054220, 0x00000000, 0xc0ded001, + 0x80030061, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000024, 0x00000002, + 0x80000140, 0x04058220, 0x02000404, 0x00000000, + 0x80000040, 0x04258220, 0x020000c4, 0xc0ded000, + 0x80000061, 0x04454220, 0x00000000, 0x00000003, 0x80000061, 0x04850220, 0x000000a4, 0x00000000, - 0x80049031, 0x00000000, 0xc0000414, 0x02a00000, + 0x80009031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000101, 0x00010000, 0x00000000, 0x00000000, @@ -470,65 +453,68 @@ struct iga64_template const iga64_code_write_aip[] = { }; struct iga64_template const iga64_code_media_block_write_aip[] = { - { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { + { .gen_ver = 2000, .size = 40, .code = (const uint32_t []) { 0x80000961, 0x05050220, 0x00008020, 0x00000000, - 0x80000969, 0x02058220, 0x02000014, 0x00000002, - 0x80000061, 0x02150220, 0x00000064, 0x00000000, - 0x80001940, 0x02158220, 0x02000214, 0xc0ded000, - 0x80100061, 0x04054220, 0x00000000, 0x00000000, - 0x80041a61, 0x04550220, 0x00220205, 0x00000000, + 0x800c0961, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04558220, 0x02000014, 0x00000002, + 0x80001940, 0x04558220, 0x02000454, 0x00000000, + 0x80000040, 0x04658220, 0x02000064, 0xc0ded000, 0x80000061, 0x04754220, 0x00000000, 0x00000003, - 0x80132031, 0x00000000, 0xd00e0494, 0x04000000, + 0x80032031, 0x00000000, 0xd00e0494, 0x04000000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, - { .gen_ver = 1270, .size = 44, .code = (const uint32_t []) { + { .gen_ver = 1270, .size = 48, .code = (const uint32_t []) { 0x80000961, 0x05050220, 0x00008040, 0x00000000, - 0x80000969, 0x04058220, 0x02000024, 0x00000002, - 0x80000061, 0x04250220, 0x000000c4, 0x00000000, - 0x80001940, 0x04258220, 0x02000424, 0xc0ded000, + 0x80030961, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000024, 0x00000002, + 0x80001940, 0x04058220, 0x02000404, 0x00000000, + 0x80000040, 0x04258220, 0x020000c4, 0xc0ded000, 0x80000061, 0x04454220, 0x00000000, 0x00000003, 0x80000061, 0x04850220, 0x000000a4, 0x00000000, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x80044031, 0x00000000, 0xc0000414, 0x02a00000, + 0x80004031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, - { .gen_ver = 1260, .size = 40, .code = (const uint32_t []) { + { .gen_ver = 1260, .size = 44, .code = (const uint32_t []) { 0x80000961, 0x05050220, 0x00008020, 0x00000000, - 0x80000969, 0x04058220, 0x02000014, 0x00000002, - 0x80000061, 0x04150220, 0x00000064, 0x00000000, - 0x80001940, 0x04158220, 0x02000414, 0xc0ded000, + 0x800c0961, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000014, 0x00000002, + 0x80001940, 0x04058220, 0x02000404, 0x00000000, + 0x80000040, 0x04158220, 0x02000064, 0xc0ded000, 0x80000061, 0x04254220, 0x00000000, 0x00000003, 0x80000061, 0x04450220, 0x00000054, 0x00000000, - 0x80132031, 0x00000000, 0xc0000414, 0x02a00000, + 0x80032031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, - { .gen_ver = 1250, .size = 44, .code = (const uint32_t []) { + { .gen_ver = 1250, .size = 48, .code = (const uint32_t []) { 0x80000961, 0x05050220, 0x00008040, 0x00000000, - 0x80000969, 0x04058220, 0x02000024, 0x00000002, - 0x80000061, 0x04250220, 0x000000c4, 0x00000000, - 0x80001940, 0x04258220, 0x02000424, 0xc0ded000, + 0x80030961, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000024, 0x00000002, + 0x80001940, 0x04058220, 0x02000404, 0x00000000, + 0x80000040, 0x04258220, 0x020000c4, 0xc0ded000, 0x80000061, 0x04454220, 0x00000000, 0x00000003, 0x80000061, 0x04850220, 0x000000a4, 0x00000000, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x80044031, 0x00000000, 0xc0000414, 0x02a00000, + 0x80004031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, - { .gen_ver = 0, .size = 40, .code = (const uint32_t []) { + { .gen_ver = 0, .size = 44, .code = (const uint32_t []) { 0x80000161, 0x05050220, 0x00008040, 0x00000000, - 0x80000169, 0x04058220, 0x02000024, 0x00000002, - 0x80000061, 0x04250220, 0x000000c4, 0x00000000, - 0x80000140, 0x04258220, 0x02000424, 0xc0ded000, + 0x80030161, 0x04054220, 0x00000000, 0x00000000, + 0x80000069, 0x04058220, 0x02000024, 0x00000002, + 0x80000140, 0x04058220, 0x02000404, 0x00000000, + 0x80000040, 0x04258220, 0x020000c4, 0xc0ded000, 0x80000061, 0x04454220, 0x00000000, 0x00000003, 0x80000061, 0x04850220, 0x000000a4, 0x00000000, - 0x80049031, 0x00000000, 0xc0000414, 0x02a00000, + 0x80009031, 0x00000000, 0xc0000414, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000101, 0x00010000, 0x00000000, 0x00000000, @@ -537,77 +523,77 @@ struct iga64_template const iga64_code_media_block_write_aip[] = { struct iga64_template const iga64_code_common_target_write[] = { { .gen_ver = 2000, .size = 48, .code = (const uint32_t []) { - 0x80100061, 0x1e054220, 0x00000000, 0x00000000, 0x80100061, 0x1f054220, 0x00000000, 0x00000000, 0x80000061, 0x1f054220, 0x00000000, 0xc0ded001, 0x80000061, 0x1f154220, 0x00000000, 0xc0ded002, 0x80000061, 0x1f254220, 0x00000000, 0xc0ded003, 0x80000061, 0x1f354220, 0x00000000, 0xc0ded004, + 0x800c0061, 0x1e054220, 0x00000000, 0x00000000, 0x80000061, 0x1e654220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e754220, 0x00000000, 0x0000000f, - 0x80132031, 0x00000000, 0xd00e1e94, 0x04000000, + 0x80032031, 0x00000000, 0xd00e1e94, 0x04000000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 1270, .size = 56, .code = (const uint32_t []) { - 0x80040061, 0x1e054220, 0x00000000, 0x00000000, 0x80040061, 0x1f054220, 0x00000000, 0x00000000, 0x80000061, 0x1f054220, 0x00000000, 0xc0ded001, 0x80000061, 0x1f254220, 0x00000000, 0xc0ded002, 0x80000061, 0x1f454220, 0x00000000, 0xc0ded003, 0x80000061, 0x1f654220, 0x00000000, 0xc0ded004, + 0x80030061, 0x1e054220, 0x00000000, 0x00000000, 0x80000061, 0x1e254220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e454220, 0x00000000, 0x0000000f, 0x80000061, 0x1e850220, 0x000000a4, 0x00000000, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x80044031, 0x00000000, 0xc0001e14, 0x02a00000, + 0x80004031, 0x00000000, 0xc0001e14, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 1260, .size = 52, .code = (const uint32_t []) { - 0x80100061, 0x1e054220, 0x00000000, 0x00000000, 0x80100061, 0x1f054220, 0x00000000, 0x00000000, 0x80000061, 0x1f054220, 0x00000000, 0xc0ded001, 0x80000061, 0x1f154220, 0x00000000, 0xc0ded002, 0x80000061, 0x1f254220, 0x00000000, 0xc0ded003, 0x80000061, 0x1f354220, 0x00000000, 0xc0ded004, + 0x800c0061, 0x1e054220, 0x00000000, 0x00000000, 0x80000061, 0x1e154220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e254220, 0x00000000, 0x0000000f, 0x80000061, 0x1e450220, 0x00000054, 0x00000000, - 0x80132031, 0x00000000, 0xc0001e14, 0x02a00000, + 0x80032031, 0x00000000, 0xc0001e14, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 1250, .size = 56, .code = (const uint32_t []) { - 0x80040061, 0x1e054220, 0x00000000, 0x00000000, 0x80040061, 0x1f054220, 0x00000000, 0x00000000, 0x80000061, 0x1f054220, 0x00000000, 0xc0ded001, 0x80000061, 0x1f254220, 0x00000000, 0xc0ded002, 0x80000061, 0x1f454220, 0x00000000, 0xc0ded003, 0x80000061, 0x1f654220, 0x00000000, 0xc0ded004, + 0x80030061, 0x1e054220, 0x00000000, 0x00000000, 0x80000061, 0x1e254220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e454220, 0x00000000, 0x0000000f, 0x80000061, 0x1e850220, 0x000000a4, 0x00000000, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x80044031, 0x00000000, 0xc0001e14, 0x02a00000, + 0x80004031, 0x00000000, 0xc0001e14, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 0, .size = 52, .code = (const uint32_t []) { - 0x80040061, 0x1e054220, 0x00000000, 0x00000000, 0x80040061, 0x1f054220, 0x00000000, 0x00000000, 0x80000061, 0x1f054220, 0x00000000, 0xc0ded001, 0x80000061, 0x1f254220, 0x00000000, 0xc0ded002, 0x80000061, 0x1f454220, 0x00000000, 0xc0ded003, 0x80000061, 0x1f654220, 0x00000000, 0xc0ded004, + 0x80030061, 0x1e054220, 0x00000000, 0x00000000, 0x80000061, 0x1e254220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e454220, 0x00000000, 0x0000000f, 0x80000061, 0x1e850220, 0x000000a4, 0x00000000, - 0x80049031, 0x00000000, 0xc0001e14, 0x02a00000, + 0x80009031, 0x00000000, 0xc0001e14, 0x02a00000, 0x80000001, 0x00010000, 0x20000000, 0x00000000, 0x80000001, 0x00010000, 0x30000000, 0x00000000, 0x80000101, 0x00010000, 0x00000000, 0x00000000, @@ -665,56 +651,56 @@ struct iga64_template const iga64_code_clear_r40[] = { struct iga64_template const iga64_code_jump_dw_neq[] = { { .gen_ver = 2000, .size = 32, .code = (const uint32_t []) { - 0x80100061, 0x1e054220, 0x00000000, 0x00000000, + 0x800c0061, 0x1e054220, 0x00000000, 0x00000000, 0x80000061, 0x1e654220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e754220, 0x00000000, 0x00000003, - 0x80132031, 0x1f0c0000, 0xd0061e8c, 0x04000000, + 0x80032031, 0x1f0c0000, 0xd0061e8c, 0x04000000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80008070, 0x00018220, 0x22001f04, 0xc0ded001, 0x84000020, 0x00004000, 0x00000000, 0xffffffa0, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 1270, .size = 40, .code = (const uint32_t []) { - 0x80040061, 0x1e054220, 0x00000000, 0x00000000, + 0x80030061, 0x1e054220, 0x00000000, 0x00000000, 0x80000061, 0x1e254220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e454220, 0x00000000, 0x00000003, 0x80000061, 0x1e850220, 0x000000a4, 0x00000000, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x80044031, 0x1f0c0000, 0xc0001e0c, 0x02400000, + 0x80004031, 0x1f0c0000, 0xc0001e0c, 0x02400000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80002070, 0x00018220, 0x22001f04, 0xc0ded001, 0x81000020, 0x00004000, 0x00000000, 0xffffff80, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 1260, .size = 36, .code = (const uint32_t []) { - 0x80100061, 0x1e054220, 0x00000000, 0x00000000, + 0x800c0061, 0x1e054220, 0x00000000, 0x00000000, 0x80000061, 0x1e154220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e254220, 0x00000000, 0x00000003, 0x80000061, 0x1e450220, 0x00000054, 0x00000000, - 0x80132031, 0x1f0c0000, 0xc0001e0c, 0x02400000, + 0x80032031, 0x1f0c0000, 0xc0001e0c, 0x02400000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80008070, 0x00018220, 0x22001f04, 0xc0ded001, 0x84000020, 0x00004000, 0x00000000, 0xffffff90, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 1250, .size = 40, .code = (const uint32_t []) { - 0x80040061, 0x1e054220, 0x00000000, 0x00000000, + 0x80030061, 0x1e054220, 0x00000000, 0x00000000, 0x80000061, 0x1e254220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e454220, 0x00000000, 0x00000003, 0x80000061, 0x1e850220, 0x000000a4, 0x00000000, 0x80001901, 0x00010000, 0x00000000, 0x00000000, - 0x80044031, 0x1f0c0000, 0xc0001e0c, 0x02400000, + 0x80004031, 0x1f0c0000, 0xc0001e0c, 0x02400000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80002070, 0x00018220, 0x22001f04, 0xc0ded001, 0x81000020, 0x00004000, 0x00000000, 0xffffff80, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 0, .size = 36, .code = (const uint32_t []) { - 0x80040061, 0x1e054220, 0x00000000, 0x00000000, + 0x80030061, 0x1e054220, 0x00000000, 0x00000000, 0x80000061, 0x1e254220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e454220, 0x00000000, 0x00000003, 0x80000061, 0x1e850220, 0x000000a4, 0x00000000, - 0x80049031, 0x1f0c0000, 0xc0001e0c, 0x02400000, + 0x80009031, 0x1f0c0000, 0xc0001e0c, 0x02400000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80002070, 0x00018220, 0x22001f04, 0xc0ded001, 0x81000120, 0x00004000, 0x00000000, 0xffffff90, diff --git a/lib/iga64_macros.h b/lib/iga64_macros.h index 6459b524c3fd..40b6338928e1 100644 --- a/lib/iga64_macros.h +++ b/lib/iga64_macros.h @@ -16,4 +16,47 @@ #define src1_null null:0 #endif +/* GPGPU_R0Payload fields, Bspec: 55396, 56587 */ +#define R0_TGIDX r0.1<0;1,0>:ud +#define R0_TGIDY r0.6<0;1,0>:ud +#define R0_FFTID r0.5<0;1,0>:ud + +#define SET_SHARED_MEDIA_BLOCK_MSG_HDR(dst, y, width) \ +(W) mov (8) dst.0<1>:ud 0x0:ud ;\ +(W) mov (1) dst.1<1>:ud y ;\ +(W) mov (1) dst.2<1>:ud (width - 1):ud ;\ +(W) mov (1) dst.4<1>:ud R0_FFTID + +#define SET_THREAD_MEDIA_BLOCK_MSG_HDR(dst, x, y, width) \ +(W) mov (8) dst.0<1>:ud 0x0:ud ;\ +(W) shl (1) dst.0<1>:ud R0_TGIDX 0x2:ud ;\ +(W) add (1) dst.0<1>:ud dst.0<0;1,0>:ud x:ud ;\ +(W) add (1) dst.1<1>:ud R0_TGIDY y ;\ +(W) mov (1) dst.2<1>:ud (width - 1):ud ;\ +(W) mov (1) dst.4<1>:ud R0_FFTID + +#define SET_SHARED_MEDIA_A2DBLOCK_PAYLOAD(dst, y, width) \ +(W) mov (8) dst.0<1>:ud 0x0:ud ;\ +(W) mov (1) dst.6<1>:ud y ;\ +(W) mov (1) dst.7<1>:ud (width - 1):ud + +#define SET_THREAD_MEDIA_A2DBLOCK_PAYLOAD(dst, x, y, width) \ +(W) mov (8) dst.0<1>:ud 0x0:ud ;\ +(W) shl (1) dst.5<1>:ud R0_TGIDX 0x2:ud ;\ +(W) add (1) dst.5<1>:ud dst.5<0;1,0>:ud x:ud ;\ +(W) add (1) dst.6<1>:ud R0_TGIDY y ;\ +(W) mov (1) dst.7<1>:ud (width - 1):ud ;\ + +#if GEN_VER < 2000 +#define SET_SHARED_SPACE_ADDR(dst, y, width) SET_SHARED_MEDIA_BLOCK_MSG_HDR(dst, y, width) +#define SET_THREAD_SPACE_ADDR(dst, x, y, width) SET_THREAD_MEDIA_BLOCK_MSG_HDR(dst, x, y, width) +#define LOAD_SPACE_DW(dst, src) send.dc1 (1) dst src src1_null 0x0 0x2190000 +#define STORE_SPACE_DW(dst, src) send.dc1 (1) null dst null 0x0 0x40A8000 +#else +#define SET_SHARED_SPACE_ADDR(dst, y, width) SET_SHARED_MEDIA_A2DBLOCK_PAYLOAD(dst, y, width) +#define SET_THREAD_SPACE_ADDR(dst, x, y, width) SET_THREAD_MEDIA_A2DBLOCK_PAYLOAD(dst, x, y, width) +#define LOAD_SPACE_DW(dst, src) send.tgm (1) dst src null:0 0x0 0x62100003 +#define STORE_SPACE_DW(dst, src) send.tgm (1) null dst null:0 0x0 0x64000007 +#endif + #endif -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v5 3/4] lib/gpgpu_shader: pass surface desription to shaders via inline data 2024-11-25 14:32 [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda 2024-11-25 14:33 ` [PATCH v5 1/4] scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation Andrzej Hajda 2024-11-25 14:33 ` [PATCH v5 2/4] lib/gpgpu_shader: simplify load/store shaders Andrzej Hajda @ 2024-11-25 14:33 ` Andrzej Hajda 2024-11-25 14:33 ` [PATCH v5 4/4] lib/gpgpu_shader: add support for Xe3 platforms Andrzej Hajda ` (5 subsequent siblings) 8 siblings, 0 replies; 11+ messages in thread From: Andrzej Hajda @ 2024-11-25 14:33 UTC (permalink / raw) To: igt-dev Cc: Dominik Grzegorzek, Zbigniew Kempczyński, Gwan-gyeong Mun, Kamil Konieczny, Christoph Manszewski, Andrzej Hajda Since newer architectures require stateless load/stores we need to pass surface description to the shader. Instead of doing it for every call we can use inline data which is passed by COMPUTE_WALKER and is stored in GRF register r1. v4: - moved gpgpu_alloc_gpu_addr changes from next patch here (Dominik), - pass vm_id to intel_allocator (Dominik). Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com> --- lib/gpgpu_shader.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/lib/gpgpu_shader.c b/lib/gpgpu_shader.c index d9b511d4a474..c591eb119b91 100644 --- a/lib/gpgpu_shader.c +++ b/lib/gpgpu_shader.c @@ -148,6 +148,16 @@ __xelp_gpgpu_execfunc(struct intel_bb *ibb, engine | I915_EXEC_NO_RELOC, false); } +static void +fill_inline_data(uint32_t *inline_data, uint64_t target_offset, struct intel_buf *target) +{ + igt_assert(target->surface[0].stride == intel_buf_width(target) * target->bpp/8); + *inline_data++ = lower_32_bits(target_offset); + *inline_data++ = upper_32_bits(target_offset); + *inline_data++ = target->surface[0].stride; + *inline_data++ = intel_buf_height(target); +} + static void __xehp_gpgpu_execfunc(struct intel_bb *ibb, struct intel_buf *target, @@ -159,6 +169,7 @@ __xehp_gpgpu_execfunc(struct intel_bb *ibb, struct xehp_interface_descriptor_data idd; uint32_t sip_offset; uint64_t engine; + uint32_t *inline_data; intel_bb_add_intel_buf(ibb, target, true); @@ -186,7 +197,10 @@ __xehp_gpgpu_execfunc(struct intel_bb *ibb, if (sip_offset) emit_sip(ibb, sip_offset); + /* Inline data is at 31th/32th dword of COMPUTE_WALKER, BSpec: 67028 */ + inline_data = intel_bb_ptr(ibb) + 4 * (shdr->gen_ver < 2000 ? 31 : 32); xehp_emit_compute_walk(ibb, 0, 0, x_dim * 16, y_dim, &idd, 0x0); + fill_inline_data(inline_data, CANONICAL(target->addr.offset), target); intel_bb_out(ibb, MI_BATCH_BUFFER_END); intel_bb_ptr_align(ibb, 32); @@ -196,6 +210,17 @@ __xehp_gpgpu_execfunc(struct intel_bb *ibb, engine | I915_EXEC_NO_RELOC, false); } +static void gpgpu_alloc_gpu_addr(struct intel_bb *ibb, struct intel_buf *target) +{ + uint64_t ahnd; + + ahnd = intel_allocator_open_vm_full(ibb->fd, ibb->vm_id, 0, 0, INTEL_ALLOCATOR_SIMPLE, + ALLOC_STRATEGY_LOW_TO_HIGH, 0); + target->addr.offset = intel_allocator_alloc(ahnd, target->handle, + target->surface[0].size, 0); + intel_allocator_close(ahnd); +} + /** * gpgpu_shader_exec: * @ibb: pointer to initialized intel_bb @@ -221,6 +246,9 @@ void gpgpu_shader_exec(struct intel_bb *ibb, igt_assert(ibb->size >= PAGE_SIZE); igt_assert(ibb->ptr == ibb->batch); + if (target->addr.offset == INTEL_BUF_INVALID_ADDRESS) + gpgpu_alloc_gpu_addr(ibb, target); + if (shdr->gen_ver >= 1250) __xehp_gpgpu_execfunc(ibb, target, x_dim, y_dim, shdr, sip, ring, explicit_engine); -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v5 4/4] lib/gpgpu_shader: add support for Xe3 platforms 2024-11-25 14:32 [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda ` (2 preceding siblings ...) 2024-11-25 14:33 ` [PATCH v5 3/4] lib/gpgpu_shader: pass surface desription to shaders via inline data Andrzej Hajda @ 2024-11-25 14:33 ` Andrzej Hajda 2024-11-25 15:21 ` ✗ Xe.CI.BAT: failure for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) Patchwork ` (4 subsequent siblings) 8 siblings, 0 replies; 11+ messages in thread From: Andrzej Hajda @ 2024-11-25 14:33 UTC (permalink / raw) To: igt-dev Cc: Dominik Grzegorzek, Zbigniew Kempczyński, Gwan-gyeong Mun, Kamil Konieczny, Christoph Manszewski, Andrzej Hajda System routine (SIP) on Xe3 platforms disallow indirect load/store addressing. Surface descriptor must be passed in 2DBlock payload. Use for it inline data passed from thread dispatcher. v4: - moved gpgpu_alloc_gpu_addr changes to previous patch (Dominik) v5: - make the requirement in the description more precise (Dominik) - removed extra lines from macro file (Dominik) Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com> --- lib/iga64_generated_codes.c | 13 ++++++++----- lib/iga64_macros.h | 32 ++++++++++++++++++++++++++++---- 2 files changed, 36 insertions(+), 9 deletions(-) diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c index 96126b8c50c2..e1f68c968645 100644 --- a/lib/iga64_generated_codes.c +++ b/lib/iga64_generated_codes.c @@ -3,7 +3,7 @@ #include "gpgpu_shader.h" -#define MD5_SUM_IGA64_ASMS 3534731658223b1594f68ca427687773 +#define MD5_SUM_IGA64_ASMS f0c9d803408104207f0427e387a8050c struct iga64_template const iga64_code_gpgpu_fill[] = { { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { @@ -118,10 +118,11 @@ struct iga64_template const iga64_code_write_a64_d32[] = { }; struct iga64_template const iga64_code_end_system_routine_step_if_eq[] = { - { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { + { .gen_ver = 2000, .size = 48, .code = (const uint32_t []) { 0x80000966, 0x80018220, 0x02008000, 0x00008000, 0x80000965, 0x80118220, 0x02008010, 0xc0ded000, 0x800c0961, 0x1e054220, 0x00000000, 0x00000000, + 0x80000061, 0x1e554220, 0x00000000, 0x00000000, 0x80000061, 0x1e654220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e754220, 0x00000000, 0x00000003, 0x80032031, 0x1f0c0000, 0xd0061e8c, 0x04000000, @@ -522,13 +523,14 @@ struct iga64_template const iga64_code_media_block_write_aip[] = { }; struct iga64_template const iga64_code_common_target_write[] = { - { .gen_ver = 2000, .size = 48, .code = (const uint32_t []) { + { .gen_ver = 2000, .size = 52, .code = (const uint32_t []) { 0x80100061, 0x1f054220, 0x00000000, 0x00000000, 0x80000061, 0x1f054220, 0x00000000, 0xc0ded001, 0x80000061, 0x1f154220, 0x00000000, 0xc0ded002, 0x80000061, 0x1f254220, 0x00000000, 0xc0ded003, 0x80000061, 0x1f354220, 0x00000000, 0xc0ded004, 0x800c0061, 0x1e054220, 0x00000000, 0x00000000, + 0x80000061, 0x1e554220, 0x00000000, 0x00000000, 0x80000061, 0x1e654220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e754220, 0x00000000, 0x0000000f, 0x80032031, 0x00000000, 0xd00e1e94, 0x04000000, @@ -650,14 +652,15 @@ struct iga64_template const iga64_code_clear_r40[] = { }; struct iga64_template const iga64_code_jump_dw_neq[] = { - { .gen_ver = 2000, .size = 32, .code = (const uint32_t []) { + { .gen_ver = 2000, .size = 36, .code = (const uint32_t []) { 0x800c0061, 0x1e054220, 0x00000000, 0x00000000, + 0x80000061, 0x1e554220, 0x00000000, 0x00000000, 0x80000061, 0x1e654220, 0x00000000, 0xc0ded000, 0x80000061, 0x1e754220, 0x00000000, 0x00000003, 0x80032031, 0x1f0c0000, 0xd0061e8c, 0x04000000, 0x80000061, 0x30014220, 0x00000000, 0x00000000, 0x80008070, 0x00018220, 0x22001f04, 0xc0ded001, - 0x84000020, 0x00004000, 0x00000000, 0xffffffa0, + 0x84000020, 0x00004000, 0x00000000, 0xffffff90, 0x80000901, 0x00010000, 0x00000000, 0x00000000, }}, { .gen_ver = 1270, .size = 40, .code = (const uint32_t []) { diff --git a/lib/iga64_macros.h b/lib/iga64_macros.h index 40b6338928e1..ac482e47c05e 100644 --- a/lib/iga64_macros.h +++ b/lib/iga64_macros.h @@ -21,6 +21,13 @@ #define R0_TGIDY r0.6<0;1,0>:ud #define R0_FFTID r0.5<0;1,0>:ud +/* Inline data from COMPUTE_WALKER*, Bspec: 47203, 73584 + * Filled by __xe*_gpgpu_execfunc. + */ +#define R1_TGT_ADDRESS r1.0<0;1,0>:uq +#define R1_TGT_WIDTH r1.2<0;1,0>:ud +#define R1_TGT_HEIGHT r1.3<0;1,0>:ud + #define SET_SHARED_MEDIA_BLOCK_MSG_HDR(dst, y, width) \ (W) mov (8) dst.0<1>:ud 0x0:ud ;\ (W) mov (1) dst.1<1>:ud y ;\ @@ -35,13 +42,25 @@ (W) mov (1) dst.2<1>:ud (width - 1):ud ;\ (W) mov (1) dst.4<1>:ud R0_FFTID +#if GEN_VER < 3000 +#define SET_SURFACE_DESC(dst) \ +(W) mov (8) dst.0<1>:ud 0x0:ud +#else +#define SET_SURFACE_DESC(dst) \ +(W) mov (1) dst.0<1>:uq R1_TGT_ADDRESS ;\ +(W) add (1) dst.2<1>:ud R1_TGT_WIDTH -1:d ;\ +(W) add (1) dst.3<1>:ud R1_TGT_HEIGHT -1:d ;\ +(W) add (1) dst.4<1>:ud R1_TGT_WIDTH -1:d +#endif + #define SET_SHARED_MEDIA_A2DBLOCK_PAYLOAD(dst, y, width) \ -(W) mov (8) dst.0<1>:ud 0x0:ud ;\ -(W) mov (1) dst.6<1>:ud y ;\ + SET_SURFACE_DESC(dst) ;\ +(W) mov (1) dst.5<1>:ud 0x0:ud ;\ +(W) mov (1) dst.6<1>:ud y ;\ (W) mov (1) dst.7<1>:ud (width - 1):ud -#define SET_THREAD_MEDIA_A2DBLOCK_PAYLOAD(dst, x, y, width) \ -(W) mov (8) dst.0<1>:ud 0x0:ud ;\ +#define SET_THREAD_MEDIA_A2DBLOCK_PAYLOAD(dst, x, y, width) \ + SET_SURFACE_DESC(dst) ;\ (W) shl (1) dst.5<1>:ud R0_TGIDX 0x2:ud ;\ (W) add (1) dst.5<1>:ud dst.5<0;1,0>:ud x:ud ;\ (W) add (1) dst.6<1>:ud R0_TGIDY y ;\ @@ -55,8 +74,13 @@ #else #define SET_SHARED_SPACE_ADDR(dst, y, width) SET_SHARED_MEDIA_A2DBLOCK_PAYLOAD(dst, y, width) #define SET_THREAD_SPACE_ADDR(dst, x, y, width) SET_THREAD_MEDIA_A2DBLOCK_PAYLOAD(dst, x, y, width) +#if GEN_VER < 3000 #define LOAD_SPACE_DW(dst, src) send.tgm (1) dst src null:0 0x0 0x62100003 #define STORE_SPACE_DW(dst, src) send.tgm (1) null dst null:0 0x0 0x64000007 +#else +#define LOAD_SPACE_DW(dst, src) send.ugm (1) dst src null:0 0x0 0x2120003 +#define STORE_SPACE_DW(dst, src) send.ugm (1) null dst src:1 0x0 0x2020007 +#endif #endif #endif -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✗ Xe.CI.BAT: failure for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) 2024-11-25 14:32 [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda ` (3 preceding siblings ...) 2024-11-25 14:33 ` [PATCH v5 4/4] lib/gpgpu_shader: add support for Xe3 platforms Andrzej Hajda @ 2024-11-25 15:21 ` Patchwork 2024-11-25 15:44 ` Hajda, Andrzej 2024-11-25 15:38 ` ✓ i915.CI.BAT: success " Patchwork ` (3 subsequent siblings) 8 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2024-11-25 15:21 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9642 bytes --] == Series Details == Series: lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) URL : https://patchwork.freedesktop.org/series/141668/ State : failure == Summary == CI Bug Log - changes from XEIGT_8124_BAT -> XEIGTPW_12190_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12190_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12190_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 (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12190_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_module_load@load: - bat-dg2-oem2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_module_load@load.html Known issues ------------ Here are the changes found in XEIGTPW_12190_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-dg2-oem2: [PASS][3] -> [SKIP][4] ([Intel XE#1885]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html * igt@fbdev@nullptr: - bat-dg2-oem2: [PASS][5] -> [SKIP][6] ([Intel XE#2134]) +4 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@fbdev@nullptr.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@fbdev@nullptr.html * igt@kms_addfb_basic@bad-pitch-128: - bat-dg2-oem2: [PASS][7] -> [SKIP][8] ([Intel XE#2423] / [i915#2575]) +50 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_addfb_basic@bad-pitch-128.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_addfb_basic@bad-pitch-128.html * igt@kms_frontbuffer_tracking@basic: - bat-dg2-oem2: [PASS][9] -> [SKIP][10] ([Intel XE#2351]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-dg2-oem2: [PASS][11] -> [SKIP][12] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_prime_self_import@basic-with_fd_dup: - bat-dg2-oem2: [PASS][13] -> [SKIP][14] ([Intel XE#1130]) +157 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_fd_dup.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_fd_dup.html #### Warnings #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-oem2: [SKIP][15] ([Intel XE#623]) -> [SKIP][16] ([Intel XE#2423] / [i915#2575]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg2-oem2: [SKIP][17] ([Intel XE#455]) -> [SKIP][18] ([Intel XE#2351]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-oem2: [SKIP][19] ([i915#5274]) -> [SKIP][20] ([Intel XE#2423] / [i915#2575]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_psr@psr-cursor-plane-move: - bat-dg2-oem2: [SKIP][21] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][22] ([Intel XE#2351]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html * igt@sriov_basic@enable-vfs-autoprobe-off: - bat-dg2-oem2: [SKIP][23] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][24] ([Intel XE#2423] / [i915#2575]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: - bat-dg2-oem2: [SKIP][25] ([Intel XE#288]) -> [SKIP][26] ([Intel XE#1130]) +32 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt@xe_huc_copy@huc_copy: - bat-dg2-oem2: [SKIP][27] ([Intel XE#255]) -> [SKIP][28] ([Intel XE#1130]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html * igt@xe_pat@pat-index-xe2: - bat-dg2-oem2: [SKIP][29] ([Intel XE#977]) -> [SKIP][30] ([Intel XE#1130]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - bat-dg2-oem2: [SKIP][31] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][32] ([Intel XE#1130]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - bat-dg2-oem2: [SKIP][33] ([Intel XE#979]) -> [SKIP][34] ([Intel XE#1130]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_pat@pat-index-xelpg.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_pat@pat-index-xelpg.html * igt@xe_sriov_flr@flr-vf1-clear: - bat-dg2-oem2: [SKIP][35] ([Intel XE#3342]) -> [SKIP][36] ([Intel XE#1130]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_sriov_flr@flr-vf1-clear.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_sriov_flr@flr-vf1-clear.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8124 -> IGTPW_12190 * Linux: xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7 -> xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9 IGTPW_12190: 12190 IGT_8124: 8124 xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: 4d723d57180a3aafc1a510bc08ef42f4b03671a7 xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9: b21f1413ea1860e80fd278112e820e6dadfc9df9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/index.html [-- Attachment #2: Type: text/html, Size: 11728 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✗ Xe.CI.BAT: failure for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) 2024-11-25 15:21 ` ✗ Xe.CI.BAT: failure for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) Patchwork @ 2024-11-25 15:44 ` Hajda, Andrzej 0 siblings, 0 replies; 11+ messages in thread From: Hajda, Andrzej @ 2024-11-25 15:44 UTC (permalink / raw) To: igt-dev, I915-ci-infra W dniu 25.11.2024 o 16:21, Patchwork pisze: > Project List - Patchwork *Patch Details* > *Series:* lib/gpgpu_shader: simplify load/store shaders and add Xe3 > support (rev3) > *URL:* https://patchwork.freedesktop.org/series/141668/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/index.html > > > CI Bug Log - changes from XEIGT_8124_BAT -> XEIGTPW_12190_BAT > > > Summary > > *FAILURE* > > Serious unknown changes coming with XEIGTPW_12190_BAT absolutely need > to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12190_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 (9 -> 9) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > XEIGTPW_12190_BAT: > > > IGT changes > > > Possible regressions > > * igt@xe_module_load@load: > o bat-dg2-oem2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_module_load@load.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_module_load@load.html> > Not related. Regards Andrzej > * > > > Known issues > > Here are the changes found in XEIGTPW_12190_BAT that come from known > issues: > > > IGT changes > > > Issues hit > > * > > igt@core_hotunplug@unbind-rebind: > > o bat-dg2-oem2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html> > (Intel XE#1885 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>) > * > > igt@fbdev@nullptr: > > o bat-dg2-oem2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@fbdev@nullptr.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@fbdev@nullptr.html> > (Intel XE#2134 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>) +4 > other tests skip > * > > igt@kms_addfb_basic@bad-pitch-128: > > o bat-dg2-oem2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_addfb_basic@bad-pitch-128.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_addfb_basic@bad-pitch-128.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > +50 other tests skip > * > > igt@kms_frontbuffer_tracking@basic: > > o bat-dg2-oem2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) > * > > igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: > > o bat-dg2-oem2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> > (Intel XE#2229 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +2 > other tests skip > * > > igt@xe_prime_self_import@basic-with_fd_dup: > > o bat-dg2-oem2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_fd_dup.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_fd_dup.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > +157 other tests skip > > > Warnings > > * > > igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> > (Intel XE#623 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/623>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_dsc@dsc-basic: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) > * > > igt@kms_force_connector_basic@prune-stale-modes: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html> > (i915#5274 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_psr@psr-cursor-plane-move: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html> > (Intel XE#2850 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / > Intel XE#929 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +2 > other tests skip > * > > igt@sriov_basic@enable-vfs-autoprobe-off: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/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>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > +1 other test skip > * > > igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html> > (Intel XE#288 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > +32 other tests skip > * > > igt@xe_huc_copy@huc_copy: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html> > (Intel XE#255 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/255>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > * > > igt@xe_pat@pat-index-xe2: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html> > (Intel XE#977 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/977>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > * > > igt@xe_pat@pat-index-xehpc: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html> > (Intel XE#2838 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838> / > Intel XE#979 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > * > > igt@xe_pat@pat-index-xelpg: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_pat@pat-index-xelpg.html> > (Intel XE#979 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_pat@pat-index-xelpg.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > * > > igt@xe_sriov_flr@flr-vf1-clear: > > o bat-dg2-oem2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/bat-dg2-oem2/igt@xe_sriov_flr@flr-vf1-clear.html> > (Intel XE#3342 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/bat-dg2-oem2/igt@xe_sriov_flr@flr-vf1-clear.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > > > Build changes > > * IGT: IGT_8124 -> IGTPW_12190 > * Linux: xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7 -> > xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9 > > IGTPW_12190: 12190 > IGT_8124: 8124 > xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: > 4d723d57180a3aafc1a510bc08ef42f4b03671a7 > xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9: > b21f1413ea1860e80fd278112e820e6dadfc9df9 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) 2024-11-25 14:32 [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda ` (4 preceding siblings ...) 2024-11-25 15:21 ` ✗ Xe.CI.BAT: failure for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) Patchwork @ 2024-11-25 15:38 ` Patchwork 2024-11-25 16:47 ` ✗ Xe.CI.Full: failure " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-11-25 15:38 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev == Series Details == Series: lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) URL : https://patchwork.freedesktop.org/series/141668/ State : success == Summary == CI Bug Log - changes from IGT_8124 -> IGTPW_12190 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/index.html Participating hosts (44 -> 44) ------------------------------ Additional (1): fi-glk-j4005 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12190 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-glk-j4005: NOTRUN -> [SKIP][1] ([i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-glk-j4005: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][3] -> [ABORT][4] ([i915#12061]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-mtlp-8/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/bat-mtlp-8/igt@i915_selftest@live.html * igt@kms_psr@psr-primary-page-flip: - fi-glk-j4005: NOTRUN -> [SKIP][5] +10 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-dg2-8: [ABORT][6] ([i915#13025]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [FAIL][8] ([i915#12903]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/bat-dg1-7/igt@i915_pm_rpm@module-reload.html - bat-rpls-4: [FAIL][10] ([i915#12903]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@kms_flip@basic-flip-vs-dpms@a-dp1: - bat-apl-1: [DMESG-WARN][12] ([i915#12921]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html * igt@kms_pipe_crc_basic@read-crc: - bat-dg2-11: [SKIP][14] ([i915#9197]) -> [PASS][15] +1 other test pass [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc.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#12601]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12601 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12921]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12921 [i915#13025]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13025 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8124 -> IGTPW_12190 * Linux: CI_DRM_15737 -> CI_DRM_15738 CI-20190529: 20190529 CI_DRM_15737: 4d723d57180a3aafc1a510bc08ef42f4b03671a7 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15738: b21f1413ea1860e80fd278112e820e6dadfc9df9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12190: 12190 IGT_8124: 8124 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) 2024-11-25 14:32 [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda ` (5 preceding siblings ...) 2024-11-25 15:38 ` ✓ i915.CI.BAT: success " Patchwork @ 2024-11-25 16:47 ` Patchwork 2024-11-25 16:58 ` ✗ i915.CI.Full: " Patchwork 2024-11-25 17:13 ` [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Hajda, Andrzej 8 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-11-25 16:47 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 137313 bytes --] == Series Details == Series: lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) URL : https://patchwork.freedesktop.org/series/141668/ State : failure == Summary == CI Bug Log - changes from XEIGT_8124_full -> XEIGTPW_12190_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12190_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12190_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_12190_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@2x-dpms-vs-vblank-race@bc-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_flip@2x-dpms-vs-vblank-race@bc-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-panning-interruptible@c-dp2: - shard-bmg: NOTRUN -> [DMESG-WARN][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_flip@flip-vs-panning-interruptible@c-dp2.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a6.html * igt@kms_invalid_mode@zero-hdisplay: - shard-bmg: [PASS][4] -> [DMESG-WARN][5] +1 other test dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_invalid_mode@zero-hdisplay.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_invalid_mode@zero-hdisplay.html * igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [ABORT][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-6.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-lnl: [PASS][7] -> [ABORT][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-6/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-1/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html #### Warnings #### * igt@kms_content_protection@lic-type-1: - shard-bmg: [SKIP][9] ([Intel XE#2341]) -> [INCOMPLETE][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_content_protection@lic-type-1.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_content_protection@lic-type-1.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][11] ([Intel XE#2316]) -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc: - shard-dg2-set2: [SKIP][13] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][14] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-dg2-set2: [SKIP][15] ([Intel XE#1130]) -> [ABORT][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_module_load@many-reload: - shard-bmg: [DMESG-WARN][17] ([Intel XE#3467]) -> [DMESG-WARN][18] [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@xe_module_load@many-reload.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@xe_module_load@many-reload.html Known issues ------------ Here are the changes found in XEIGTPW_12190_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getclient: - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2423]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@core_getclient.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@core_getclient.html * igt@core_getversion@all-cards: - shard-dg2-set2: [PASS][21] -> [FAIL][22] ([Intel XE#3440]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@core_getversion@all-cards.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@core_getversion@all-cards.html * igt@core_hotunplug@hotreplug: - shard-dg2-set2: [PASS][23] -> [SKIP][24] ([Intel XE#1885]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@core_hotunplug@hotreplug.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1885]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@core_hotunplug@hotunbind-rebind.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#3453]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html * igt@fbdev@nullptr: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2134]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@fbdev@nullptr.html * igt@fbdev@write: - shard-dg2-set2: [PASS][28] -> [SKIP][29] ([Intel XE#2134]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@fbdev@write.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@fbdev@write.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2550]) +23 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html * igt@kms_atomic@plane-invalid-params-fence: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2423] / [i915#2575]) +59 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_atomic@plane-invalid-params-fence.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-bmg: [PASS][32] -> [INCOMPLETE][33] ([Intel XE#1727] / [Intel XE#2613]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_atomic_transition@modeset-transition-nonblocking.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs: - shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#1701]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html - shard-bmg: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1727]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: [PASS][38] -> [DMESG-FAIL][39] ([Intel XE#3468]) +19 other tests dmesg-fail [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#316]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2327]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1124]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1124]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#367]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2887]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][46] ([Intel XE#1727] / [Intel XE#3468]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#3432]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#787]) +110 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#616]) +7 other tests fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#455] / [Intel XE#787]) +18 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#314]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#306]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2252]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#373]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_color@ctm-0-75@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [DMESG-WARN][56] ([Intel XE#877]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_color@ctm-0-75@pipe-d-hdmi-a-3.html * igt@kms_content_protection@atomic@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][57] ([Intel XE#1178]) +2 other tests fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_content_protection@atomic@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#308]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2320]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2286]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#3468] / [Intel XE#877]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg2-set2: [PASS][63] -> [SKIP][64] ([Intel XE#309]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2323]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-3/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#3070]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_dp_linktrain_fallback@dp-fallback.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-blt@rgb565-4tiled: - shard-bmg: [PASS][68] -> [DMESG-FAIL][69] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html * igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled: - shard-bmg: [PASS][70] -> [DMESG-FAIL][71] ([Intel XE#2705]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2244]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [PASS][73] -> [DMESG-WARN][74] ([Intel XE#1727] / [Intel XE#2955] / [Intel XE#3468]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#2316]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-dg2-set2: [PASS][77] -> [SKIP][78] ([Intel XE#310]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_flip@2x-plain-flip-ts-check.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3: - shard-bmg: [PASS][79] -> [DMESG-WARN][80] ([Intel XE#3468]) +113 other tests dmesg-warn [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][81] ([Intel XE#3486]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][82] ([Intel XE#301] / [Intel XE#3486]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][83] ([Intel XE#301]) +5 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html * igt@kms_flip@flip-vs-panning-interruptible@d-dp2: - shard-bmg: NOTRUN -> [DMESG-WARN][84] ([Intel XE#3468]) +18 other tests dmesg-warn [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_flip@flip-vs-panning-interruptible@d-dp2.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][85] ([Intel XE#2049]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [PASS][86] -> [FAIL][87] ([Intel XE#886]) +6 other tests fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode: - shard-bmg: [PASS][88] -> [DMESG-FAIL][89] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#455]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2136]) +47 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2136] / [Intel XE#2351]) +17 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [PASS][93] -> [SKIP][94] ([Intel XE#2136]) +14 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [DMESG-FAIL][95] ([Intel XE#3468]) +3 other tests dmesg-fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [PASS][96] -> [SKIP][97] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#656]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#656]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [FAIL][101] ([Intel XE#2333]) +1 other test fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2311]) +8 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#651]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2312]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2313]) +10 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#653]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#346]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_lease@page-flip-implicit-plane@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][108] ([Intel XE#1727]) +3 other tests incomplete [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_lease@page-flip-implicit-plane@pipe-a-hdmi-a-6.html * igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256: - shard-bmg: [PASS][109] -> [DMESG-WARN][110] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#361]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2763] / [Intel XE#455]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a: - shard-bmg: NOTRUN -> [DMESG-WARN][114] ([Intel XE#2705] / [Intel XE#3468]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2-set2: [PASS][115] -> [SKIP][116] ([Intel XE#2423] / [i915#2575]) +50 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2763]) +9 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][118] -> [FAIL][119] ([Intel XE#1430]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@cursor: - shard-bmg: [PASS][120] -> [INCOMPLETE][121] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests incomplete [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_pm_rpm@cursor.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#2446]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2446]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html - shard-bmg: [PASS][125] -> [INCOMPLETE][126] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_pm_rpm@modeset-stress-extra-wait.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1489]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1489]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-no-drrs: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-lnl: [PASS][130] -> [FAIL][131] ([Intel XE#3490]) +1 other test fail [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-blt.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2414]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#3414]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1435]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][136] -> [FAIL][137] ([Intel XE#2159]) +1 other test fail [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@max-min@pipe-a-edp-1: - shard-lnl: [PASS][138] -> [FAIL][139] ([Intel XE#1522]) +1 other test fail [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-3/igt@kms_vrr@max-min@pipe-a-edp-1.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-5/igt@kms_vrr@max-min@pipe-a-edp-1.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1123]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1126]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_eudebug@basic-vm-access-userptr: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@xe_eudebug@basic-vm-access-userptr.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][144] -> [TIMEOUT][145] ([Intel XE#1473]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-bmg: [PASS][146] -> [FAIL][147] ([Intel XE#2364]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@xe_evict@evict-large-multi-vm-cm.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen: - shard-dg2-set2: [PASS][148] -> [SKIP][149] ([Intel XE#1130]) +92 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2322]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt@xe_exec_compute_mode@twice-userptr-free: - shard-bmg: NOTRUN -> [DMESG-WARN][151] ([Intel XE#1727]) +1 other test dmesg-warn [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@xe_exec_compute_mode@twice-userptr-free.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#288]) +5 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_threads@threads-hang-rebind-err: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1130]) +76 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_exec_threads@threads-hang-rebind-err.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-bmg: [PASS][154] -> [DMESG-WARN][155] ([Intel XE#3343] / [Intel XE#3468]) +1 other test dmesg-warn [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: NOTRUN -> [DMESG-WARN][156] ([Intel XE#3467] / [Intel XE#3468]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-dg2-set2: [PASS][157] -> [SKIP][158] ([Intel XE#2229]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][159] ([Intel XE#1999]) +2 other tests fail [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@many-reload: - shard-dg2-set2: NOTRUN -> [FAIL][160] ([Intel XE#3546]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_module_load@many-reload.html * igt@xe_oa@mi-rpc: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#3573]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@xe_oa@mi-rpc.html * igt@xe_oa@non-zero-reason@ccs-0: - shard-bmg: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#1727]) +8 other tests dmesg-warn [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@xe_oa@non-zero-reason@ccs-0.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@xe_oa@non-zero-reason@ccs-0.html * igt@xe_peer2peer@read: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#1061]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@xe_peer2peer@read.html - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2427]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@xe_peer2peer@read.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#1727] / [Intel XE#3468]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-userptr.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-basic: - shard-bmg: [PASS][168] -> [DMESG-WARN][169] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@xe_pm@s3-basic.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@xe_pm@s3-basic.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-bmg: NOTRUN -> [DMESG-WARN][170] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s4-exec-after: - shard-bmg: [PASS][171] -> [DMESG-WARN][172] ([Intel XE#1727] / [Intel XE#3468]) +7 other tests dmesg-warn [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@xe_pm@s4-exec-after.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-3/igt@xe_pm@s4-exec-after.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#944]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#944]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_render_copy@render-square@render-tile64-256x256: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][175] ([Intel XE#1727]) +2 other tests dmesg-warn [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@xe_render_copy@render-square@render-tile64-256x256.html #### Possible fixes #### * igt@core_getstats: - shard-dg2-set2: [SKIP][176] ([Intel XE#2423]) -> [PASS][177] +2 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@core_getstats.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@core_getstats.html * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [SKIP][178] ([Intel XE#1885]) -> [PASS][179] +2 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html * igt@core_hotunplug@unplug-rescan: - shard-bmg: [DMESG-WARN][180] ([Intel XE#3468]) -> [PASS][181] +115 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@core_hotunplug@unplug-rescan.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@core_hotunplug@unplug-rescan.html * igt@fbdev@info: - shard-dg2-set2: [SKIP][182] ([Intel XE#2134]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@fbdev@info.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@fbdev@info.html * igt@kms_addfb_basic@addfb25-yf-tiled-legacy: - shard-bmg: [SKIP][184] ([Intel XE#2461]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html * igt@kms_async_flips@crc: - shard-bmg: [DMESG-FAIL][186] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][187] +2 other tests pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_async_flips@crc.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-bmg: [FAIL][188] ([Intel XE#3557]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@test-time-stamp: - shard-dg2-set2: [INCOMPLETE][190] ([Intel XE#1727]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_async_flips@test-time-stamp.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_async_flips@test-time-stamp.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-dg2-set2: [SKIP][192] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][193] +7 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-180.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-bmg: [SKIP][194] ([Intel XE#829]) -> [PASS][195] +2 other tests pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][196] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_color@ctm-0-50: - shard-bmg: [SKIP][198] ([Intel XE#3189]) -> [PASS][199] +8 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_color@ctm-0-50.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@kms_color@ctm-0-50.html * igt@kms_color@ctm-0-75@pipe-a-dp-2: - shard-bmg: [INCOMPLETE][200] ([Intel XE#1727]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_color@ctm-0-75@pipe-a-dp-2.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_color@ctm-0-75@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-sliding-64x64: - shard-dg2-set2: [SKIP][202] ([Intel XE#2423] / [i915#2575]) -> [PASS][203] +85 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-64x64.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][204] ([Intel XE#2291]) -> [PASS][205] +4 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][206] ([Intel XE#2425]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3: - shard-bmg: [FAIL][208] ([Intel XE#3486]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][210] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [FAIL][212] ([Intel XE#3321] / [Intel XE#3487]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [FAIL][214] ([Intel XE#2882]) -> [PASS][215] +1 other test pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][216] ([Intel XE#2316]) -> [PASS][217] +4 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-bmg: [DMESG-WARN][218] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][219] +7 other tests pass [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2-set2: [SKIP][220] ([Intel XE#2136]) -> [PASS][221] +27 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_getfb@getfb2-handle-zero: - shard-bmg: [SKIP][222] -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_getfb@getfb2-handle-zero.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@kms_getfb@getfb2-handle-zero.html * igt@kms_hdr@bpc-switch-suspend: - shard-bmg: [DMESG-FAIL][224] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_hdr@bpc-switch-suspend.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][226] ([Intel XE#3012]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane@pixel-format-source-clamping: - shard-bmg: [INCOMPLETE][228] ([Intel XE#2566] / [Intel XE#3468]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_plane@pixel-format-source-clamping.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [INCOMPLETE][230] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][231] +2 other tests pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-bmg: [DMESG-FAIL][232] ([Intel XE#3468]) -> [PASS][233] +24 other tests pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_cursor@primary@pipe-c-dp-2-size-128: - shard-bmg: [INCOMPLETE][234] -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_plane_cursor@primary@pipe-c-dp-2-size-128.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_plane_cursor@primary@pipe-c-dp-2-size-128.html * igt@kms_plane_cursor@viewport: - shard-bmg: [FAIL][236] -> [PASS][237] +1 other test pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_plane_cursor@viewport.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_plane_cursor@viewport.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][238] ([Intel XE#718]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@legacy-planes@plane-41: - shard-lnl: [DMESG-WARN][240] ([Intel XE#3184]) -> [PASS][241] +1 other test pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-8/igt@kms_pm_rpm@legacy-planes@plane-41.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-1/igt@kms_pm_rpm@legacy-planes@plane-41.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: [SKIP][242] ([Intel XE#2446]) -> [PASS][243] +3 other tests pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@universal-planes: - shard-bmg: [INCOMPLETE][244] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_pm_rpm@universal-planes.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_pm_rpm@universal-planes.html * igt@kms_psr@psr-cursor-plane-move: - shard-lnl: [FAIL][246] ([Intel XE#2808]) -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-4/igt@kms_psr@psr-cursor-plane-move.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-4/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][248] ([Intel XE#1435]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][250] ([Intel XE#899]) -> [PASS][251] +1 other test pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@xe_exec_basic@multigpu-no-exec-basic: - shard-dg2-set2: [SKIP][252] ([Intel XE#1130]) -> [PASS][253] +149 other tests pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-basic.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-basic.html * igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch: - shard-bmg: [DMESG-WARN][254] ([Intel XE#1727]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch.html * igt@xe_exec_reset@close-execqueues-close-fd: - shard-bmg: [DMESG-WARN][256] -> [PASS][257] +1 other test pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_exec_reset@close-execqueues-close-fd.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@xe_exec_reset@close-execqueues-close-fd.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-bmg: [DMESG-WARN][258] ([Intel XE#3467]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-dg2-set2: [DMESG-WARN][260] ([Intel XE#3467]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][262] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-dg2-set2: [TIMEOUT][264] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][265] +1 other test pass [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][266] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][267] +1 other test pass [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-unbind-all.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [DMESG-WARN][268] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: [DMESG-WARN][270] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-vm-bind-userptr: - shard-bmg: [DMESG-WARN][272] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][274] ([Intel XE#958]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt@kms_addfb_basic@legacy-format: - shard-dg2-set2: [DMESG-WARN][276] -> [SKIP][277] ([Intel XE#2423] / [i915#2575]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_addfb_basic@legacy-format.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_addfb_basic@legacy-format.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][278] ([Intel XE#2423] / [i915#2575]) -> [SKIP][279] ([Intel XE#873]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_async_flips@invalid-async-flip.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][280] ([Intel XE#829]) -> [SKIP][281] ([Intel XE#2327]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][282] ([Intel XE#316]) -> [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: [SKIP][284] ([Intel XE#2136]) -> [SKIP][285] ([Intel XE#316]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-270.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][286] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][287] ([Intel XE#316]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-addfb-size-overflow: - shard-dg2-set2: [DMESG-WARN][288] ([Intel XE#1727]) -> [SKIP][289] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_big_fb@x-tiled-addfb-size-overflow.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_big_fb@x-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][290] ([Intel XE#829]) -> [SKIP][291] ([Intel XE#1124]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][292] ([Intel XE#1124]) -> [SKIP][293] ([Intel XE#2136]) +3 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][294] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][295] ([Intel XE#1124]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [SKIP][296] ([Intel XE#1124]) -> [SKIP][297] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][298] ([Intel XE#2136]) -> [SKIP][299] ([Intel XE#1124]) +4 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][300] ([Intel XE#367]) -> [SKIP][301] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][302] ([Intel XE#2423] / [i915#2575]) -> [SKIP][303] ([Intel XE#2191]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][304] ([Intel XE#2191]) -> [SKIP][305] ([Intel XE#2423] / [i915#2575]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][306] ([Intel XE#2423] / [i915#2575]) -> [SKIP][307] ([Intel XE#367]) +3 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][308] ([Intel XE#787]) -> [SKIP][309] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][310] ([Intel XE#2136]) -> [SKIP][311] ([Intel XE#2907]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][312] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][314] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][315] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-bmg: [SKIP][316] -> [SKIP][317] ([Intel XE#2887]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-dg2-set2: [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][320] ([Intel XE#2136]) -> [FAIL][321] ([Intel XE#616]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][322] -> [SKIP][323] ([Intel XE#2652] / [Intel XE#787]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][324] ([Intel XE#2907]) -> [SKIP][325] ([Intel XE#2136]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][326] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][327] ([Intel XE#2136]) +3 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: [SKIP][328] ([Intel XE#2423] / [i915#2575]) -> [SKIP][329] ([Intel XE#306]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_chamelium_color@ctm-green-to-red.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][330] ([Intel XE#306]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_chamelium_color@gamma.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: [SKIP][332] ([Intel XE#3189]) -> [SKIP][333] ([Intel XE#2252]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-dg2-set2: [SKIP][334] ([Intel XE#373]) -> [SKIP][335] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: [SKIP][336] ([Intel XE#2423] / [i915#2575]) -> [SKIP][337] ([Intel XE#373]) +10 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_color@ctm-0-75: - shard-bmg: [INCOMPLETE][338] ([Intel XE#1727]) -> [DMESG-WARN][339] ([Intel XE#877]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_color@ctm-0-75.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_color@ctm-0-75.html * igt@kms_content_protection@atomic: - shard-bmg: [SKIP][340] ([Intel XE#2341]) -> [FAIL][341] ([Intel XE#1178]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_content_protection@atomic.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][342] ([Intel XE#1178]) -> [SKIP][343] ([Intel XE#2423] / [i915#2575]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: [INCOMPLETE][344] ([Intel XE#2715] / [Intel XE#3468]) -> [FAIL][345] ([Intel XE#1178]) +1 other test fail [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][346] ([Intel XE#3189]) -> [DMESG-FAIL][347] ([Intel XE#3468]) +2 other tests dmesg-fail [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_content_protection@uevent.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: [SKIP][348] ([Intel XE#2423] / [i915#2575]) -> [SKIP][349] ([Intel XE#308]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-256x256: - shard-dg2-set2: [SKIP][350] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][351] ([Intel XE#1727] / [Intel XE#3416]) +1 other test incomplete [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_cursor_crc@cursor-random-256x256.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_cursor_crc@cursor-random-256x256.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][352] ([Intel XE#455]) -> [SKIP][353] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_cursor_crc@cursor-random-max-size.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-bmg: [SKIP][354] ([Intel XE#3189]) -> [SKIP][355] ([Intel XE#2320]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2-set2: [SKIP][356] ([Intel XE#308]) -> [SKIP][357] ([Intel XE#2423] / [i915#2575]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x512.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-bmg: [INCOMPLETE][358] ([Intel XE#1727] / [Intel XE#3226]) -> [SKIP][359] ([Intel XE#2291]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: [SKIP][360] ([Intel XE#2423] / [i915#2575]) -> [SKIP][361] ([Intel XE#323]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][362] ([Intel XE#2291]) -> [DMESG-WARN][363] ([Intel XE#877]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2-set2: [SKIP][364] ([Intel XE#2136]) -> [SKIP][365] ([Intel XE#455]) +3 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: [SKIP][366] ([Intel XE#2423] / [i915#2575]) -> [SKIP][367] ([Intel XE#307]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2-set2: [SKIP][368] ([Intel XE#455]) -> [SKIP][369] ([Intel XE#2136]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_dsc@dsc-with-bpc.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2-set2: [SKIP][370] ([Intel XE#2423] / [i915#2575]) -> [SKIP][371] ([Intel XE#310]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@basic-flip-vs-dpms: - shard-dg2-set2: [DMESG-WARN][372] ([Intel XE#1727]) -> [SKIP][373] ([Intel XE#2423] / [i915#2575]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_flip@basic-flip-vs-dpms.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [FAIL][374] ([Intel XE#301]) -> [SKIP][375] ([Intel XE#2423] / [i915#2575]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [DMESG-FAIL][376] ([Intel XE#3468]) -> [FAIL][377] ([Intel XE#2882]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html - shard-dg2-set2: [SKIP][378] ([Intel XE#2423] / [i915#2575]) -> [FAIL][379] ([Intel XE#301]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-modeset-vs-hang: - shard-dg2-set2: [SKIP][380] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][381] ([Intel XE#1727]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_flip@flip-vs-modeset-vs-hang.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_flip@flip-vs-modeset-vs-hang.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-bmg: [DMESG-WARN][382] ([Intel XE#3468]) -> [DMESG-WARN][383] ([Intel XE#2705] / [Intel XE#3468]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip@flip-vs-panning-interruptible.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-7/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [SKIP][384] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][385] ([Intel XE#2049] / [Intel XE#2597]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_flip@flip-vs-suspend.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [DMESG-FAIL][386] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][387] ([Intel XE#2423] / [i915#2575]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-dg2-set2: [SKIP][388] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][389] ([Intel XE#2049]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_flip@plain-flip-ts-check-interruptible.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [INCOMPLETE][390] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][391] ([Intel XE#2136]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2-set2: [SKIP][392] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][393] ([Intel XE#455]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][394] ([Intel XE#455]) -> [SKIP][395] ([Intel XE#2136] / [Intel XE#2351]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][396] ([Intel XE#2423] / [i915#2575]) -> [SKIP][397] ([i915#5274]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][398] ([Intel XE#651]) -> [SKIP][399] ([Intel XE#2136]) +16 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][400] ([Intel XE#3189]) -> [SKIP][401] ([Intel XE#2311]) +4 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][402] ([Intel XE#2136]) -> [SKIP][403] ([Intel XE#651]) +18 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][404] ([Intel XE#2136]) -> [INCOMPLETE][405] ([Intel XE#1727]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: [FAIL][406] ([Intel XE#2333]) -> [DMESG-FAIL][407] ([Intel XE#3468]) +6 other tests dmesg-fail [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][408] ([Intel XE#2312]) -> [DMESG-FAIL][409] ([Intel XE#3468]) +2 other tests dmesg-fail [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][410] ([Intel XE#2333]) -> [SKIP][411] ([Intel XE#2312]) +3 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][412] ([Intel XE#2312]) -> [FAIL][413] ([Intel XE#2333]) +4 other tests fail [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [DMESG-FAIL][414] ([Intel XE#3468]) -> [FAIL][415] ([Intel XE#2333]) +12 other tests fail [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [INCOMPLETE][416] -> [FAIL][417] ([Intel XE#2333]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][418] ([Intel XE#658]) -> [SKIP][419] ([Intel XE#2136] / [Intel XE#2351]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][420] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][421] ([Intel XE#656]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][422] ([Intel XE#2312]) -> [SKIP][423] ([Intel XE#2311]) +12 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][424] ([Intel XE#2311]) -> [SKIP][425] ([Intel XE#2312]) +9 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][426] ([Intel XE#651]) -> [SKIP][427] ([Intel XE#656]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][428] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][429] ([Intel XE#651]) +10 other tests skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][430] ([Intel XE#651]) -> [SKIP][431] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][432] ([Intel XE#653]) -> [SKIP][433] ([Intel XE#2136]) +17 other tests skip [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][434] ([Intel XE#2313]) -> [SKIP][435] ([Intel XE#2312]) +5 other tests skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][436] ([Intel XE#2312]) -> [SKIP][437] ([Intel XE#2313]) +14 other tests skip [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][438] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][439] ([Intel XE#653]) +6 other tests skip [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][440] ([Intel XE#3189]) -> [SKIP][441] ([Intel XE#2313]) +2 other tests skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][442] ([Intel XE#3189]) -> [SKIP][443] ([Intel XE#2312]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][444] ([Intel XE#2136]) -> [SKIP][445] ([Intel XE#656]) +6 other tests skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][446] ([Intel XE#2136]) -> [SKIP][447] ([Intel XE#653]) +20 other tests skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][448] ([Intel XE#653]) -> [SKIP][449] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][450] ([Intel XE#653]) -> [SKIP][451] ([Intel XE#656]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][452] -> [SKIP][453] ([Intel XE#2502]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: [SKIP][454] ([Intel XE#2423] / [i915#2575]) -> [SKIP][455] ([Intel XE#605]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][456] ([Intel XE#2136]) -> [SKIP][457] ([Intel XE#346]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html * igt@kms_lease@implicit-plane-lease: - shard-bmg: [SKIP][458] ([Intel XE#3189]) -> [DMESG-WARN][459] ([Intel XE#1727]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_lease@implicit-plane-lease.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-3/igt@kms_lease@implicit-plane-lease.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][460] ([Intel XE#2423] / [i915#2575]) -> [SKIP][461] ([Intel XE#356]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_cursor@primary: - shard-bmg: [INCOMPLETE][462] -> [DMESG-FAIL][463] ([Intel XE#3468]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_plane_cursor@primary.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_plane_cursor@primary.html - shard-dg2-set2: [INCOMPLETE][464] -> [SKIP][465] ([Intel XE#2423] / [i915#2575]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_plane_cursor@primary.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_plane_cursor@primary.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: [SKIP][466] ([Intel XE#2423] / [i915#2575]) -> [SKIP][467] ([Intel XE#455]) +8 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [SKIP][468] ([Intel XE#2423] / [i915#2575]) -> [FAIL][469] ([Intel XE#361]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-set2: [SKIP][470] ([Intel XE#2423] / [i915#2575]) -> [SKIP][471] ([Intel XE#2763] / [Intel XE#455]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-bmg: [SKIP][472] ([Intel XE#3189]) -> [DMESG-WARN][473] ([Intel XE#3468]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][474] ([Intel XE#2136]) -> [SKIP][475] ([Intel XE#870]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][476] ([Intel XE#870]) -> [SKIP][477] ([Intel XE#2136]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_pm_backlight@fade-with-suspend.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][478] ([Intel XE#3309]) -> [SKIP][479] ([Intel XE#2136]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-set2: [DMESG-WARN][480] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][481] ([Intel XE#2446]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_pm_rpm@cursor-dpms.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][482] ([Intel XE#3189]) -> [SKIP][483] ([Intel XE#1489]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][484] ([Intel XE#1489]) -> [SKIP][485] ([Intel XE#2136]) +5 other tests skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][486] ([Intel XE#2136]) -> [SKIP][487] ([Intel XE#1489]) +7 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][488] ([Intel XE#2136]) -> [SKIP][489] ([Intel XE#1122]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_psr2_su@page_flip-xrgb8888.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][490] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][491] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_psr@fbc-pr-sprite-plane-onoff.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][492] ([Intel XE#2136]) -> [SKIP][493] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][494] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][495] ([Intel XE#2136]) +9 other tests skip [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@psr-basic: - shard-bmg: [SKIP][496] ([Intel XE#3189]) -> [SKIP][497] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_psr@psr-basic.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-6/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][498] ([Intel XE#2351]) -> [SKIP][499] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_psr@psr-cursor-plane-move.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][500] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][501] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_psr@psr-dpms.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_psr@psr-dpms.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: [SKIP][502] ([Intel XE#3414]) -> [SKIP][503] ([Intel XE#2423] / [i915#2575]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_rotation_crc@bad-pixel-format.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][504] ([Intel XE#1127]) -> [SKIP][505] ([Intel XE#2423] / [i915#2575]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][506] ([Intel XE#2423] / [i915#2575]) -> [SKIP][507] ([Intel XE#3414]) +3 other tests skip [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][508] ([Intel XE#2423] / [i915#2575]) -> [SKIP][509] ([Intel XE#1127]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [SKIP][510] ([Intel XE#2423] / [i915#2575]) -> [ABORT][511] ([Intel XE#1034] / [Intel XE#2625]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_vblank@ts-continuation-suspend.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][512] ([Intel XE#3189]) -> [SKIP][513] ([Intel XE#1499]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-drrs.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: [SKIP][514] ([Intel XE#756]) -> [SKIP][515] ([Intel XE#2423] / [i915#2575]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_writeback@writeback-check-output-xrgb2101010.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][516] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][517] ([Intel XE#2423] / [i915#2575]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][518] ([Intel XE#1130]) -> [SKIP][519] ([Intel XE#1123]) +1 other test skip [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][520] ([Intel XE#1130]) -> [SKIP][521] ([Intel XE#1126]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug@basic-vm-bind: - shard-dg2-set2: [SKIP][522] ([Intel XE#1130]) -> [SKIP][523] ([Intel XE#2905]) +10 other tests skip [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_eudebug@basic-vm-bind.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@xe_eudebug@basic-vm-bind.html * igt@xe_eudebug_online@interrupt-all: - shard-dg2-set2: [SKIP][524] ([Intel XE#2905]) -> [SKIP][525] ([Intel XE#1130]) +4 other tests skip [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_eudebug_online@interrupt-all.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_eudebug_online@interrupt-all.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][526] ([Intel XE#1473]) -> [SKIP][527] ([Intel XE#1130]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [SKIP][528] ([Intel XE#1130]) -> [FAIL][529] ([Intel XE#1600]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate: - shard-dg2-set2: [SKIP][530] ([Intel XE#1130]) -> [DMESG-WARN][531] ([Intel XE#1727]) [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: [SKIP][532] ([Intel XE#288]) -> [SKIP][533] ([Intel XE#1130]) +16 other tests skip [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_exec_fault_mode@twice-invalid-fault.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][534] ([Intel XE#1130]) -> [SKIP][535] ([Intel XE#288]) +26 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][536] ([Intel XE#2360]) -> [SKIP][537] ([Intel XE#1130]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: [SKIP][538] ([Intel XE#1130]) -> [SKIP][539] ([Intel XE#2360]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_exec_reset@cm-gt-reset: - shard-dg2-set2: [INCOMPLETE][540] -> [SKIP][541] ([Intel XE#1130]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_exec_reset@cm-gt-reset.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@xe_exec_reset@cm-gt-reset.html * igt@xe_exec_threads@threads-hang-fd-userptr: - shard-dg2-set2: [DMESG-WARN][542] ([Intel XE#1727] / [Intel XE#358]) -> [SKIP][543] ([Intel XE#1130]) [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_exec_threads@threads-hang-fd-userptr.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-userptr.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-bmg: [DMESG-WARN][544] ([Intel XE#3467]) -> [DMESG-WARN][545] ([Intel XE#3467] / [Intel XE#3468]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/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_wopcm_init: - shard-bmg: [DMESG-WARN][546] ([Intel XE#3343]) -> [DMESG-WARN][547] ([Intel XE#3343] / [Intel XE#3468]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-bmg: [DMESG-FAIL][548] ([Intel XE#3467] / [Intel XE#3468]) -> [FAIL][549] ([Intel XE#3499]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-dg2-set2: [SKIP][550] ([Intel XE#1130]) -> [DMESG-WARN][551] ([Intel XE#3467]) +2 other tests dmesg-warn [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-dg2-set2: [DMESG-WARN][552] ([Intel XE#3467]) -> [SKIP][553] ([Intel XE#1130]) +2 other tests skip [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_gt_freq@freq_suspend: - shard-dg2-set2: [SKIP][554] ([Intel XE#1130]) -> [ABORT][555] ([Intel XE#2625]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_gt_freq@freq_suspend.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html * igt@xe_live_ktest@xe_bo: - shard-bmg: [INCOMPLETE][556] ([Intel XE#2998]) -> [SKIP][557] ([Intel XE#1192]) [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@xe_live_ktest@xe_bo.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-1/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: [SKIP][558] ([Intel XE#2833]) -> [SKIP][559] ([Intel XE#1192] / [Intel XE#3026]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-7/igt@xe_live_ktest@xe_eudebug.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-lnl-3/igt@xe_live_ktest@xe_eudebug.html * igt@xe_module_load@reload: - shard-bmg: [DMESG-WARN][560] ([Intel XE#3468]) -> [DMESG-WARN][561] ([Intel XE#3467]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@xe_module_load@reload.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-8/igt@xe_module_load@reload.html * igt@xe_module_load@reload-no-display: - shard-bmg: [DMESG-FAIL][562] ([Intel XE#3467]) -> [DMESG-WARN][563] ([Intel XE#3467]) [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@xe_module_load@reload-no-display.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-bmg-4/igt@xe_module_load@reload-no-display.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][564] ([Intel XE#3573]) -> [SKIP][565] ([Intel XE#1130]) +4 other tests skip [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_oa@invalid-oa-metric-set-id: - shard-dg2-set2: [SKIP][566] ([Intel XE#1130]) -> [SKIP][567] ([Intel XE#3573]) +7 other tests skip [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_oa@invalid-oa-metric-set-id.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_oa@invalid-oa-metric-set-id.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][568] ([Intel XE#979]) -> [SKIP][569] ([Intel XE#1130]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-mmap-system: - shard-dg2-set2: [SKIP][570] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][571] ([Intel XE#1130]) +1 other test skip [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-multiple-execs: - shard-dg2-set2: [SKIP][572] ([Intel XE#1130]) -> [SKIP][573] ([Intel XE#2284] / [Intel XE#366]) [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s2idle-basic-exec: - shard-dg2-set2: [DMESG-WARN][574] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][575] ([Intel XE#1130]) [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@s2idle-basic-exec.html [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s3-basic: - shard-dg2-set2: [SKIP][576] ([Intel XE#1130]) -> [DMESG-WARN][577] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_pm@s3-basic.html [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-463/igt@xe_pm@s3-basic.html * igt@xe_pm@s3-exec-after: - shard-dg2-set2: [DMESG-WARN][578] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][579] ([Intel XE#1130]) [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@s3-exec-after.html [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_pm@s3-exec-after.html * igt@xe_query@multigpu-query-gt-list: - shard-dg2-set2: [SKIP][580] ([Intel XE#944]) -> [SKIP][581] ([Intel XE#1130]) +1 other test skip [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_query@multigpu-query-gt-list.html [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_query@multigpu-query-gt-list.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: [SKIP][582] ([Intel XE#1130]) -> [SKIP][583] ([Intel XE#944]) +1 other test skip [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_query@multigpu-query-mem-usage.html [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: [SKIP][584] ([Intel XE#1130]) -> [FAIL][585] ([Intel XE#2922]) [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_tlb@basic-tlb.html [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-436/igt@xe_tlb@basic-tlb.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: [DMESG-WARN][586] ([Intel XE#2919]) -> [SKIP][587] ([Intel XE#1130]) [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@xe_wedged@basic-wedged.html [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-466/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][588] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][589] ([Intel XE#1130]) [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_wedged@wedged-mode-toggle.html [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html [Intel XE#1034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1034 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [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#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#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#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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2461 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2808]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2808 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189 [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3416 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [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#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3490]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3490 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3557 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8124 -> IGTPW_12190 * Linux: xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7 -> xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9 IGTPW_12190: 12190 IGT_8124: 8124 xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: 4d723d57180a3aafc1a510bc08ef42f4b03671a7 xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9: b21f1413ea1860e80fd278112e820e6dadfc9df9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12190/index.html [-- Attachment #2: Type: text/html, Size: 178004 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) 2024-11-25 14:32 [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda ` (6 preceding siblings ...) 2024-11-25 16:47 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-11-25 16:58 ` Patchwork 2024-11-25 17:13 ` [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Hajda, Andrzej 8 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-11-25 16:58 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev == Series Details == Series: lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) URL : https://patchwork.freedesktop.org/series/141668/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15738_full -> IGTPW_12190_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12190_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12190_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. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12190_full: ### IGT changes ### #### Possible regressions #### * igt@core_setmaster@master-drop-set-user: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@core_setmaster@master-drop-set-user.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@core_setmaster@master-drop-set-user.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-dg2: [PASS][3] -> [SKIP][4] +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@gem_lmem_evict@dontneed-evict-race.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_lmem_evict@dontneed-evict-race.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a1: - shard-snb: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb4/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb6/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html * igt@perf@create-destroy-userspace-config: - shard-dg2: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@perf@create-destroy-userspace-config.html #### Warnings #### * igt@perf_pmu@busy-double-start: - shard-dg2: [FAIL][9] ([i915#4349]) -> [SKIP][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@perf_pmu@busy-double-start.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@perf_pmu@busy-double-start.html Known issues ------------ Here are the changes found in IGTPW_12190_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_allocator@two-level-inception-interruptible: - shard-dg2: [PASS][11] -> [SKIP][12] +17 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@api_intel_allocator@two-level-inception-interruptible.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@api_intel_allocator@two-level-inception-interruptible.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][15] ([i915#11814] / [i915#11815]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414]) +20 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +17 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@drm_fdinfo@busy-idle@bcs0.html * igt@fbdev@unaligned-read: - shard-dg2: [PASS][18] -> [SKIP][19] ([i915#2582]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@fbdev@unaligned-read.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@fbdev@unaligned-read.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#13008]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-2/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][22] ([i915#12392] / [i915#7297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-12/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-clear: - shard-rkl: [PASS][24] -> [DMESG-WARN][25] ([i915#12964]) +76 other tests dmesg-warn [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@gem_create@create-clear.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-4/igt@gem_create@create-clear.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#6335]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-9/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#8562]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-5/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][33] ([i915#10030] / [i915#7975] / [i915#8213]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-8/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4036]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-8/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-7/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu-1: NOTRUN -> [FAIL][37] ([i915#6117]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][40] ([i915#6334]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk2/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-8/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-wb-ro-default: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@gem_exec_flush@basic-wb-ro-default.html * igt@gem_exec_reloc@basic-cpu-read: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-wc-active: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@gem_exec_reloc@basic-wc-active.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +14 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][49] -> [ABORT][50] ([i915#7975] / [i915#8213]) +1 other test abort [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-9/igt@gem_exec_suspend@basic-s4-devices.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-12/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-dg2: NOTRUN -> [SKIP][55] ([i915#12936]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][56] -> [TIMEOUT][57] ([i915#5493]) +1 other test timeout [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: NOTRUN -> [TIMEOUT][58] ([i915#5493]) +1 other test timeout [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-10/igt@gem_lmem_swapping@verify-ccs.html - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk3/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random: - shard-dg2: [PASS][61] -> [SKIP][62] ([i915#12936]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-7/igt@gem_lmem_swapping@verify-random.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_lmem_swapping@verify-random.html - shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#8289]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +15 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +10 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-2/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +8 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#12975]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4270]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-tglu: [PASS][74] -> [SKIP][75] ([i915#4270]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-2/igt@gem_pxp@regular-baseline-src-copy-readible.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-4/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-5/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4885]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#2575]) +100 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4879]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3281] / [i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-2/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][87] +42 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb6/igt@gem_vm_create@invalid-create.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-4/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-access: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload: - shard-dg2: [PASS][93] -> [FAIL][94] ([i915#12870]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@i915_module_load@reload.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: NOTRUN -> [ABORT][95] ([i915#9820]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-7/igt@i915_pm_freq_api@freq-basic-api.html - shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#8399]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#6590]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][100] ([i915#2681]) +4 other tests warn [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@gem-execbuf: - shard-dg2: [PASS][101] -> [SKIP][102] ([i915#13014]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@i915_pm_rpm@gem-execbuf.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#13014]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#11681]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@i915_pm_rps@thresholds-park.html - shard-dg1: NOTRUN -> [SKIP][105] ([i915#11681]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-12/igt@i915_pm_rps@thresholds-park.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#6245]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-2/igt@i915_query@hwconfig_table.html * igt@i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][107] ([i915#1982] / [i915#9311]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk2/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][108] ([i915#9311]) +1 other test dmesg-warn [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@i915_selftest@mock@memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][109] ([i915#9311]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk2/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: [PASS][110] -> [DMESG-WARN][111] ([i915#4391] / [i915#4423]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-12/igt@i915_suspend@basic-s2idle-without-i915.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@i915_suspend@basic-s2idle-without-i915.html - shard-tglu: [PASS][112] -> [ABORT][113] ([i915#13010]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@i915_suspend@basic-s2idle-without-i915.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-3/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][114] ([i915#7443]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#7707]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-5/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4212]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#8709]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: NOTRUN -> [FAIL][118] ([i915#11808]) +1 other test fail [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-glk: NOTRUN -> [SKIP][121] ([i915#1769]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +5 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#3638]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5190]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: [PASS][129] -> [DMESG-WARN][130] ([i915#4423]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-12/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +9 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#6095]) +49 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-2/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][134] +48 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#6095]) +44 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#12313]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#12313]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#6095]) +87 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#6095]) +12 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#12313]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +162 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#6095]) +137 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-dp-4.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#3742]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7213]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7828]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#7828]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-tglu: NOTRUN -> [SKIP][147] ([i915#7828]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-10/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#7828]) +9 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#7828]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3555]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-2/igt@kms_color@deep-color.html - shard-tglu: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#9979]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-4/igt@kms_color@deep-color.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-9/igt@kms_content_protection@content-type-change.html - shard-dg2: NOTRUN -> [SKIP][153] ([i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][154] ([i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-2/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3299]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-8/igt@kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][157] ([i915#7118] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#6944] / [i915#7116] / [i915#7118]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#7118] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3555]) +8 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#12976]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#12976]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][164] ([i915#12976]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#12976]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: [PASS][166] -> [SKIP][167] +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#4103]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-flip-after-cursor-toggle: - shard-glk: [PASS][170] -> [FAIL][171] ([i915#2346]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-glk8/igt@kms_cursor_legacy@short-flip-after-cursor-toggle.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk8/igt@kms_cursor_legacy@short-flip-after-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][172] ([i915#12170]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][173] ([i915#11968]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#9723]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555]) +5 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#8812]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3840]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#4854]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#4854]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#1839]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#658]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-5/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [PASS][183] -> [FAIL][184] ([i915#2122]) +3 other tests fail [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#9934]) +5 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race.html - shard-rkl: NOTRUN -> [SKIP][186] ([i915#9934]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-2/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#3637]) +8 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-3/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3637]) +7 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#9934]) +8 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg2: NOTRUN -> [FAIL][190] ([i915#2122]) +3 other tests fail [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [FAIL][191] ([i915#12840] / [i915#2122]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][192] ([i915#11989]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][193] ([i915#2122]) +2 other tests fail [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#2587] / [i915#2672]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#2672]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#2587] / [i915#2672]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#2672]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#2587] / [i915#2672] / [i915#3555]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#2587] / [i915#2672]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#2587] / [i915#2672] / [i915#3555]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][205] ([i915#6880]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#5354]) +18 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][207] +44 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][208] +50 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#8708]) +21 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#1825]) +10 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#3458]) +21 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][212] +62 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3458]) +18 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#8708]) +25 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3023]) +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch: - shard-dg2: [PASS][216] -> [SKIP][217] ([i915#3555] / [i915#8228]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@kms_hdr@bpc-switch.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-4/igt@kms_hdr@bpc-switch-dpms.html - shard-dg2: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8228]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#12713]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-2/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#10656]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#12339]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#1839]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#6301]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-7/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][227] ([i915#6301]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-8/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-FAIL][228] ([i915#12964]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][229] ([i915#12169]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][230] ([i915#10647]) +1 other test fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#5354] / [i915#9423]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#2575] / [i915#9423]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#12247]) +9 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2: [PASS][234] -> [SKIP][235] ([i915#2575] / [i915#9423]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-glk: NOTRUN -> [SKIP][236] +381 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#12247]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#12247] / [i915#6953] / [i915#9423]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][239] ([i915#12247] / [i915#6953]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#12247] / [i915#3555]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#12247]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#12247]) +7 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#12247]) +17 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#9812]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-5/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#5354]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#9685]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#9340]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#8430]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][249] ([i915#8430]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][250] -> [SKIP][251] ([i915#9519]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#12937]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#9519]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#9519]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][255] -> [SKIP][256] ([i915#9519]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#6524]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][258] ([i915#11520]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#11520]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#11520]) +10 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][261] ([i915#11520]) +8 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#11520]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][263] ([i915#11520]) +9 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-12/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#11520]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#9683]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#9732]) +15 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-10/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@pr-cursor-blt: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#1072] / [i915#9732]) +4 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@kms_psr@pr-cursor-blt.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#1072] / [i915#9732]) +19 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-8/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-cursor-render: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#9732]) +13 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_psr@psr2-cursor-render.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +23 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#9685]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#5289]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#2575] / [i915#5190]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#5289]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#5289]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#12755] / [i915#5190]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#12755]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#3555]) +4 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][279] ([i915#5465]) +1 other test fail [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-3/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#3555]) +3 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][281] -> [FAIL][282] ([IGT#160]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@kms_sysfs_edid_timing.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-2/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#8623]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][284] ([i915#8623]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-rpm: - shard-rkl: [PASS][285] -> [DMESG-WARN][286] ([i915#12917] / [i915#12964]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-rpm.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@kms_vblank@ts-continuation-dpms-rpm.html * igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][287] ([i915#12964]) +12 other tests dmesg-warn [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-5/igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-2.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#9906]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#2437]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@kms_writeback@writeback-check-output.html - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#2437]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#2437] / [i915#9412]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][292] ([i915#2437]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-glk2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#2437]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#2437] / [i915#9412]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-7/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#2436]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@i915-ref-count: - shard-dg2: [PASS][296] -> [SKIP][297] ([i915#12506]) +5 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@perf@i915-ref-count.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@perf@i915-ref-count.html * igt@perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][298] ([i915#9100]) +1 other test fail [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@perf@non-zero-reason.html * igt@perf@stress-open-close: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#12506]) +6 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@perf@stress-open-close.html * igt@perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#2433]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs0: - shard-dg1: [PASS][301] -> [FAIL][302] ([i915#4349]) +3 other tests fail [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-18/igt@perf_pmu@busy-double-start@vecs0.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@cpu-hotplug: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#8850]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-1/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][304] ([i915#12549] / [i915#6806]) +1 other test fail [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-tglu: NOTRUN -> [ABORT][305] ([i915#13010]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-9/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#8516]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][307] ([i915#9351]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][308] ([i915#9351]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#3708]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#3291] / [i915#3708]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][311] ([i915#3291] / [i915#3708]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#3708]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][313] ([i915#9917]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][314] ([i915#12910]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg2: NOTRUN -> [SKIP][315] ([i915#9917]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-rkl: NOTRUN -> [SKIP][316] ([i915#9917]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@syncobj_timeline@wait-all-for-submit-delayed-submit: - shard-dg2: [PASS][317] -> [SKIP][318] ([i915#2575]) +120 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][319] +5 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-3/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@core_getversion@basic: - shard-dg2: [FAIL][320] ([i915#12866]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@core_getversion@basic.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@core_getversion@basic.html * igt@core_hotunplug@unbind-rebind: - shard-snb: [ABORT][322] ([i915#11703]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb2/igt@core_hotunplug@unbind-rebind.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb7/igt@core_hotunplug@unbind-rebind.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2: [SKIP][324] -> [PASS][325] +22 other tests pass [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@core_setmaster@master-drop-set-shared-fd.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-8/igt@core_setmaster@master-drop-set-shared-fd.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][326] ([i915#12392]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][328] ([i915#12964]) -> [PASS][329] +46 other tests pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-7/igt@gem_eio@in-flight-suspend.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-7/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-dg1: [FAIL][330] ([i915#5784]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-14/igt@gem_eio@kms.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-17/igt@gem_eio@kms.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][332] ([i915#11713]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-10/igt@gem_exec_big@single.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-9/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [ABORT][334] ([i915#7975] / [i915#8213]) -> [PASS][335] +1 other test pass [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_lmem_swapping@verify: - shard-dg2: [SKIP][336] ([i915#12936]) -> [PASS][337] +1 other test pass [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_lmem_swapping@verify.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-7/igt@gem_lmem_swapping@verify.html * igt@gem_mmap_offset@close-race: - shard-snb: [INCOMPLETE][338] -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb4/igt@gem_mmap_offset@close-race.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb2/igt@gem_mmap_offset@close-race.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-tglu: [SKIP][340] ([i915#4270]) -> [PASS][341] +1 other test pass [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-off-1.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-rkl: [DMESG-WARN][342] ([i915#12917] / [i915#12964]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@gem_userptr_blits@map-fixed-invalidate.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][344] ([i915#9820]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][346] ([i915#12942]) -> [PASS][347] +1 other test pass [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@debugfs-read: - shard-dg2: [SKIP][348] ([i915#13014]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@i915_pm_rpm@debugfs-read.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@i915_pm_rpm@debugfs-read.html * igt@i915_pm_rpm@reg-read-ioctl: - shard-rkl: [SKIP][350] -> [PASS][351] +1 other test pass [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@i915_pm_rpm@reg-read-ioctl.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-7/igt@i915_pm_rpm@reg-read-ioctl.html * igt@i915_selftest@live: - shard-rkl: [DMESG-FAIL][352] -> [PASS][353] +1 other test pass [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@i915_selftest@live.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-5/igt@i915_selftest@live.html * igt@i915_selftest@live@sanitycheck: - shard-tglu: [ABORT][354] ([i915#13010]) -> [PASS][355] +1 other test pass [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-7/igt@i915_selftest@live@sanitycheck.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-4/igt@i915_selftest@live@sanitycheck.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [WARN][356] -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@i915_suspend@basic-s3-without-i915.html - shard-rkl: [INCOMPLETE][358] ([i915#12964] / [i915#4817]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html - shard-dg1: [DMESG-WARN][360] ([i915#4391] / [i915#4423]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-13/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [DMESG-FAIL][362] ([i915#12964]) -> [PASS][363] +2 other tests pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@i915_suspend@debugfs-reader.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-5/igt@i915_suspend@debugfs-reader.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-tglu: [ABORT][364] ([i915#10354]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-3/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-7/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [FAIL][366] ([i915#2346]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [FAIL][368] ([i915#2122]) -> [PASS][369] +7 other tests pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-dg1: [DMESG-WARN][370] ([i915#4423]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-13/igt@kms_flip@absolute-wf_vblank-interruptible.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@wf_vblank-ts-check: - shard-rkl: [FAIL][372] ([i915#11989] / [i915#2122]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-snb: [SKIP][374] -> [PASS][375] +2 other tests pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdmi_inject@inject-audio: - shard-dg2: [SKIP][376] ([i915#13012]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@kms_hdmi_inject@inject-audio.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-7/igt@kms_hdmi_inject@inject-audio.html - shard-dg1: [SKIP][378] ([i915#13012]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-12/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [SKIP][380] ([i915#2575] / [i915#9423]) -> [PASS][381] +6 other tests pass [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2: [SKIP][382] ([i915#12937]) -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@kms_pm_rpm@basic-pci-d3-state.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-7/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][384] ([i915#9519]) -> [PASS][385] +2 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][386] ([i915#12722] / [i915#5465]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@kms_setmode@basic.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-8/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][388] ([i915#12722]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-8/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-1: - shard-tglu: [FAIL][390] ([i915#5465]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-tglu-8/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html * igt@perf@polling: - shard-dg2: [SKIP][392] ([i915#12506]) -> [PASS][393] +8 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@perf@polling.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-2/igt@perf@polling.html * igt@perf_pmu@most-busy-check-all@rcs0: - shard-rkl: [FAIL][394] ([i915#4349]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-4/igt@perf_pmu@most-busy-check-all@rcs0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-5/igt@perf_pmu@most-busy-check-all@rcs0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][396] ([i915#4349]) -> [PASS][397] +3 other tests pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [FAIL][398] ([i915#4349]) -> [PASS][399] +5 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-4/igt@perf_pmu@semaphore-busy@vecs0.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_busy@before: - shard-dg2: [SKIP][400] ([i915#2575]) -> [PASS][401] +157 other tests pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@prime_busy@before.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@prime_busy@before.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg2: [SKIP][402] -> [ABORT][403] ([i915#5507]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-dg2: [SKIP][404] ([i915#12506]) -> [SKIP][405] ([i915#8414]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@drm_fdinfo@virtual-busy-hang-all.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@gem_busy@semaphore: - shard-dg2: [SKIP][406] ([i915#2575]) -> [SKIP][407] ([i915#3936]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_busy@semaphore.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-6/igt@gem_busy@semaphore.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: [SKIP][408] ([i915#280]) -> [SKIP][409] ([i915#2575]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: [SKIP][410] ([i915#2575]) -> [SKIP][411] ([i915#4812]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_balancer@bonded-semaphore.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_capture@capture-invisible: - shard-dg2: [SKIP][412] ([i915#2575]) -> [SKIP][413] ([i915#6334]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_capture@capture-invisible.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: [SKIP][414] ([i915#3539] / [i915#4852]) -> [SKIP][415] ([i915#2575]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-4/igt@gem_exec_flush@basic-uc-ro-default.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: [SKIP][416] ([i915#3539]) -> [SKIP][417] ([i915#2575]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@gem_exec_flush@basic-uc-set-default.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg2: [SKIP][418] ([i915#2575]) -> [SKIP][419] ([i915#3539] / [i915#4852]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_flush@basic-wb-set-default.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-1/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: [SKIP][420] ([i915#2575]) -> [SKIP][421] ([i915#3281]) +11 other tests skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-dg2: [SKIP][422] ([i915#3281]) -> [SKIP][423] ([i915#2575]) +6 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-wc.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: [SKIP][424] ([i915#4537] / [i915#4812]) -> [SKIP][425] ([i915#2575]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [SKIP][426] ([i915#2575]) -> [ABORT][427] ([i915#7975] / [i915#8213]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: [SKIP][428] ([i915#2575]) -> [SKIP][429] ([i915#4860]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: [SKIP][430] ([i915#4860]) -> [SKIP][431] ([i915#2575]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_media_vme: - shard-dg2: [SKIP][432] ([i915#2575]) -> [SKIP][433] ([i915#284]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_media_vme.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-3/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-dg2: [SKIP][434] ([i915#2575]) -> [SKIP][435] ([i915#4083]) +3 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_mmap@bad-size.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: [SKIP][436] ([i915#2575]) -> [SKIP][437] ([i915#4077]) +5 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: [SKIP][438] ([i915#4077]) -> [SKIP][439] ([i915#2575]) +8 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@close: - shard-dg2: [SKIP][440] ([i915#4083]) -> [SKIP][441] ([i915#2575]) +3 other tests skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-8/igt@gem_mmap_wc@close.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_mmap_wc@close.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: [SKIP][442] ([i915#3282]) -> [SKIP][443] ([i915#2575]) +2 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@gem_partial_pwrite_pread@write-uncached.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pwrite@basic-random: - shard-dg2: [SKIP][444] ([i915#2575]) -> [SKIP][445] ([i915#3282]) +2 other tests skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_pwrite@basic-random.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-4/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: [SKIP][446] ([i915#4270]) -> [TIMEOUT][447] ([i915#12964]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@gem_pxp@create-protected-buffer.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: [SKIP][448] ([i915#4270]) -> [SKIP][449] ([i915#2575]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-dg2-11/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: [TIMEOUT][450] ([i915#12964]) -> [SKIP][451] ([i915#4270]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: [TIMEOUT][452] ([i915#12917] / [i915#12964]) -> [SKIP][453] ([i915#4270]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-off-2.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2: [SKIP][454] ([i915#2575]) -> [SKIP][455] ([i915#4270]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume. == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12190/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support 2024-11-25 14:32 [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda ` (7 preceding siblings ...) 2024-11-25 16:58 ` ✗ i915.CI.Full: " Patchwork @ 2024-11-25 17:13 ` Hajda, Andrzej 8 siblings, 0 replies; 11+ messages in thread From: Hajda, Andrzej @ 2024-11-25 17:13 UTC (permalink / raw) To: igt-dev Cc: Dominik Grzegorzek, Zbigniew Kempczyński, Gwan-gyeong Mun, Kamil Konieczny, Christoph Manszewski W dniu 25.11.2024 o 15:32, Andrzej Hajda pisze: > The patchset tries to simplify and unify iga64 load/store assemblies. > Moreover it adds support for Xe3 platforms (PTL). > > v2: > - addressed comments to v1, details in patches > v3: > - added passing surface descriptor via COMPUTE_WALKER/inline_data, > required for stateless load/stores in Xe3. > - added support for Xe3 platforms. > v4: > - fixed placement of gpgpu_alloc_gpu_addr changes(Dominik), > - pass vm_id in gpgpu_alloc_gpu_addr (Dominik), > - added R-B > v5: > - updated comment in the last patch (Dominik), > - removed extra lines (Dominik) > - added R-B, > - rebased > > Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> > --- > - Link to v1: https://lore.kernel.org/r/20241114-gpgpu_send_rework-v1-0-e0914e09e7b2@intel.com > - Link to v2: https://lore.kernel.org/r/20241115-gpgpu_send_rework-v2-0-d1c84135aaaf@intel.com > - Link to v3: https://lore.kernel.org/r/20241121-gpgpu_send_rework-v3-0-0b6aa48ab006@intel.com > - Link to v4: https://lore.kernel.org/r/20241125-gpgpu_send_rework-v4-0-c16b568a1f3d@intel.com Merged. Thx for reviews. Andrzej > > --- > Andrzej Hajda (4): > scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation > lib/gpgpu_shader: simplify load/store shaders > lib/gpgpu_shader: pass surface desription to shaders via inline data > lib/gpgpu_shader: add support for Xe3 platforms > > lib/gpgpu_shader.c | 188 +++++++------------------ > lib/iga64_generated_codes.c | 329 +++++++++++++++++++++---------------------- > lib/iga64_macros.h | 72 +++++++++- > lib/meson.build | 1 + > scripts/generate_iga64_codes | 2 +- > 5 files changed, 280 insertions(+), 312 deletions(-) > --- > base-commit: 027caf37991f4d39cb41beaf82dc7c920d976db6 > change-id: 20241106-gpgpu_send_rework-817a3e4f464e > > Best regards, ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-11-25 17:13 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-25 14:32 [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda 2024-11-25 14:33 ` [PATCH v5 1/4] scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation Andrzej Hajda 2024-11-25 14:33 ` [PATCH v5 2/4] lib/gpgpu_shader: simplify load/store shaders Andrzej Hajda 2024-11-25 14:33 ` [PATCH v5 3/4] lib/gpgpu_shader: pass surface desription to shaders via inline data Andrzej Hajda 2024-11-25 14:33 ` [PATCH v5 4/4] lib/gpgpu_shader: add support for Xe3 platforms Andrzej Hajda 2024-11-25 15:21 ` ✗ Xe.CI.BAT: failure for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev3) Patchwork 2024-11-25 15:44 ` Hajda, Andrzej 2024-11-25 15:38 ` ✓ i915.CI.BAT: success " Patchwork 2024-11-25 16:47 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-25 16:58 ` ✗ i915.CI.Full: " Patchwork 2024-11-25 17:13 ` [PATCH v5 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Hajda, Andrzej
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox