* [PATCH v4 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support
@ 2024-11-25 7:31 Andrzej Hajda
2024-11-25 7:31 ` [PATCH v4 1/4] scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation Andrzej Hajda
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Andrzej Hajda @ 2024-11-25 7:31 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
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
---
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 | 77 +++++++++-
lib/meson.build | 1 +
scripts/generate_iga64_codes | 2 +-
5 files changed, 285 insertions(+), 312 deletions(-)
---
base-commit: fb343db7fc59c760ef0a0c19303e7bcec177dbd9
change-id: 20241106-gpgpu_send_rework-817a3e4f464e
Best regards,
--
Andrzej Hajda <andrzej.hajda@intel.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v4 1/4] scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation
2024-11-25 7:31 [PATCH v4 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda
@ 2024-11-25 7:31 ` Andrzej Hajda
2024-11-25 7:31 ` [PATCH v4 2/4] lib/gpgpu_shader: simplify load/store shaders Andrzej Hajda
` (5 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Andrzej Hajda @ 2024-11-25 7:31 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 6638be07b356..41be66f74486 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 ec9d477415eebb7d6983395f1bcde78f
+#define MD5_SUM_IGA64_ASMS 09d72b5fd1f62c8c2905caa80f400567
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] 10+ messages in thread
* [PATCH v4 2/4] lib/gpgpu_shader: simplify load/store shaders
2024-11-25 7:31 [PATCH v4 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda
2024-11-25 7:31 ` [PATCH v4 1/4] scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation Andrzej Hajda
@ 2024-11-25 7:31 ` Andrzej Hajda
2024-11-25 7:31 ` [PATCH v4 3/4] lib/gpgpu_shader: pass surface desription to shaders via inline data Andrzej Hajda
` (4 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Andrzej Hajda @ 2024-11-25 7:31 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 4e1b8d5e9009..363435e7efd3 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 41be66f74486..04015b0b6d29 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 09d72b5fd1f62c8c2905caa80f400567
+#define MD5_SUM_IGA64_ASMS da66be3cf9bec819a61429de75943011
struct iga64_template const iga64_code_gpgpu_fill[] = {
{ .gen_ver = 2000, .size = 44, .code = (const uint32_t []) {
@@ -83,10 +83,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,
@@ -96,12 +96,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,
@@ -111,11 +111,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,
@@ -125,12 +125,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,
@@ -140,11 +140,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,
@@ -193,84 +193,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,
@@ -324,84 +323,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,
@@ -432,65 +415,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,
@@ -499,77 +485,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,
@@ -627,56 +613,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] 10+ messages in thread
* [PATCH v4 3/4] lib/gpgpu_shader: pass surface desription to shaders via inline data
2024-11-25 7:31 [PATCH v4 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda
2024-11-25 7:31 ` [PATCH v4 1/4] scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation Andrzej Hajda
2024-11-25 7:31 ` [PATCH v4 2/4] lib/gpgpu_shader: simplify load/store shaders Andrzej Hajda
@ 2024-11-25 7:31 ` Andrzej Hajda
2024-11-25 8:50 ` Grzegorzek, Dominik
2024-11-25 7:31 ` [PATCH v4 4/4] lib/gpgpu_shader: add support for Xe3 platforms Andrzej Hajda
` (3 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Andrzej Hajda @ 2024-11-25 7:31 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>
---
lib/gpgpu_shader.c | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/lib/gpgpu_shader.c b/lib/gpgpu_shader.c
index 363435e7efd3..52506705e517 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] 10+ messages in thread
* [PATCH v4 4/4] lib/gpgpu_shader: add support for Xe3 platforms
2024-11-25 7:31 [PATCH v4 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda
` (2 preceding siblings ...)
2024-11-25 7:31 ` [PATCH v4 3/4] lib/gpgpu_shader: pass surface desription to shaders via inline data Andrzej Hajda
@ 2024-11-25 7:31 ` Andrzej Hajda
2024-11-25 14:08 ` Grzegorzek, Dominik
2024-11-25 9:19 ` ✓ Xe.CI.BAT: success for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev2) Patchwork
` (2 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Andrzej Hajda @ 2024-11-25 7:31 UTC (permalink / raw)
To: igt-dev
Cc: Dominik Grzegorzek, Zbigniew Kempczyński, Gwan-gyeong Mun,
Kamil Konieczny, Christoph Manszewski, Andrzej Hajda
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)
Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
---
lib/iga64_generated_codes.c | 13 ++++++++-----
lib/iga64_macros.h | 37 +++++++++++++++++++++++++++++++++----
2 files changed, 41 insertions(+), 9 deletions(-)
diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c
index 04015b0b6d29..a12135e7dbfd 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 da66be3cf9bec819a61429de75943011
+#define MD5_SUM_IGA64_ASMS 7b1db60d1de46cf35666f2a7f51e8fc2
struct iga64_template const iga64_code_gpgpu_fill[] = {
{ .gen_ver = 2000, .size = 44, .code = (const uint32_t []) {
@@ -80,10 +80,11 @@ struct iga64_template const iga64_code_gpgpu_fill[] = {
};
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,
@@ -484,13 +485,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,
@@ -612,14 +614,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..f82785610207 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,28 +42,50 @@
(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 ;\
(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)
+
+#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] 10+ messages in thread
* Re: [PATCH v4 3/4] lib/gpgpu_shader: pass surface desription to shaders via inline data
2024-11-25 7:31 ` [PATCH v4 3/4] lib/gpgpu_shader: pass surface desription to shaders via inline data Andrzej Hajda
@ 2024-11-25 8:50 ` Grzegorzek, Dominik
0 siblings, 0 replies; 10+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-25 8:50 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Hajda, Andrzej
Cc: Kempczynski, Zbigniew, Mun, Gwan-gyeong, Manszewski, Christoph,
kamil.konieczny@linux.intel.com
On Mon, 2024-11-25 at 08:31 +0100, Andrzej Hajda wrote:
> 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>
Looks good to me.
It is:
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 363435e7efd3..52506705e517 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);
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev2)
2024-11-25 7:31 [PATCH v4 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda
` (3 preceding siblings ...)
2024-11-25 7:31 ` [PATCH v4 4/4] lib/gpgpu_shader: add support for Xe3 platforms Andrzej Hajda
@ 2024-11-25 9:19 ` Patchwork
2024-11-25 9:29 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-25 10:40 ` ✗ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-25 9:19 UTC (permalink / raw)
To: Andrzej Hajda; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2079 bytes --]
== Series Details ==
Series: lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev2)
URL : https://patchwork.freedesktop.org/series/141668/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8123_BAT -> XEIGTPW_12185_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12185_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@bad-pitch-0:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3429]) +31 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][3] ([Intel XE#1861]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#3429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3429
Build changes
-------------
* IGT: IGT_8123 -> IGTPW_12185
* Linux: xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a -> xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7
IGTPW_12185: 12185
IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a: a381faddbfc974e7bd57efe953a738415afccd6a
xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: 4d723d57180a3aafc1a510bc08ef42f4b03671a7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/index.html
[-- Attachment #2: Type: text/html, Size: 2677 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.BAT: failure for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev2)
2024-11-25 7:31 [PATCH v4 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda
` (4 preceding siblings ...)
2024-11-25 9:19 ` ✓ Xe.CI.BAT: success for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev2) Patchwork
@ 2024-11-25 9:29 ` Patchwork
2024-11-25 10:40 ` ✗ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-25 9:29 UTC (permalink / raw)
To: Andrzej Hajda; +Cc: igt-dev
== Series Details ==
Series: lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev2)
URL : https://patchwork.freedesktop.org/series/141668/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8123 -> IGTPW_12185
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12185 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12185, 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_12185/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12185:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@module-reload:
- bat-dg2-9: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-dg2-9/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-dg2-9/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-arlh-2: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arlh-2/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-arlh-2/igt@i915_selftest@live.html
Known issues
------------
Here are the changes found in IGTPW_12185 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- bat-arls-5: [PASS][5] -> [SKIP][6] ([i915#11191] / [i915#11345]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@fbdev@eof.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-arls-5/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-arls-5: [PASS][7] -> [SKIP][8] ([i915#1849])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@fbdev@info.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-arls-5/igt@fbdev@info.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][9] -> [ABORT][10] ([i915#12061]) +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [PASS][11] -> [ABORT][12] ([i915#12061]) +1 other test abort
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-arls-5: [PASS][13] -> [SKIP][14] ([i915#3637]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@kms_flip@basic-flip-vs-wf_vblank.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-arls-5/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_frontbuffer_tracking@basic:
- bat-arls-5: [PASS][15] -> [SKIP][16] ([i915#4342] / [i915#5354])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@kms_frontbuffer_tracking@basic.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-arls-5/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-arls-5: [PASS][17] -> [SKIP][18] ([i915#12732]) +13 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][19] -> [SKIP][20] ([i915#9197]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@prime_vgem@basic-fence-flip:
- bat-arls-5: [PASS][21] -> [SKIP][22] ([i915#12732] / [i915#3708])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@prime_vgem@basic-fence-flip.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-arls-5/igt@prime_vgem@basic-fence-flip.html
#### Possible fixes ####
* igt@gem_tiled_blits@basic:
- fi-pnv-d510: [SKIP][23] -> [PASS][24] +2 other tests pass
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-pnv-d510/igt@gem_tiled_blits@basic.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/fi-pnv-d510/igt@gem_tiled_blits@basic.html
* igt@i915_module_load@reload:
- fi-cfl-8109u: [DMESG-WARN][25] ([i915#11621] / [i915#1982]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-cfl-8109u/igt@i915_module_load@reload.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/fi-cfl-8109u/igt@i915_module_load@reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][27] ([i915#12061]) -> [PASS][28] +1 other test pass
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-mtlp-8/igt@i915_selftest@live.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][29] ([i915#11621]) -> [PASS][30] +131 other tests pass
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@kms_flip@basic-flip-vs-dpms@c-dp1:
- fi-kbl-7567u: [DMESG-WARN][31] ([i915#12920]) -> [PASS][32] +1 other test pass
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
#### Warnings ####
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-arls-5: [SKIP][33] ([i915#10202]) -> [SKIP][34] ([i915#12732]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-arls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-arls-5: [SKIP][35] ([i915#9886]) -> [SKIP][36] ([i915#12732])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@kms_dsc@dsc-basic.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/bat-arls-5/igt@kms_dsc@dsc-basic.html
[i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202
[i915#11191]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11191
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12732
[i915#12920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12920
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8123 -> IGTPW_12185
* Linux: CI_DRM_15731 -> CI_DRM_15737
CI-20190529: 20190529
CI_DRM_15731: a381faddbfc974e7bd57efe953a738415afccd6a @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15737: 4d723d57180a3aafc1a510bc08ef42f4b03671a7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12185: 12185
IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12185/index.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev2)
2024-11-25 7:31 [PATCH v4 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda
` (5 preceding siblings ...)
2024-11-25 9:29 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-25 10:40 ` Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-25 10:40 UTC (permalink / raw)
To: Andrzej Hajda; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 148993 bytes --]
== Series Details ==
Series: lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev2)
URL : https://patchwork.freedesktop.org/series/141668/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8123_full -> XEIGTPW_12185_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12185_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12185_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_12185_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: NOTRUN -> [FAIL][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_psr@fbc-psr2-cursor-render@edp-1:
- shard-lnl: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
* igt@kms_sequence@queue-busy@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_sequence@queue-busy@pipe-b-dp-4.html
#### Warnings ####
* igt@kms_sequence@queue-busy:
- shard-dg2-set2: [SKIP][8] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_sequence@queue-busy.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_sequence@queue-busy.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-lnl: [FAIL][10] ([Intel XE#3499]) -> [ABORT][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [FAIL][12] ([Intel XE#3499]) -> [DMESG-FAIL][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
Known issues
------------
Here are the changes found in XEIGTPW_12185_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#1885])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@core_hotunplug@hotrebind-lateclose.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@core_hotunplug@hotrebind-lateclose.html
* igt@core_hotunplug@hotreplug:
- shard-bmg: [PASS][16] -> [DMESG-WARN][17] ([Intel XE#3468] / [Intel XE#3521])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@core_hotunplug@hotreplug.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@core_hotunplug@hotreplug.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][18] -> [SKIP][19] ([Intel XE#3453])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [PASS][20] -> [FAIL][21] ([Intel XE#3339])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@core_setmaster@master-drop-set-user.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html
* igt@core_setmaster_vs_auth:
- shard-dg2-set2: [PASS][22] -> [SKIP][23] ([Intel XE#2423])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@core_setmaster_vs_auth.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@core_setmaster_vs_auth.html
* igt@fbdev@nullptr:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2134])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@fbdev@nullptr.html
* igt@fbdev@write:
- shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2134]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@fbdev@write.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@fbdev@write.html
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1125])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][28] ([Intel XE#1727] / [Intel XE#3468])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][29] -> [DMESG-WARN][30] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-6.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-6.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#1426]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1407])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2327])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2-set2: [PASS][35] -> [SKIP][36] ([Intel XE#2136]) +36 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: [PASS][37] -> [DMESG-FAIL][38] ([Intel XE#3468]) +11 other tests dmesg-fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_big_fb@linear-16bpp-rotate-180.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#316])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1124])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-3/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1124]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1477])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#610])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2314] / [Intel XE#2894])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1512])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#367])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2887]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3:
- shard-bmg: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#3468]) +56 other tests dmesg-warn
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][51] -> [INCOMPLETE][52] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests incomplete
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#3432])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2887]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#787]) +97 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#455] / [Intel XE#787]) +14 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2652] / [Intel XE#787]) +20 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_audio@dp-audio:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#373]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-7/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#306])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#373])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2252])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][62] ([Intel XE#1178]) +3 other tests fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#455]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#2321]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#308])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2423] / [i915#2575]) +25 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2291]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#1475])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-8/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2423])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#3070])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-blt@rgb565-4tiled:
- shard-bmg: [PASS][74] -> [DMESG-FAIL][75] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
* igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled:
- shard-bmg: [PASS][76] -> [DMESG-FAIL][77] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2372])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1421]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][80] ([Intel XE#2882]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][81] -> [FAIL][82] ([Intel XE#3321] / [Intel XE#3486])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][83] -> [FAIL][84] ([Intel XE#3486]) +1 other test fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][85] -> [FAIL][86] ([Intel XE#3321] / [Intel XE#3487])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#2316]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3:
- shard-bmg: [PASS][89] -> [FAIL][90] ([Intel XE#3321])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-bmg: [PASS][91] -> [DMESG-WARN][92] ([Intel XE#2705] / [Intel XE#3468])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@flip-vs-panning-interruptible.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@nonexisting-fb:
- shard-bmg: [PASS][93] -> [SKIP][94] ([Intel XE#3007]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@nonexisting-fb.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_flip@nonexisting-fb.html
* igt@kms_flip@plain-flip-fb-recreate@a-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][95] ([Intel XE#3468]) +1 other test dmesg-fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate@a-dp2.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#886]) +1 other test fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-8/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][98] -> [FAIL][99] ([Intel XE#2882]) +8 other tests fail
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-lnl: NOTRUN -> [FAIL][100] ([Intel XE#3149] / [Intel XE#886])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@b-edp1:
- shard-lnl: NOTRUN -> [FAIL][101] ([Intel XE#886]) +1 other test fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-dg2-set2: [PASS][102] -> [SKIP][103] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2293]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1401]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-bmg: [PASS][107] -> [SKIP][108] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#651]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][112] ([Intel XE#2333]) +2 other tests fail
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#651]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2311]) +8 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2312]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2313]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#653])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2136]) +32 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#656]) +8 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-handle-valid:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#3007])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_getfb@getfb-handle-valid.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1470])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-1/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@static-toggle-suspend:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1503])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#3012])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#599])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2393])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#3307])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][127] ([Intel XE#361])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2763]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2763]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [PASS][130] -> [DMESG-WARN][131] ([Intel XE#2566] / [Intel XE#3468]) +1 other test dmesg-warn
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2763]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_rpm@i2c:
- shard-dg2-set2: [PASS][134] -> [SKIP][135] ([Intel XE#2446]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_pm_rpm@i2c.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#1439] / [Intel XE#3141])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1439] / [Intel XE#3141])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-bmg: [PASS][138] -> [DMESG-WARN][139] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests dmesg-warn
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2446])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@universal-planes@plane-59:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][141] ([Intel XE#3468]) +7 other tests dmesg-warn
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_pm_rpm@universal-planes@plane-59.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#1489]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1489]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2387])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@pr-cursor-render:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1406])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_psr@pr-sprite-blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2330])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2-set2: [PASS][149] -> [SKIP][150] ([Intel XE#2423] / [i915#2575]) +109 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-180.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2413])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_sequence@get-forked-busy@pipe-d-dp-2:
- shard-bmg: NOTRUN -> [DMESG-WARN][152] ([Intel XE#3468]) +37 other tests dmesg-warn
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_sequence@get-forked-busy@pipe-d-dp-2.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][153] -> [FAIL][154] ([Intel XE#2883]) +2 other tests fail
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [PASS][155] -> [SKIP][156] ([Intel XE#1435])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#330])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][158] -> [FAIL][159] ([Intel XE#899])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#1123]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_create@create-execqueues-noleak-shared:
- shard-bmg: [PASS][161] -> [DMESG-WARN][162] ([Intel XE#1727]) +2 other tests dmesg-warn
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_create@create-execqueues-noleak-shared.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_create@create-execqueues-noleak-shared.html
* igt@xe_eudebug@attach-debug-metadata:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2905]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@xe_eudebug@attach-debug-metadata.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#2905]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-7/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
* igt@xe_evict@evict-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#688]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-7/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1130]) +50 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#1130])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2322]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#1392])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_basic@no-exec-basic:
- shard-dg2-set2: [PASS][170] -> [DMESG-WARN][171] ([Intel XE#1727]) +2 other tests dmesg-warn
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_exec_basic@no-exec-basic.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@xe_exec_basic@no-exec-basic.html
* igt@xe_exec_fault_mode@many-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#288]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@xe_exec_fault_mode@many-basic-prefetch.html
* igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#2905]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-bmg: [PASS][174] -> [DMESG-FAIL][175] ([Intel XE#3371])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
- shard-lnl: [PASS][176] -> [DMESG-WARN][177] ([Intel XE#3371])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-6/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
- shard-dg2-set2: [PASS][178] -> [DMESG-FAIL][179] ([Intel XE#3371])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: [PASS][180] -> [DMESG-WARN][181] ([Intel XE#3467] / [Intel XE#3468])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [PASS][182] -> [DMESG-WARN][183] ([Intel XE#3467]) +1 other test dmesg-warn
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
- shard-lnl: [PASS][184] -> [DMESG-WARN][185] ([Intel XE#3467])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-dg2-set2: [PASS][186] -> [DMESG-WARN][187] ([Intel XE#3343])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: [PASS][188] -> [DMESG-WARN][189] ([Intel XE#3184])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [PASS][190] -> [SKIP][191] ([Intel XE#1192])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_live_ktest@xe_bo.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-dg2-set2: [PASS][192] -> [SKIP][193] ([Intel XE#2229]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_media_fill@media-fill:
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#560])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [PASS][195] -> [FAIL][196] ([Intel XE#3546])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_module_load@many-reload.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [PASS][197] -> [DMESG-WARN][198] ([Intel XE#3467])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_module_load@reload.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@xe_module_load@reload.html
* igt@xe_oa@polling:
- shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#3573])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@xe_oa@polling.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][200] ([Intel XE#2284])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-3/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-mocs:
- shard-lnl: [PASS][201] -> [DMESG-WARN][202] ([Intel XE#2932])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-1/igt@xe_pm@s2idle-mocs.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-6/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [PASS][203] -> [DMESG-WARN][204] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s3-basic:
- shard-bmg: [PASS][205] -> [DMESG-WARN][206] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_pm@s3-basic.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_pm@s3-basic.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][207] ([Intel XE#1727] / [Intel XE#3088] / [Intel XE#3468])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_query@multigpu-query-oa-units:
- shard-lnl: NOTRUN -> [SKIP][208] ([Intel XE#944])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-4/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_tlb@basic-tlb:
- shard-bmg: [PASS][209] -> [CRASH][210] ([Intel XE#3212])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_tlb@basic-tlb.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@xe_tlb@basic-tlb.html
- shard-lnl: [PASS][211] -> [CRASH][212] ([Intel XE#3212])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-4/igt@xe_tlb@basic-tlb.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-6/igt@xe_tlb@basic-tlb.html
* igt@xe_vm@large-userptr-split-misaligned-binds-67108864:
- shard-bmg: [PASS][213] -> [SKIP][214] ([Intel XE#1130]) +22 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_vm@large-userptr-split-misaligned-binds-67108864.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_vm@large-userptr-split-misaligned-binds-67108864.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: [PASS][215] -> [SKIP][216] ([Intel XE#1130]) +206 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Possible fixes ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [FAIL][217] ([Intel XE#3440]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@core_getversion@all-cards.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@core_getversion@all-cards.html
* igt@core_hotunplug@hotunplug-rescan:
- shard-dg2-set2: [SKIP][219] ([Intel XE#1885]) -> [PASS][220] +1 other test pass
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@core_hotunplug@hotunplug-rescan.html
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [FAIL][221] ([Intel XE#3249]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@core_setmaster@master-drop-set-root.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][223] ([Intel XE#2136]) -> [PASS][224] +28 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [DMESG-FAIL][225] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][226]
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [DMESG-WARN][227] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][229] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][230] +1 other test pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-dp-2:
- shard-bmg: [DMESG-FAIL][231] ([Intel XE#3468]) -> [PASS][232] +10 other tests pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-dp-2.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-dp-2.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [INCOMPLETE][233] ([Intel XE#1727]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [SKIP][235] ([Intel XE#2423] / [i915#2575]) -> [PASS][236] +76 other tests pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][237] ([Intel XE#877]) -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][239] ([Intel XE#2291]) -> [PASS][240] +8 other tests pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/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][241] ([Intel XE#2425]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][243] ([Intel XE#1340]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][245] ([Intel XE#3009]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_dp_aux_dev.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
- shard-bmg: [FAIL][247] ([Intel XE#3321] / [Intel XE#3487]) -> [PASS][248] +1 other test pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][249] ([Intel XE#2316]) -> [PASS][250] +11 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp2:
- shard-bmg: [FAIL][251] ([Intel XE#2882]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][253] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][254] +1 other test pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [FAIL][255] ([Intel XE#886]) -> [PASS][256] +9 other tests pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-dg2-set2: [SKIP][257] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][258] +10 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-hdmi-a-3:
- shard-bmg: [DMESG-WARN][259] ([Intel XE#3468]) -> [PASS][260] +90 other tests pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-hdmi-a-3.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][261] ([Intel XE#2571]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][263] ([Intel XE#718]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [SKIP][265] ([Intel XE#2446]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-59:
- shard-bmg: [DMESG-WARN][267] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][268] +6 other tests pass
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][269] ([Intel XE#1435]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [FAIL][271] ([Intel XE#899]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][273] ([Intel XE#1499]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_vrr@negative-basic.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-3/igt@kms_vrr@negative-basic.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][275] ([Intel XE#1600]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_exec_basic@many-null-rebind:
- shard-bmg: [DMESG-WARN][277] ([Intel XE#1727]) -> [PASS][278] +2 other tests pass
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_exec_basic@many-null-rebind.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@xe_exec_basic@many-null-rebind.html
* igt@xe_exec_basic@once-rebind:
- shard-dg2-set2: [SKIP][279] ([Intel XE#1130]) -> [PASS][280] +161 other tests pass
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_exec_basic@once-rebind.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@xe_exec_basic@once-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue:
- shard-bmg: [DMESG-WARN][281] ([Intel XE#2705]) -> [PASS][282] +2 other tests pass
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue.html
* igt@xe_exec_reset@cm-close-execqueues-close-fd:
- shard-lnl: [FAIL][283] ([Intel XE#1081]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-lnl-4/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
- shard-bmg: [FAIL][285] ([Intel XE#1081]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-3/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [DMESG-WARN][287] ([Intel XE#3343]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-bmg: [DMESG-WARN][289] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [DMESG-WARN][291] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-dg2-set2: [DMESG-WARN][293] ([Intel XE#3467]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [TIMEOUT][295] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][296] +1 other test pass
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_live_ktest@xe_bo.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [DMESG-WARN][297] ([Intel XE#3467]) -> [PASS][298] +1 other test pass
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_module_load@reload-no-display.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@d3hot-basic:
- shard-dg2-set2: [DMESG-WARN][299] ([Intel XE#3468]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_pm@d3hot-basic.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@xe_pm@d3hot-basic.html
* igt@xe_pm@s2idle-basic-exec:
- shard-bmg: [DMESG-WARN][301] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_pm@s2idle-basic-exec.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [DMESG-FAIL][303] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_pm@s3-mocs.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [DMESG-WARN][305] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_pm@s3-vm-bind-prefetch.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@xe_pm@s3-vm-bind-prefetch.html
#### Warnings ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [FAIL][307] ([Intel XE#827]) -> [DMESG-FAIL][308] ([Intel XE#1727] / [Intel XE#3468])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3:
- shard-bmg: [FAIL][309] ([Intel XE#827]) -> [DMESG-WARN][310] ([Intel XE#3468])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg2-set2: [DMESG-WARN][311] ([Intel XE#3468]) -> [SKIP][312] ([Intel XE#2423] / [i915#2575])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_async_flips@async-flip-suspend-resume.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: [SKIP][313] ([Intel XE#873]) -> [SKIP][314] ([Intel XE#3007])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_async_flips@invalid-async-flip.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-bmg: [SKIP][315] ([Intel XE#2385]) -> [SKIP][316] ([Intel XE#3007])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][317] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][318] ([Intel XE#316]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][319] ([Intel XE#316]) -> [SKIP][320] ([Intel XE#2136]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][321] ([Intel XE#316]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2351])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-bmg: [SKIP][323] ([Intel XE#2327]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2231])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][325] ([Intel XE#2136]) -> [SKIP][326] ([Intel XE#316]) +3 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][327] ([Intel XE#1124]) -> [SKIP][328] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-bmg: [SKIP][329] ([Intel XE#1124]) -> [SKIP][330] ([Intel XE#2136] / [Intel XE#2231])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][331] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][332] ([Intel XE#607])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][333] ([Intel XE#610]) -> [SKIP][334] ([Intel XE#2136])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: [SKIP][335] ([Intel XE#1124]) -> [SKIP][336] ([Intel XE#2136]) +7 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][337] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][338] ([Intel XE#1124])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][339] ([Intel XE#2136]) -> [SKIP][340] ([Intel XE#1124]) +7 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][341] ([Intel XE#619]) -> [SKIP][342] ([Intel XE#2136] / [Intel XE#2351])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][343] ([Intel XE#2136]) -> [SKIP][344] ([Intel XE#610])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][345] ([Intel XE#367]) -> [SKIP][346] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][347] ([Intel XE#2423] / [i915#2575]) -> [SKIP][348] ([Intel XE#2191])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: [SKIP][349] ([Intel XE#2191]) -> [SKIP][350] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [SKIP][352] ([Intel XE#367]) +5 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][353] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][354] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][355] ([Intel XE#3442]) -> [SKIP][356] ([Intel XE#2136])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][357] ([Intel XE#2136]) -> [SKIP][358] ([Intel XE#3442])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][359] ([Intel XE#2136]) -> [SKIP][360] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][361] ([Intel XE#2887]) -> [SKIP][362] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
- shard-dg2-set2: [FAIL][363] ([Intel XE#616]) -> [SKIP][364] ([Intel XE#2136])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][365] ([Intel XE#2907]) -> [SKIP][366] ([Intel XE#2136]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][367] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][368] ([Intel XE#2136]) +16 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][369] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][370] ([Intel XE#2136] / [Intel XE#2351])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: [SKIP][371] ([Intel XE#2423] / [i915#2575]) -> [SKIP][372] ([Intel XE#306]) +2 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_chamelium_color@ctm-0-75.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: [SKIP][373] ([Intel XE#2325]) -> [SKIP][374] ([Intel XE#3007])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_chamelium_color@ctm-blue-to-red.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: [SKIP][375] ([Intel XE#306]) -> [SKIP][376] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_chamelium_color@ctm-green-to-red.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: [SKIP][377] ([Intel XE#2252]) -> [SKIP][378] ([Intel XE#3007]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][379] ([Intel XE#2423] / [i915#2575]) -> [SKIP][380] ([Intel XE#373]) +11 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][381] ([Intel XE#373]) -> [SKIP][382] ([Intel XE#2423] / [i915#2575]) +16 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: [FAIL][383] ([Intel XE#1178]) -> [SKIP][384] ([Intel XE#2423] / [i915#2575])
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_content_protection@atomic.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][385] ([Intel XE#307]) -> [SKIP][386] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][387] ([Intel XE#2341]) -> [FAIL][388] ([Intel XE#1178]) +1 other test fail
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_content_protection@srm.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-bmg: [DMESG-FAIL][389] ([Intel XE#3468]) -> [FAIL][390] ([Intel XE#1188]) +1 other test fail
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_content_protection@uevent.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-bmg: [SKIP][391] ([Intel XE#2320]) -> [SKIP][392] ([Intel XE#3007])
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][393] ([Intel XE#308]) -> [SKIP][394] ([Intel XE#2423] / [i915#2575])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][395] ([Intel XE#2423] / [i915#2575]) -> [SKIP][396] ([Intel XE#308]) +2 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2-set2: [SKIP][397] ([Intel XE#2423] / [i915#2575]) -> [SKIP][398] ([Intel XE#455]) +8 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_cursor_crc@cursor-random-32x10.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-dg2-set2: [INCOMPLETE][399] ([Intel XE#1727]) -> [SKIP][400] ([Intel XE#2423] / [i915#2575])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][401] ([Intel XE#3468]) -> [SKIP][402] ([Intel XE#3007])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [DMESG-WARN][403] ([Intel XE#3468]) -> [SKIP][404] ([Intel XE#2291])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][405] ([Intel XE#323]) -> [SKIP][406] ([Intel XE#2423] / [i915#2575])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [DMESG-FAIL][407] ([Intel XE#3468]) -> [FAIL][408] ([Intel XE#2141]) +2 other tests fail
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: [SKIP][409] ([Intel XE#2351]) -> [SKIP][410] ([Intel XE#455])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_dsc@dsc-basic.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_dsc@dsc-basic.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][411] ([Intel XE#1135]) -> [SKIP][412] ([Intel XE#2423] / [i915#2575])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_feature_discovery@psr1.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-bmg: [SKIP][413] ([Intel XE#2316]) -> [DMESG-WARN][414] ([Intel XE#3468])
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-bmg: [SKIP][415] ([Intel XE#2316]) -> [FAIL][416] ([Intel XE#2882])
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][417] ([Intel XE#301]) -> [SKIP][418] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-dg2-set2: [DMESG-WARN][419] ([Intel XE#1727]) -> [SKIP][420] ([Intel XE#2423] / [i915#2575])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@modeset-vs-vblank-race.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-dg2-set2: [SKIP][421] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][422] ([Intel XE#455])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][423] ([Intel XE#455]) -> [SKIP][424] ([Intel XE#2136]) +6 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][425] ([Intel XE#455]) -> [SKIP][426] ([Intel XE#2136] / [Intel XE#2351])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: [SKIP][427] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][428] ([Intel XE#2136] / [Intel XE#2231])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][429] ([Intel XE#2136]) -> [SKIP][430] ([Intel XE#455]) +3 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw:
- shard-dg2-set2: [SKIP][431] ([Intel XE#2136]) -> [SKIP][432] ([Intel XE#651]) +14 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][433] ([Intel XE#2312]) -> [SKIP][434] ([Intel XE#2311]) +24 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][435] ([Intel XE#2311]) -> [SKIP][436] ([Intel XE#2136] / [Intel XE#2231])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][437] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][438] ([Intel XE#651]) +10 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [DMESG-FAIL][439] ([Intel XE#3468]) -> [FAIL][440] ([Intel XE#2333]) +4 other tests fail
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-bmg: [FAIL][441] ([Intel XE#2333]) -> [SKIP][442] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-bmg: [FAIL][443] ([Intel XE#2333]) -> [INCOMPLETE][444] ([Intel XE#1727] / [Intel XE#3468])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [FAIL][445] ([Intel XE#2333]) -> [SKIP][446] ([Intel XE#2312]) +1 other test skip
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][447] ([Intel XE#2312]) -> [FAIL][448] ([Intel XE#2333]) +10 other tests fail
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][449] ([Intel XE#2312]) -> [DMESG-FAIL][450] ([Intel XE#3468]) +1 other test dmesg-fail
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [DMESG-FAIL][451] ([Intel XE#3468]) -> [SKIP][452] ([Intel XE#2312])
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [FAIL][453] ([Intel XE#2333]) -> [DMESG-FAIL][454] ([Intel XE#3468]) +2 other tests dmesg-fail
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][455] ([Intel XE#658]) -> [SKIP][456] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][457] ([Intel XE#651]) -> [SKIP][458] ([Intel XE#2136]) +24 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][459] ([Intel XE#2311]) -> [SKIP][460] ([Intel XE#2312]) +12 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][461] ([Intel XE#651]) -> [SKIP][462] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][463] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][464] ([Intel XE#658])
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#653]) +25 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][467] ([Intel XE#2313]) -> [SKIP][468] ([Intel XE#2312]) +9 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: [SKIP][469] ([Intel XE#2313]) -> [SKIP][470] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: [SKIP][471] ([Intel XE#653]) -> [SKIP][472] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: [INCOMPLETE][473] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468]) -> [FAIL][474] ([Intel XE#2333])
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2:
- shard-bmg: [INCOMPLETE][475] ([Intel XE#1727] / [Intel XE#3468]) -> [FAIL][476] ([Intel XE#2333])
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][477] ([Intel XE#2312]) -> [SKIP][478] ([Intel XE#2313]) +28 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][479] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][480] ([Intel XE#653]) +11 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: [SKIP][481] ([Intel XE#653]) -> [SKIP][482] ([Intel XE#2136]) +36 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_getfb@getfb-handle-closed:
- shard-dg2-set2: [SKIP][483] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][484] ([Intel XE#1727])
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_getfb@getfb-handle-closed.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_getfb@getfb-handle-closed.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][485] ([Intel XE#2423] / [i915#2575]) -> [SKIP][486] ([Intel XE#605])
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: [SKIP][487] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][488] ([Intel XE#3468])
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_hdr@bpc-switch-suspend.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][489] ([Intel XE#2925]) -> [SKIP][490] ([Intel XE#2136])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: [SKIP][491] ([Intel XE#2927]) -> [SKIP][492] ([Intel XE#2136])
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][493] ([Intel XE#2136]) -> [SKIP][494] ([Intel XE#346])
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][495] ([Intel XE#356]) -> [SKIP][496] ([Intel XE#2423] / [i915#2575])
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2-set2: [SKIP][497] ([Intel XE#455]) -> [SKIP][498] ([Intel XE#2423] / [i915#2575]) +11 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_panel_fitting@atomic-fastset.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [SKIP][499] ([Intel XE#2423] / [i915#2575]) -> [FAIL][500] ([Intel XE#361])
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-set2: [SKIP][501] ([Intel XE#2423] / [i915#2575]) -> [SKIP][502] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- shard-dg2-set2: [SKIP][503] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][504] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][505] ([Intel XE#870]) -> [SKIP][506] ([Intel XE#2136])
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_pm_backlight@fade.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: [SKIP][507] ([Intel XE#2136]) -> [SKIP][508] ([Intel XE#870])
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: [SKIP][509] ([Intel XE#870]) -> [SKIP][510] ([Intel XE#2136] / [Intel XE#2231])
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_pm_backlight@fade-with-suspend.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][511] ([Intel XE#2136]) -> [SKIP][512] ([Intel XE#1129])
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][513] ([Intel XE#3309]) -> [SKIP][514] ([Intel XE#2136])
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_pm_dc@dc5-retention-flops.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][515] ([Intel XE#908]) -> [SKIP][516] ([Intel XE#2136])
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2-set2: [FAIL][517] ([Intel XE#3527]) -> [SKIP][518] ([Intel XE#2136])
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_pm_lpsp@kms-lpsp.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-dg2-set2: [DMESG-WARN][519] ([Intel XE#3468]) -> [SKIP][520] ([Intel XE#2446])
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: [SKIP][521] ([Intel XE#2446]) -> [DMESG-WARN][522] ([Intel XE#1727] / [Intel XE#3468])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_pm_rpm@universal-planes:
- shard-dg2-set2: [SKIP][523] ([Intel XE#2446]) -> [DMESG-WARN][524] ([Intel XE#2042] / [Intel XE#3468])
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_pm_rpm@universal-planes.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_pm_rpm@universal-planes.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][525] ([Intel XE#2136]) -> [SKIP][526] ([Intel XE#1489]) +9 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-bmg: [SKIP][527] ([Intel XE#1489]) -> [SKIP][528] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][529] ([Intel XE#1489]) -> [SKIP][530] ([Intel XE#2136]) +14 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: [SKIP][531] ([Intel XE#2136]) -> [SKIP][532] ([Intel XE#1122])
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg2-set2: [SKIP][533] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][534] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-render.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][535] ([Intel XE#2136]) -> [SKIP][536] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][537] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][538] ([Intel XE#2136]) +13 other tests skip
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-primary-page-flip:
- shard-dg2-set2: [SKIP][539] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][540] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_psr@pr-primary-page-flip.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][541] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][542] ([Intel XE#2351])
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_psr@psr-sprite-plane-onoff.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][543] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][544] ([Intel XE#2939])
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][545] ([Intel XE#2423] / [i915#2575]) -> [SKIP][546] ([Intel XE#1127])
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][547] ([Intel XE#3414]) -> [SKIP][548] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][549] ([Intel XE#1127]) -> [SKIP][550] ([Intel XE#2423] / [i915#2575])
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][551] ([Intel XE#2423] / [i915#2575]) -> [SKIP][552] ([Intel XE#3414]) +1 other test skip
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [DMESG-FAIL][553] ([Intel XE#1727]) -> [SKIP][554] ([Intel XE#2423] / [i915#2575])
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][555] ([Intel XE#2509]) -> [SKIP][556] ([Intel XE#2426])
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2-set2: [SKIP][557] ([Intel XE#756]) -> [SKIP][558] ([Intel XE#2423] / [i915#2575])
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_writeback@writeback-invalid-parameters.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@kms_writeback@writeback-invalid-parameters.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: [SKIP][559] ([Intel XE#1126]) -> [SKIP][560] ([Intel XE#1130])
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x3fff.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][561] ([Intel XE#2905]) -> [SKIP][562] ([Intel XE#1130]) +13 other tests skip
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_eudebug@basic-close.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@exec-queue-placements:
- shard-bmg: [SKIP][563] ([Intel XE#2905]) -> [SKIP][564] ([Intel XE#1130]) +1 other test skip
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_eudebug@exec-queue-placements.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_eudebug@exec-queue-placements.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [INCOMPLETE][565] ([Intel XE#1473]) -> [SKIP][566] ([Intel XE#1130])
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html
- shard-bmg: [INCOMPLETE][567] ([Intel XE#1473] / [Intel XE#3468]) -> [TIMEOUT][568] ([Intel XE#1473])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][569] ([Intel XE#1473]) -> [SKIP][570] ([Intel XE#1130])
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: [SKIP][571] ([Intel XE#2322]) -> [SKIP][572] ([Intel XE#1130])
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: [SKIP][573] ([Intel XE#1130]) -> [SKIP][574] ([Intel XE#288]) +26 other tests skip
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: [SKIP][575] ([Intel XE#288]) -> [SKIP][576] ([Intel XE#1130]) +33 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][577] ([Intel XE#2360]) -> [SKIP][578] ([Intel XE#1130])
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: [SKIP][579] ([Intel XE#1130]) -> [SKIP][580] ([Intel XE#2905]) +7 other tests skip
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][581] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][582] ([Intel XE#3467])
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
- shard-dg2-set2: [DMESG-WARN][583] ([Intel XE#3467]) -> [SKIP][584] ([Intel XE#1130]) +1 other test skip
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/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-bmg: [DMESG-WARN][585] -> [DMESG-WARN][586] ([Intel XE#3467] / [Intel XE#3468])
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-dg2-set2: [DMESG-WARN][587] ([Intel XE#3343]) -> [SKIP][588] ([Intel XE#1130]) +1 other test skip
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [DMESG-WARN][589] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][590] ([Intel XE#3343])
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [FAIL][591] ([Intel XE#3499]) -> [DMESG-FAIL][592] ([Intel XE#3467])
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [DMESG-FAIL][593] ([Intel XE#3467]) -> [FAIL][594] ([Intel XE#3499])
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: [FAIL][595] ([Intel XE#3499]) -> [DMESG-FAIL][596] ([Intel XE#3467] / [Intel XE#3468])
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-4/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-bmg: [FAIL][597] ([Intel XE#3499]) -> [SKIP][598] ([Intel XE#1130])
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [DMESG-WARN][599] ([Intel XE#3468]) -> [DMESG-WARN][600] ([Intel XE#3467])
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-dg2-set2: [SKIP][601] ([Intel XE#1130]) -> [DMESG-WARN][602] ([Intel XE#3467]) +1 other test dmesg-warn
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: [SKIP][603] ([Intel XE#2833]) -> [SKIP][604] ([Intel XE#1192])
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_oa@blocking:
- shard-bmg: [DMESG-WARN][605] ([Intel XE#3468]) -> [SKIP][606] ([Intel XE#1130]) +1 other test skip
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_oa@blocking.html
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_oa@blocking.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][607] ([Intel XE#1130]) -> [SKIP][608] ([Intel XE#3573]) +6 other tests skip
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_oa@closed-fd-and-unmapped-access.html
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: [SKIP][609] ([Intel XE#3573]) -> [SKIP][610] ([Intel XE#1130]) +9 other tests skip
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_oa@non-privileged-map-oa-buffer.html
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][611] ([Intel XE#1130]) -> [SKIP][612] ([Intel XE#1337])
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][613] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][614] ([Intel XE#1130])
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_pm@d3cold-basic.html
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: [SKIP][615] ([Intel XE#1130]) -> [SKIP][616] ([Intel XE#2284] / [Intel XE#366])
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [DMESG-WARN][617] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][618] ([Intel XE#1130]) +1 other test skip
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_pm@s2idle-basic-exec.html
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][619] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][620] ([Intel XE#1130])
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_pm@s3-vm-bind-prefetch.html
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm_residency@cpg-basic:
- shard-dg2-set2: [SKIP][621] ([Intel XE#1130]) -> [DMESG-WARN][622] ([Intel XE#1727] / [Intel XE#3468])
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_pm_residency@cpg-basic.html
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-dg2-set2: [SKIP][623] ([Intel XE#1130]) -> [DMESG-WARN][624] ([Intel XE#1727] / [Intel XE#3088] / [Intel XE#3468])
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_pm_residency@gt-c6-freeze.html
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-dg2-set2: [DMESG-WARN][625] ([Intel XE#1727]) -> [SKIP][626] ([Intel XE#1130])
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_pm_residency@idle-residency-on-exec.html
[626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_pm_residency@idle-residency-on-exec.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][627] ([Intel XE#944]) -> [SKIP][628] ([Intel XE#1130]) +5 other tests skip
[627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_query@multigpu-query-engines.html
[628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-466/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: [SKIP][629] ([Intel XE#1130]) -> [SKIP][630] ([Intel XE#944]) +3 other tests skip
[629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html
[630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-436/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_vm@large-userptr-split-binds-268435456:
- shard-dg2-set2: [SKIP][631] ([Intel XE#1130]) -> [DMESG-WARN][632] ([Intel XE#1727])
[631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_vm@large-userptr-split-binds-268435456.html
[632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-463/igt@xe_vm@large-userptr-split-binds-268435456.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [DMESG-WARN][633] ([Intel XE#2919]) -> [SKIP][634] ([Intel XE#1130])
[633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_wedged@basic-wedged.html
[634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-5/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [SKIP][635] ([Intel XE#1130]) -> [ABORT][636] ([Intel XE#3421])
[635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html
[636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [ABORT][637] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][638] ([Intel XE#1130])
[637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_wedged@wedged-mode-toggle.html
[638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[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#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[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#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[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#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#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
[Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[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#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[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#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521
[Intel XE#3527]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[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#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#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[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#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8123 -> IGTPW_12185
* Linux: xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a -> xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7
IGTPW_12185: 12185
IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a: a381faddbfc974e7bd57efe953a738415afccd6a
xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: 4d723d57180a3aafc1a510bc08ef42f4b03671a7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12185/index.html
[-- Attachment #2: Type: text/html, Size: 192111 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v4 4/4] lib/gpgpu_shader: add support for Xe3 platforms
2024-11-25 7:31 ` [PATCH v4 4/4] lib/gpgpu_shader: add support for Xe3 platforms Andrzej Hajda
@ 2024-11-25 14:08 ` Grzegorzek, Dominik
0 siblings, 0 replies; 10+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-25 14:08 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Hajda, Andrzej
Cc: Kempczynski, Zbigniew, Mun, Gwan-gyeong, Manszewski, Christoph,
kamil.konieczny@linux.intel.com
On Mon, 2024-11-25 at 08:31 +0100, Andrzej Hajda wrote:
> > Xe3 platforms disallow indirect load/store addressing. Surface descriptor
> > must be passed in 2DBlock payload. Use for it inline data passed from
> > thread dispatcher.
To be clear, mention that system routine is the entity which adds
this constrain.
> >
> > v4:
> > - moved gpgpu_alloc_gpu_addr changes to previous patch (Dominik)
> >
> > Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
> > ---
> > lib/iga64_generated_codes.c | 13 ++++++++-----
> > lib/iga64_macros.h | 37 +++++++++++++++++++++++++++++++++----
> > 2 files changed, 41 insertions(+), 9 deletions(-)
> >
> > diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c
> > index 04015b0b6d29..a12135e7dbfd 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 da66be3cf9bec819a61429de75943011
> > +#define MD5_SUM_IGA64_ASMS 7b1db60d1de46cf35666f2a7f51e8fc2
> >
> > struct iga64_template const iga64_code_gpgpu_fill[] = {
> > { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) {
> > @@ -80,10 +80,11 @@ struct iga64_template const iga64_code_gpgpu_fill[] = {
> > };
> >
> > 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,
> > @@ -484,13 +485,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,
> > @@ -612,14 +614,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..f82785610207 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,28 +42,50 @@
> > (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 ;\
> > (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)
> > +
nit: comparing to other definitions these 4 newlines looks extra. Keep styling same.
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Patch no longer applies. I've tested it by reseting few top commits, so probably this needs resend
anyway.
Regards,
Dominik
> > +#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
> >
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-11-25 14:08 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-25 7:31 [PATCH v4 0/4] lib/gpgpu_shader: simplify load/store shaders and add Xe3 support Andrzej Hajda
2024-11-25 7:31 ` [PATCH v4 1/4] scripts/generate_iga64_codes: add iga64_macros.h to checksum calculation Andrzej Hajda
2024-11-25 7:31 ` [PATCH v4 2/4] lib/gpgpu_shader: simplify load/store shaders Andrzej Hajda
2024-11-25 7:31 ` [PATCH v4 3/4] lib/gpgpu_shader: pass surface desription to shaders via inline data Andrzej Hajda
2024-11-25 8:50 ` Grzegorzek, Dominik
2024-11-25 7:31 ` [PATCH v4 4/4] lib/gpgpu_shader: add support for Xe3 platforms Andrzej Hajda
2024-11-25 14:08 ` Grzegorzek, Dominik
2024-11-25 9:19 ` ✓ Xe.CI.BAT: success for lib/gpgpu_shader: simplify load/store shaders and add Xe3 support (rev2) Patchwork
2024-11-25 9:29 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-25 10:40 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox