* [igt-dev] [PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx
@ 2023-10-27 1:48 Jesse Zhang
2023-10-27 2:33 ` [igt-dev] ✓ CI.xeBAT: success for tests/amd_security: add secure write test for gfx (rev3) Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jesse Zhang @ 2023-10-27 1:48 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
To verify writes in Trusted Memory Zone(TMZ),
add secure writing and verify the results of gfx.
V2:
- Improve description and coding style.
Encoding using helpers for high and low 32 bits (Kamil)
- Add i-g-t for the subject and
replace the "_" with spaces in igt_describe(Kamil)
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: Luben Tuikov <luben.tuikov@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Christian Koenig <christian.koenig@amd.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
Signed-off-by: Tim Huang <tim.huang@amd.com>
---
lib/amdgpu/amd_command_submission.c | 9 +-
lib/amdgpu/amd_ip_blocks.c | 173 ++++++++++++++++------------
lib/amdgpu/amd_ip_blocks.h | 1 +
tests/amdgpu/amd_security.c | 13 ++-
4 files changed, 111 insertions(+), 85 deletions(-)
diff --git a/lib/amdgpu/amd_command_submission.c b/lib/amdgpu/amd_command_submission.c
index b674ba640..ddcf3d96e 100644
--- a/lib/amdgpu/amd_command_submission.c
+++ b/lib/amdgpu/amd_command_submission.c
@@ -165,20 +165,19 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
r = ip_block->funcs->compare(ip_block->funcs, ring_context, 1);
igt_assert_eq(r, 0);
} else if (ip_block->type == AMDGPU_HW_IP_GFX) {
- ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
-
+ ip_block->funcs->atomic(ip_block->funcs, ring_context, &ring_context->pm4_dw);
amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
-
} else if (ip_block->type == AMDGPU_HW_IP_DMA) {
/* restore the bo_cpu to compare */
ring_context->bo_cpu_origin = ring_context->bo_cpu[0];
- ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
+ ip_block->funcs->atomic(ip_block->funcs, ring_context, &ring_context->pm4_dw);
amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
+ igt_assert_neq(ring_context->bo_cpu[0], ring_context->bo_cpu_origin);
/* restore again, here dest_data should be */
ring_context->bo_cpu_origin = ring_context->bo_cpu[0];
- ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
+ ip_block->funcs->atomic(ip_block->funcs, ring_context, &ring_context->pm4_dw);
amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* here bo_cpu[0] should be unchanged, still is 0x12345678, otherwise failed*/
diff --git a/lib/amdgpu/amd_ip_blocks.c b/lib/amdgpu/amd_ip_blocks.c
index 96130ccd5..81db27817 100644
--- a/lib/amdgpu/amd_ip_blocks.c
+++ b/lib/amdgpu/amd_ip_blocks.c
@@ -18,6 +18,7 @@
#include "amdgpu_asic_addr.h"
#include "amd_family.h"
#include "amd_gfx_v8_0.h"
+#include "ioctl_wrappers.h"
/*
* SDMA functions:
@@ -34,48 +35,58 @@ sdma_ring_write_linear(const struct amdgpu_ip_funcs *func,
i = 0;
j = 0;
- if (ring_context->secure == false) {
- if (func->family_id == AMDGPU_FAMILY_SI)
- ring_context->pm4[i++] = SDMA_PACKET_SI(SDMA_OPCODE_WRITE, 0, 0, 0,
- ring_context->write_length);
- else
- ring_context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_WRITE,
- SDMA_WRITE_SUB_OPCODE_LINEAR,
- ring_context->secure ? SDMA_ATOMIC_TMZ(1) : 0);
+ if (func->family_id == AMDGPU_FAMILY_SI)
+ ring_context->pm4[i++] = SDMA_PACKET_SI(SDMA_OPCODE_WRITE, 0, 0, 0,
+ ring_context->write_length);
+ else
+ ring_context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_WRITE,
+ SDMA_WRITE_SUB_OPCODE_LINEAR,
+ ring_context->secure ? SDMA_ATOMIC_TMZ(1) : 0);
+
+ ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
+ ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
+ if (func->family_id >= AMDGPU_FAMILY_AI)
+ ring_context->pm4[i++] = ring_context->write_length - 1;
+ else
+ ring_context->pm4[i++] = ring_context->write_length;
- ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
- ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
- if (func->family_id >= AMDGPU_FAMILY_AI)
- ring_context->pm4[i++] = ring_context->write_length - 1;
- else
- ring_context->pm4[i++] = ring_context->write_length;
+ while (j++ < ring_context->write_length)
+ ring_context->pm4[i++] = func->deadbeaf;
- while (j++ < ring_context->write_length)
- ring_context->pm4[i++] = func->deadbeaf;
- } else {
- memset(ring_context->pm4, 0, ring_context->pm4_size * sizeof(uint32_t));
+ *pm4_dw = i;
+
+ return 0;
+}
+
+static int
+sdma_ring_atomic(const struct amdgpu_ip_funcs *func,
+ const struct amdgpu_ring_context *ring_context,
+ uint32_t *pm4_dw)
+{
+ uint32_t i = 0;
+
+ memset(ring_context->pm4, 0, ring_context->pm4_size * sizeof(uint32_t));
/* atomic opcode for 32b w/ RTN and ATOMIC_SWAPCMP_RTN
* loop, 1-loop_until_compare_satisfied.
* single_pass_atomic, 0-lru
*/
- ring_context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_ATOMIC,
- 0,
- SDMA_ATOMIC_LOOP(1) |
- SDMA_ATOMIC_TMZ(1) |
- SDMA_ATOMIC_OPCODE(TC_OP_ATOMIC_CMPSWAP_RTN_32));
- ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
- ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
- ring_context->pm4[i++] = 0x12345678;
- ring_context->pm4[i++] = 0x0;
- ring_context->pm4[i++] = func->deadbeaf;
- ring_context->pm4[i++] = 0x0;
- ring_context->pm4[i++] = 0x100;
- }
-
+ ring_context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_ATOMIC,
+ 0,
+ SDMA_ATOMIC_LOOP(1) |
+ (ring_context->secure ? SDMA_ATOMIC_TMZ(1) : SDMA_ATOMIC_TMZ(0)) |
+ SDMA_ATOMIC_OPCODE(TC_OP_ATOMIC_CMPSWAP_RTN_32));
+ ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
+ ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
+ ring_context->pm4[i++] = 0x12345678;
+ ring_context->pm4[i++] = 0x0;
+ ring_context->pm4[i++] = func->deadbeaf;
+ ring_context->pm4[i++] = 0x0;
+ ring_context->pm4[i++] = 0x100;
*pm4_dw = i;
return 0;
+
}
static int
@@ -95,8 +106,8 @@ sdma_ring_const_fill(const struct amdgpu_ip_funcs *func,
} else {
context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_CONSTANT_FILL, 0,
SDMA_CONSTANT_FILL_EXTRA_SIZE(2));
- context->pm4[i++] = 0xffffffff & context->bo_mc;
- context->pm4[i++] = (0xffffffff00000000 & context->bo_mc) >> 32;
+ context->pm4[i++] = lower_32_bits(context->bo_mc);
+ context->pm4[i++] = upper_32_bits(context->bo_mc);
context->pm4[i++] = func->deadbeaf;
if (func->family_id >= AMDGPU_FAMILY_AI)
@@ -121,10 +132,10 @@ sdma_ring_copy_linear(const struct amdgpu_ip_funcs *func,
context->pm4[i++] = SDMA_PACKET_SI(SDMA_OPCODE_COPY_SI,
0, 0, 0,
context->write_length);
- context->pm4[i++] = 0xffffffff & context->bo_mc;
- context->pm4[i++] = (0xffffffff00000000 & context->bo_mc) >> 32;
- context->pm4[i++] = 0xffffffff & context->bo_mc2;
- context->pm4[i++] = (0xffffffff00000000 & context->bo_mc2) >> 32;
+ context->pm4[i++] = lower_32_bits(context->bo_mc);
+ context->pm4[i++] = upper_32_bits(context->bo_mc);
+ context->pm4[i++] = lower_32_bits(context->bo_mc2);
+ context->pm4[i++] = upper_32_bits(context->bo_mc2);
} else {
context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_COPY,
SDMA_COPY_SUB_OPCODE_LINEAR,
@@ -134,10 +145,10 @@ sdma_ring_copy_linear(const struct amdgpu_ip_funcs *func,
else
context->pm4[i++] = context->write_length;
context->pm4[i++] = 0;
- context->pm4[i++] = 0xffffffff & context->bo_mc;
- context->pm4[i++] = (0xffffffff00000000 & context->bo_mc) >> 32;
- context->pm4[i++] = 0xffffffff & context->bo_mc2;
- context->pm4[i++] = (0xffffffff00000000 & context->bo_mc2) >> 32;
+ context->pm4[i++] = lower_32_bits(context->bo_mc);
+ context->pm4[i++] = upper_32_bits(context->bo_mc);
+ context->pm4[i++] = lower_32_bits(context->bo_mc2);
+ context->pm4[i++] = upper_32_bits(context->bo_mc2);
}
*pm4_dw = i;
@@ -163,37 +174,45 @@ gfx_ring_write_linear(const struct amdgpu_ip_funcs *func,
i = 0;
j = 0;
- if (ring_context->secure == false) {
- ring_context->pm4[i++] = PACKET3(PACKET3_WRITE_DATA, 2 + ring_context->write_length);
- ring_context->pm4[i++] = WRITE_DATA_DST_SEL(5) | WR_CONFIRM;
- ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
- ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
- while (j++ < ring_context->write_length)
- ring_context->pm4[i++] = func->deadbeaf;
- } else {
- memset(ring_context->pm4, 0, ring_context->pm4_size * sizeof(uint32_t));
+ ring_context->pm4[i++] = PACKET3(PACKET3_WRITE_DATA, 2 + ring_context->write_length);
+ ring_context->pm4[i++] = WRITE_DATA_DST_SEL(5) | WR_CONFIRM;
+ ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
+ ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
+ while (j++ < ring_context->write_length)
+ ring_context->pm4[i++] = func->deadbeaf;
+
+ *pm4_dw = i;
+ return 0;
+}
+
+static int
+gfx_ring_atomic(const struct amdgpu_ip_funcs *func,
+ const struct amdgpu_ring_context *ring_context,
+ uint32_t *pm4_dw)
+{
+ uint32_t i = 0;
+
+ memset(ring_context->pm4, 0, ring_context->pm4_size * sizeof(uint32_t));
ring_context->pm4[i++] = PACKET3(PACKET3_ATOMIC_MEM, 7);
- /* atomic opcode for 32b w/ RTN and ATOMIC_SWAPCMP_RTN
- * command, 1-loop_until_compare_satisfied.
- * single_pass_atomic, 0-lru
- * engine_sel, 0-micro_engine
- */
- ring_context->pm4[i++] = (TC_OP_ATOMIC_CMPSWAP_RTN_32 |
- ATOMIC_MEM_COMMAND(1) |
- ATOMIC_MEM_CACHEPOLICAY(0) |
- ATOMIC_MEM_ENGINESEL(0));
- ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
- ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
- ring_context->pm4[i++] = 0x12345678;
- ring_context->pm4[i++] = 0x0;
- ring_context->pm4[i++] = 0xdeadbeaf;
- ring_context->pm4[i++] = 0x0;
- ring_context->pm4[i++] = 0x100;
- }
+ /* atomic opcode for 32b w/ RTN and ATOMIC_SWAPCMP_RTN
+ * command, 1-loop_until_compare_satisfied.
+ * single_pass_atomic, 0-lru
+ * engine_sel, 0-micro_engine
+ */
+ ring_context->pm4[i++] = (TC_OP_ATOMIC_CMPSWAP_RTN_32 |
+ ATOMIC_MEM_COMMAND(1) |
+ ATOMIC_MEM_CACHEPOLICAY(0) |
+ ATOMIC_MEM_ENGINESEL(0));
+ ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
+ ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
+ ring_context->pm4[i++] = 0x12345678;
+ ring_context->pm4[i++] = 0x0;
+ ring_context->pm4[i++] = 0xdeadbeaf;
+ ring_context->pm4[i++] = 0x0;
+ ring_context->pm4[i++] = 0x100;
*pm4_dw = i;
-
return 0;
}
@@ -212,8 +231,8 @@ gfx_ring_const_fill(const struct amdgpu_ip_funcs *func,
PACKET3_DMA_DATA_SI_DST_SEL(0) |
PACKET3_DMA_DATA_SI_SRC_SEL(2) |
PACKET3_DMA_DATA_SI_CP_SYNC;
- ring_context->pm4[i++] = 0xffffffff & ring_context->bo_mc;
- ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
+ ring_context->pm4[i++] = lower_32_bits(ring_context->bo_mc);
+ ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
ring_context->pm4[i++] = ring_context->write_length;
} else {
ring_context->pm4[i++] = PACKET3(PACKET3_DMA_DATA, 5);
@@ -224,7 +243,7 @@ gfx_ring_const_fill(const struct amdgpu_ip_funcs *func,
ring_context->pm4[i++] = func->deadbeaf;
ring_context->pm4[i++] = 0;
ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
- ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
+ ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
ring_context->pm4[i++] = ring_context->write_length;
}
*pm4_dw = i;
@@ -247,9 +266,9 @@ gfx_ring_copy_linear(const struct amdgpu_ip_funcs *func,
PACKET3_DMA_DATA_SI_DST_SEL(0) |
PACKET3_DMA_DATA_SI_SRC_SEL(0) |
PACKET3_DMA_DATA_SI_CP_SYNC |
- (0xffff00000000 & context->bo_mc) >> 32;
+ upper_32_bits(context->bo_mc);
context->pm4[i++] = 0xfffffffc & context->bo_mc2;
- context->pm4[i++] = (0xffffffff00000000 & context->bo_mc2) >> 32;
+ context->pm4[i++] = upper_32_bits(context->bo_mc2);
context->pm4[i++] = context->write_length;
} else {
context->pm4[i++] = PACKET3(PACKET3_DMA_DATA, 5);
@@ -258,9 +277,9 @@ gfx_ring_copy_linear(const struct amdgpu_ip_funcs *func,
PACKET3_DMA_DATA_SRC_SEL(0) |
PACKET3_DMA_DATA_CP_SYNC;
context->pm4[i++] = 0xfffffffc & context->bo_mc;
- context->pm4[i++] = (0xffffffff00000000 & context->bo_mc) >> 32;
+ context->pm4[i++] = upper_32_bits(context->bo_mc);
context->pm4[i++] = 0xfffffffc & context->bo_mc2;
- context->pm4[i++] = (0xffffffff00000000 & context->bo_mc2) >> 32;
+ context->pm4[i++] = upper_32_bits(context->bo_mc2);
context->pm4[i++] = context->write_length;
}
@@ -311,6 +330,7 @@ static struct amdgpu_ip_funcs gfx_v8_x_ip_funcs = {
.deadbeaf = 0xdeadbeaf,
.pattern = 0xaaaaaaaa,
.write_linear = gfx_ring_write_linear,
+ .atomic = gfx_ring_atomic,
.const_fill = gfx_ring_const_fill,
.copy_linear = gfx_ring_copy_linear,
.compare = x_compare,
@@ -325,6 +345,7 @@ static struct amdgpu_ip_funcs sdma_v3_x_ip_funcs = {
.deadbeaf = 0xdeadbeaf,
.pattern = 0xaaaaaaaa,
.write_linear = sdma_ring_write_linear,
+ .atomic = sdma_ring_atomic,
.const_fill = sdma_ring_const_fill,
.copy_linear = sdma_ring_copy_linear,
.compare = x_compare,
diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h
index 7f6fb3fb4..09a5e61f9 100644
--- a/lib/amdgpu/amd_ip_blocks.h
+++ b/lib/amdgpu/amd_ip_blocks.h
@@ -70,6 +70,7 @@ struct amdgpu_ip_funcs {
uint32_t pattern;
/* functions */
int (*write_linear)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, uint32_t *pm4_dw);
+ int (*atomic)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, uint32_t *pm4_dw);
int (*const_fill)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, uint32_t *pm4_dw);
int (*copy_linear)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, uint32_t *pm4_dw);
int (*compare)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, int div);
diff --git a/tests/amdgpu/amd_security.c b/tests/amdgpu/amd_security.c
index 1a7eba9eb..d1146a7ce 100644
--- a/tests/amdgpu/amd_security.c
+++ b/tests/amdgpu/amd_security.c
@@ -351,17 +351,22 @@ igt_main
igt_skip_on(!is_security_tests_enable(device, &gpu_info, major, minor));
}
- igt_describe("amdgpu_security_alloc_buf_test");
+ igt_describe("amdgpu security alloc buf test");
igt_subtest("amdgpu-security-alloc-buf-test")
amdgpu_security_alloc_buf_test(device);
- igt_describe("amdgpu_command_submission_write_linear_helper");
- igt_subtest("write-linear-helper-secure")
+ igt_describe("amdgpu sdma command submission write linear helper");
+ igt_subtest("sdma-write-linear-helper-secure")
amdgpu_command_submission_write_linear_helper(device,
get_ip_block(device, AMDGPU_HW_IP_DMA), is_secure);
+ igt_describe("amdgpu gfx command submission write linear helper");
+ igt_subtest("gfx-write-linear-helper-secure")
+ amdgpu_command_submission_write_linear_helper(device,
+ get_ip_block(device, AMDGPU_HW_IP_GFX), is_secure);
+
/* dynamic test based on sdma_info.available rings */
- igt_describe("amdgpu_secure_bounce");
+ igt_describe("amdgpu secure bounce");
igt_subtest("amdgpu-secure-bounce")
amdgpu_secure_bounce(device, fd, &sdma_info, get_ip_block(device,
AMDGPU_HW_IP_DMA), is_secure);
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/amd_security: add secure write test for gfx (rev3)
2023-10-27 1:48 [igt-dev] [PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx Jesse Zhang
@ 2023-10-27 2:33 ` Patchwork
2023-10-27 2:35 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-10-27 2:33 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2326 bytes --]
== Series Details ==
Series: tests/amd_security: add secure write test for gfx (rev3)
URL : https://patchwork.freedesktop.org/series/125534/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7559_BAT -> XEIGTPW_10077_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10077_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#692])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7559/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10077/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
#### Possible fixes ####
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- bat-adlp-7: [FAIL][3] ([Intel XE#692]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7559/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10077/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[Intel XE#692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/692
Build changes
-------------
* IGT: IGT_7559 -> IGTPW_10077
* Linux: xe-449-4c7ed0ef2d582ae173d9a2062ee6f7360d1aa1df -> xe-452-76d7314ce7ceb58ee595a0ae1ba45bc99b9e277d
IGTPW_10077: 10077
IGT_7559: 62ac3d2ddb6005b16df00a36565779848c1390c9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-449-4c7ed0ef2d582ae173d9a2062ee6f7360d1aa1df: 4c7ed0ef2d582ae173d9a2062ee6f7360d1aa1df
xe-452-76d7314ce7ceb58ee595a0ae1ba45bc99b9e277d: 76d7314ce7ceb58ee595a0ae1ba45bc99b9e277d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10077/index.html
[-- Attachment #2: Type: text/html, Size: 2936 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/amd_security: add secure write test for gfx (rev3)
2023-10-27 1:48 [igt-dev] [PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx Jesse Zhang
2023-10-27 2:33 ` [igt-dev] ✓ CI.xeBAT: success for tests/amd_security: add secure write test for gfx (rev3) Patchwork
@ 2023-10-27 2:35 ` Patchwork
2023-10-28 6:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-10-30 0:45 ` [igt-dev] [PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx vitaly prosyak
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-10-27 2:35 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5184 bytes --]
== Series Details ==
Series: tests/amd_security: add secure write test for gfx (rev3)
URL : https://patchwork.freedesktop.org/series/125534/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13798 -> IGTPW_10077
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/index.html
Participating hosts (40 -> 39)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10077 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adlp-11: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/bat-adlp-11/igt@debugfs_test@basic-hwmon.html
* igt@gem_tiled_pread_basic:
- bat-adlp-11: NOTRUN -> [SKIP][2] ([i915#3282])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/bat-adlp-11/igt@gem_tiled_pread_basic.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- fi-hsw-4770: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#5190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adlp-11: NOTRUN -> [SKIP][4] ([i915#4103] / [i915#5608]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adlp-11: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#3840])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/bat-adlp-11/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-adlp-11: NOTRUN -> [SKIP][6] ([i915#4093]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/bat-adlp-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- bat-adlp-11: NOTRUN -> [SKIP][7] ([i915#4369])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/bat-adlp-11/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1:
- fi-hsw-4770: NOTRUN -> [SKIP][8] ([fdo#109271]) +12 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1:
- fi-hsw-4770: NOTRUN -> [DMESG-WARN][9] ([i915#8841]) +6 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html
* igt@kms_psr@sprite_plane_onoff:
- fi-hsw-4770: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#1072]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-kbl-soraka: [DMESG-FAIL][11] ([i915#5334] / [i915#7872]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7559 -> IGTPW_10077
CI-20190529: 20190529
CI_DRM_13798: 3f4b0a119e94422edf2fb402ad278266a78b10b9 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10077: 10077
IGT_7559: 62ac3d2ddb6005b16df00a36565779848c1390c9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/index.html
[-- Attachment #2: Type: text/html, Size: 6043 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/amd_security: add secure write test for gfx (rev3)
2023-10-27 1:48 [igt-dev] [PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx Jesse Zhang
2023-10-27 2:33 ` [igt-dev] ✓ CI.xeBAT: success for tests/amd_security: add secure write test for gfx (rev3) Patchwork
2023-10-27 2:35 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
@ 2023-10-28 6:34 ` Patchwork
2023-10-30 0:45 ` [igt-dev] [PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx vitaly prosyak
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-10-28 6:34 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100273 bytes --]
== Series Details ==
Series: tests/amd_security: add secure write test for gfx (rev3)
URL : https://patchwork.freedesktop.org/series/125534/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13798_full -> IGTPW_10077_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10077_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10077_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10077/index.html
Participating hosts (12 -> 12)
------------------------------
Additional (1): shard-tglu0
Missing (1): shard-rkl0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10077_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_endless@dispatch@bcs0:
- shard-rkl: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@gem_exec_endless@dispatch@bcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][3] +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_color@deep-color.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted:
- shard-rkl: NOTRUN -> [FAIL][4] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted:
- shard-tglu: NOTRUN -> [FAIL][5] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-7/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
- shard-apl: NOTRUN -> [FAIL][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-apl2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
* igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
- shard-dg1: NOTRUN -> [FAIL][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-12/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
Known issues
------------
Here are the changes found in IGTPW_10077_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][9] ([i915#6122])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@api_intel_bb@render-ccs.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#7701])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-17/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +11 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][13] -> [FAIL][14] ([i915#7742])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8414])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-8/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][18] -> [FAIL][19] ([i915#6268])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@engines-hostile@vcs0:
- shard-mtlp: [PASS][20] -> [FAIL][21] ([i915#2410]) +3 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-4/igt@gem_ctx_persistence@engines-hostile@vcs0.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-15/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@legacy-engines-hang@blt:
- shard-rkl: [PASS][23] -> [SKIP][24] ([i915#6252])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-1/igt@gem_ctx_persistence@legacy-engines-hang@blt.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#1099])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed-process.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@hog:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-2/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][32] ([i915#2842])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-glk5/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][33] ([i915#2842])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][34] -> [FAIL][35] ([i915#2842])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][36] -> [FAIL][37] ([i915#2842]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-rkl: [PASS][41] -> [SKIP][42] ([fdo#109313])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: [PASS][45] -> [SKIP][46] ([i915#3281]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@gem_exec_reloc@basic-wc.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +16 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-4/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_schedule@preemptive-hang@vcs0:
- shard-mtlp: [PASS][49] -> [FAIL][50] ([i915#9051])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-5/igt@gem_exec_schedule@preemptive-hang@vcs0.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: [PASS][51] -> [SKIP][52] ([i915#7276])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4860])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-8/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-apl: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-apl1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#4613])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-glk9/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][60] -> [TIMEOUT][61] ([i915#5493])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [PASS][62] -> [TIMEOUT][63] ([i915#5493])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#8289])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#284])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@gem_media_vme.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +18 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4083]) +9 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-2/igt@gem_mmap_wc@write.html
* igt@gem_pread@exhaustion:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +7 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-2/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#4270])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-7/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_readwrite@new-obj:
- shard-rkl: [PASS][77] -> [SKIP][78] ([i915#3282])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@gem_readwrite@new-obj.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#768]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4879])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@gem_unfence_active_buffers.html
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4879])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][85] ([fdo#110542])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][89] ([fdo#109289]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][90] ([fdo#109289])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-3/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-2/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#2527]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-rkl: [PASS][94] -> [SKIP][95] ([i915#2527])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@gen9_exec_parse@cmd-crossing-page.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4881])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@i915_fb_tiling.html
* igt@i915_hangman@detector@ccs0:
- shard-mtlp: [PASS][97] -> [ABORT][98] ([i915#9414])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-8/igt@i915_hangman@detector@ccs0.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@i915_hangman@detector@ccs0.html
* igt@i915_hangman@detector@vcs0:
- shard-mtlp: [PASS][99] -> [FAIL][100] ([i915#8456]) +2 other tests fail
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-8/igt@i915_hangman@detector@vcs0.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@i915_hangman@detector@vcs0.html
* igt@i915_hangman@gt-engine-hang@vcs0:
- shard-mtlp: [PASS][101] -> [FAIL][102] ([i915#7069]) +1 other test fail
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-7/igt@i915_hangman@gt-engine-hang@vcs0.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-5/igt@i915_hangman@gt-engine-hang@vcs0.html
* igt@i915_module_load@load:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#6227])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: NOTRUN -> [DMESG-WARN][104] ([i915#9559])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-dg1: [PASS][105] -> [FAIL][106] ([i915#3591])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-tglu: NOTRUN -> [SKIP][107] ([fdo#109293] / [fdo#109506])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#6621]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#8925]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@i915_pm_rps@thresholds-park@gt0.html
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8925])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-5/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#3555] / [i915#8925])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-5/igt@i915_pm_rps@thresholds-park@gt1.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#6245])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-9/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#6245])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][114] ([fdo#109302])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@i915_query@query-topology-unsupported.html
- shard-rkl: NOTRUN -> [SKIP][115] ([fdo#109302])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@mock@memory_region:
- shard-rkl: NOTRUN -> [DMESG-WARN][116] ([i915#9311])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][118] ([i915#8247]) +3 other tests fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-15/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_atomic_transition@plane-use-after-nonblocking-unbind:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#1845] / [i915#4098]) +25 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][121] ([fdo#111615] / [i915#5286])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-2/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][122] -> [FAIL][123] ([i915#5138])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][124] ([fdo#111614]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-5/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-18/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][127] ([fdo#111614]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][128] -> [FAIL][129] ([i915#3743]) +2 other tests fail
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-rkl: [PASS][130] -> [SKIP][131] ([i915#1845] / [i915#4098]) +21 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][132] ([fdo#111615])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-4/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#5190]) +19 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5190]) +9 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6187])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][137] ([fdo#111615])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][138] ([fdo#110723]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@2x-modeset:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#2705])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_big_joiner@2x-modeset.html
* igt@kms_big_joiner@basic:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#2705])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_big_joiner@basic.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#4087]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-rkl: NOTRUN -> [SKIP][142] ([fdo#111827]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][143] ([fdo#111827])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +13 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#7828]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-8/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-2/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#7828]) +6 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-apl: NOTRUN -> [SKIP][148] ([fdo#109271]) +21 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-apl2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#7828]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-16/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@degamma@pipe-a:
- shard-rkl: [PASS][150] -> [SKIP][151] ([i915#4098]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@kms_color@degamma@pipe-a.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_color@degamma@pipe-a.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][152] ([i915#7173])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#3299])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#3299])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#3116])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#7118])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_content_protection@lic.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#7118])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][158] ([i915#1339])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#3555]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3359])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#3359]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#3359])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#3359])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#3555]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_edge_walk@64x64-left-edge:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#4098]) +41 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_cursor_edge_walk@64x64-left-edge.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-snb: [PASS][166] -> [SKIP][167] ([fdo#109271] / [fdo#111767])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-snb1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3546])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109274] / [i915#5354]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][170] ([fdo#111825]) +7 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-tglu: NOTRUN -> [SKIP][171] ([fdo#109274])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][172] ([fdo#109274] / [fdo#111767] / [i915#5354])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][173] -> [FAIL][174] ([i915#2346])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-mtlp: [PASS][175] -> [DMESG-WARN][176] ([i915#2017])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-2/igt@kms_cursor_legacy@single-move@all-pipes.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#1257])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8812])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-16/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-glk: NOTRUN -> [SKIP][180] ([fdo#109271]) +33 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-glk9/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3955])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3469])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#4881])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-17/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][184] ([fdo#109274]) +9 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-snb: NOTRUN -> [SKIP][185] ([fdo#109271]) +14 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-snb5/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [FAIL][186] ([i915#79])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#8381]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#8381])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-rkl: NOTRUN -> [SKIP][189] ([fdo#111767] / [fdo#111825])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
- shard-snb: NOTRUN -> [SKIP][190] ([fdo#109271] / [fdo#111767])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-snb5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][191] ([fdo#109274] / [i915#3637]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3637] / [i915#4098]) +10 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#2672]) +4 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#2672]) +5 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2672])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#2587] / [i915#2672])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +17 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [PASS][200] -> [FAIL][201] ([i915#6880])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#8708]) +33 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][203] -> [SKIP][204] ([i915#1849] / [i915#4098]) +13 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8708]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#1825]) +8 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#8708]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#5354]) +51 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][209] ([fdo#111825]) +5 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-tglu: NOTRUN -> [SKIP][210] ([fdo#109280]) +9 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3458]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-tglu: NOTRUN -> [SKIP][212] ([fdo#110189]) +8 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#3458]) +27 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#1849] / [i915#4098]) +25 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][215] ([fdo#111825] / [i915#1825]) +22 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#3023]) +12 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-10/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@int-max-clock:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#4098]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_invalid_mode@int-max-clock.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][221] ([fdo#109289]) +6 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][222] ([fdo#109289])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1:
- shard-apl: [PASS][223] -> [INCOMPLETE][224] ([i915#180] / [i915#9392])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8806])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#5176] / [i915#9423]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#5235]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#5235]) +27 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#6953] / [i915#8152]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#5235]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#5235])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#8152]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#4098] / [i915#6953] / [i915#8152])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#5235]) +15 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#6524] / [i915#6805])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_properties@crtc-properties-atomic:
- shard-rkl: [PASS][237] -> [SKIP][238] ([i915#1849])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@kms_properties@crtc-properties-atomic.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_properties@crtc-properties-atomic.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#658]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][240] ([fdo#111068] / [i915#658])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-7/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#658]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][242] ([fdo#111068] / [i915#658])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@primary_render:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#1072]) +6 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_psr@primary_render.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#1072]) +8 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@sprite_blt:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#1072] / [i915#4078]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-12/igt@kms_psr@sprite_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#5461] / [i915#658])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#5461] / [i915#658])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: NOTRUN -> [INCOMPLETE][248] ([i915#8875] / [i915#9475])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-90.html
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#4235])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][250] ([fdo#111615] / [i915#5289])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#4235] / [i915#5190]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][252] ([fdo#111615] / [i915#5289])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#4098])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][254] ([i915#5465]) +1 other test fail
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][255] ([IGT#2])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#8623])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1:
- shard-apl: [PASS][257] -> [FAIL][258] ([i915#9196]) +1 other test fail
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-apl1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-apl1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [PASS][259] -> [FAIL][260] ([i915#9196])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-b-hdmi-a-1:
- shard-snb: NOTRUN -> [DMESG-WARN][261] ([i915#8841]) +4 other tests dmesg-warn
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-snb1/igt@kms_vblank@ts-continuation-suspend@pipe-b-hdmi-a-1.html
* igt@kms_vrr@flip-basic:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#3555]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-19/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#2437])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#2437]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#2436])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [PASS][266] -> [FAIL][267] ([i915#7484])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][268] -> [FAIL][269] ([i915#4349]) +1 other test fail
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][270] -> [FAIL][271] ([i915#4349]) +3 other tests fail
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#5608] / [i915#8516])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#8516])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#8516])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#3708] / [i915#4077])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#3291] / [i915#3708]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#3708])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-15/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#3708] / [i915#4077])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-16/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#3708]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
- shard-dg2: NOTRUN -> [FAIL][280] ([i915#9583])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
* igt@syncobj_timeline@invalid-single-wait-available-unsubmitted:
- shard-dg2: NOTRUN -> [FAIL][281] ([i915#9582])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@syncobj_timeline@invalid-single-wait-available-unsubmitted.html
* igt@sysfs_preempt_timeout@timeout@vecs0:
- shard-mtlp: [PASS][282] -> [ABORT][283] ([i915#8521] / [i915#8865])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-7/igt@sysfs_preempt_timeout@timeout@vecs0.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-5/igt@sysfs_preempt_timeout@timeout@vecs0.html
* igt@v3d/v3d_get_bo_offset@get-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#2575])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-18/igt@v3d/v3d_get_bo_offset@get-bad-handle.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-tglu: NOTRUN -> [SKIP][285] ([fdo#109315] / [i915#2575]) +4 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-3/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_cl@single-out-sync:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#2575]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-5/igt@v3d/v3d_submit_cl@single-out-sync.html
* igt@v3d/v3d_submit_csd@bad-multisync-extension:
- shard-rkl: NOTRUN -> [SKIP][287] ([fdo#109315]) +11 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@v3d/v3d_submit_csd@bad-multisync-extension.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#2575]) +19 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_label_bo@set-label:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#7711]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-5/igt@vc4/vc4_label_bo@set-label.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#7711]) +12 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_tiling@get-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#7711]) +8 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@vc4/vc4_tiling@get-bad-handle.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#2575]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-9/igt@vc4/vc4_wait_bo@used-bo-0ns.html
#### Possible fixes ####
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: [FAIL][293] ([i915#7742]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html
* igt@fbdev@nullptr:
- shard-rkl: [SKIP][295] ([i915#2582]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@fbdev@nullptr.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@fbdev@nullptr.html
* igt@gem_barrier_race@remote-request@rcs0:
- shard-apl: [ABORT][297] ([i915#8190]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-apl7/igt@gem_barrier_race@remote-request@rcs0.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-apl1/igt@gem_barrier_race@remote-request@rcs0.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][299] ([i915#7297]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][301] ([i915#6268]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@hibernate:
- shard-tglu: [ABORT][303] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-tglu-10/igt@gem_eio@hibernate.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-2/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][305] ([i915#5784]) -> [PASS][306] +1 other test pass
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][307] ([i915#2846]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [FAIL][309] ([i915#2842]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fence@parallel@vcs0:
- shard-mtlp: [DMESG-FAIL][311] ([i915#8962]) -> [PASS][312] +2 other tests pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@gem_exec_fence@parallel@vcs0.html
* igt@gem_exec_fence@parallel@vecs0:
- shard-mtlp: [FAIL][313] ([i915#8957]) -> [PASS][314] +2 other tests pass
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-4/igt@gem_exec_fence@parallel@vecs0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@gem_exec_fence@parallel@vecs0.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: [SKIP][315] ([i915#3281]) -> [PASS][316] +12 other tests pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu-active.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [INCOMPLETE][317] ([i915#9275]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg2-2/igt@gem_exec_suspend@basic-s0@smem.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-rkl: [SKIP][319] ([i915#3282]) -> [PASS][320] +7 other tests pass
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-1/igt@gem_madvise@dontneed-before-pwrite.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_mmap_gtt@coherency:
- shard-rkl: [SKIP][321] ([fdo#111656]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@gem_mmap_gtt@coherency.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][323] ([i915#8411]) -> [PASS][324] +1 other test pass
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: [SKIP][325] ([i915#2527]) -> [PASS][326] +5 other tests pass
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_hangman@gt-error-state-capture@ccs0:
- shard-mtlp: [ABORT][327] ([i915#9414]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-4/igt@i915_hangman@gt-error-state-capture@ccs0.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-4/igt@i915_hangman@gt-error-state-capture@ccs0.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][329] ([i915#9407]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-dg1: [FAIL][331] ([i915#3591]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_selftest@live@gt_heartbeat:
- shard-apl: [DMESG-FAIL][333] ([i915#5334]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][335] ([i915#5138]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-rkl: [SKIP][337] ([i915#1845] / [i915#4098]) -> [PASS][338] +6 other tests pass
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][339] ([i915#3743]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* {igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-gen12-rc-ccs}:
- shard-rkl: [SKIP][341] ([i915#4098]) -> [PASS][342] +2 other tests pass
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][343] ([i915#2346]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-rkl: [SKIP][345] ([i915#1849] / [i915#4098]) -> [PASS][346] +6 other tests pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2: [FAIL][347] ([fdo#103375]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-suspend.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
* {igt@kms_pm_dc@dc6-dpms}:
- shard-tglu: [FAIL][349] ([i915#9295]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
* {igt@kms_pm_rpm@drm-resources-equal}:
- shard-rkl: [SKIP][351] ([fdo#109308]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_pm_rpm@drm-resources-equal.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@kms_pm_rpm@drm-resources-equal.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress}:
- shard-rkl: [SKIP][353] ([i915#9519]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* {igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4}:
- shard-dg1: [FAIL][355] ([i915#9196]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][357] ([i915#9196]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@perf@whitelisted-registers-userspace-config:
- shard-mtlp: [DMESG-WARN][359] ([i915#9157]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-mtlp-7/igt@perf@whitelisted-registers-userspace-config.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-mtlp-4/igt@perf@whitelisted-registers-userspace-config.html
* igt@perf_pmu@busy-idle-check-all@vecs0:
- shard-dg1: [FAIL][361] ([i915#4349]) -> [PASS][362] +4 other tests pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vecs0.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vecs0.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][363] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@prime_vgem@basic-fence-read.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
#### Warnings ####
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: [SKIP][365] ([i915#9323]) -> [SKIP][366] ([i915#7957])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@gem_ccs@block-multicopy-compressed.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][367] ([i915#3555]) -> [SKIP][368] ([i915#7957]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: [SKIP][369] ([i915#3282]) -> [WARN][370] ([i915#2658])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-1/igt@gem_pwrite@basic-exhaustion.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: [SKIP][371] ([i915#2532]) -> [SKIP][372] ([i915#2527])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][373] ([i915#1845] / [i915#4098]) -> [SKIP][374] ([i915#9531])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][375] ([i915#1769] / [i915#3555]) -> [SKIP][376] ([i915#1845] / [i915#4098])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][377] ([i915#4098]) -> [SKIP][378] ([i915#5286]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][379] ([i915#5286]) -> [SKIP][380] ([i915#4098]) +5 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][381] ([fdo#111614] / [i915#3638]) -> [SKIP][382] ([i915#1845] / [i915#4098]) +4 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][383] ([i915#1845] / [i915#4098]) -> [SKIP][384] ([fdo#111614] / [i915#3638]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][385] ([fdo#110723]) -> [SKIP][386] ([i915#1845] / [i915#4098]) +4 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][387] ([fdo#111615]) -> [SKIP][388] ([i915#1845] / [i915#4098])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: [SKIP][389] ([i915#1845] / [i915#4098]) -> [SKIP][390] ([fdo#110723]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][391] ([i915#7118]) -> [SKIP][392] ([i915#1845] / [i915#4098])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][393] ([i915#7118] / [i915#7162]) -> [SKIP][394] ([i915#7118])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg2-11/igt@kms_content_protection@type1.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][395] ([fdo#109279] / [i915#3359]) -> [SKIP][396] ([i915#4098]) +1 other test skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][397] ([i915#3555]) -> [SKIP][398] ([i915#4098]) +5 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: [SKIP][399] ([i915#4098]) -> [SKIP][400] ([i915#3359])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][401] ([i915#3359]) -> [SKIP][402] ([i915#4098])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][403] ([fdo#111825]) -> [SKIP][404] ([i915#1845] / [i915#4098]) +4 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][405] ([i915#4103]) -> [SKIP][406] ([i915#1845] / [i915#4098])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-rkl: [SKIP][407] ([i915#1845] / [i915#4098]) -> [SKIP][408] ([fdo#111767] / [fdo#111825])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][409] ([fdo#110189] / [i915#3955]) -> [SKIP][410] ([i915#3955])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][411] ([fdo#109285] / [i915#4098]) -> [SKIP][412] ([fdo#109285])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_force_connector_basic@force-load-detect.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: [SKIP][413] ([i915#5439]) -> [SKIP][414] ([i915#1849] / [i915#4098])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][415] ([i915#1849] / [i915#4098]) -> [SKIP][416] ([fdo#111825] / [i915#1825]) +9 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][417] ([fdo#111825] / [i915#1825]) -> [SKIP][418] ([i915#1849] / [i915#4098]) +46 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][419] ([i915#3023]) -> [SKIP][420] ([i915#1849] / [i915#4098]) +25 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][421] ([i915#1849] / [i915#4098]) -> [SKIP][422] ([i915#3023]) +5 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [SKIP][423] ([i915#3555] / [i915#8228]) -> [SKIP][424] ([i915#1845] / [i915#4098]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-rkl: [SKIP][425] ([fdo#111825]) -> [SKIP][426] ([fdo#111825] / [i915#8152])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: [SKIP][427] ([i915#5289]) -> [SKIP][428] ([i915#4098])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: [SKIP][429] ([fdo#111615] / [i915#5289]) -> [SKIP][430] ([i915#1845] / [i915#4098])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_vrr@negative-basic:
- shard-rkl: [SKIP][431] ([i915#4098]) -> [SKIP][432] ([i915#3555])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-rkl-5/igt@kms_vrr@negative-basic.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-rkl-7/igt@kms_vrr@negative-basic.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [CRASH][433] ([i915#9351]) -> [INCOMPLETE][434] ([i915#5493])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13798/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10077/index.html
[-- Attachment #2: Type: text/html, Size: 115503 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx
2023-10-27 1:48 [igt-dev] [PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx Jesse Zhang
` (2 preceding siblings ...)
2023-10-28 6:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-10-30 0:45 ` vitaly prosyak
3 siblings, 0 replies; 5+ messages in thread
From: vitaly prosyak @ 2023-10-30 0:45 UTC (permalink / raw)
To: Jesse Zhang, igt-dev
Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
[-- Attachment #1: Type: text/plain, Size: 17298 bytes --]
Hi Jesse,
The change looks good, it is a great improvement.
I have two comments below :
- rename new method 'atomic' to 'write_linear_atomic'
- use macro 'lower_32_bits' based Kamil's suggestion
Please, wait for the merge until we validate our CI with all ASICs.
I have basic and security test failures with your new patch on SIENNA_CICHLID.
Which ASIC are you using for testing security tests?
Let's work in teams to address the test failure issue.
Thanks, Vitaly
On 2023-10-26 21:48, Jesse Zhang wrote:
> To verify writes in Trusted Memory Zone(TMZ),
> add secure writing and verify the results of gfx.
>
> V2:
> - Improve description and coding style.
> Encoding using helpers for high and low 32 bits (Kamil)
> - Add i-g-t for the subject and
> replace the "_" with spaces in igt_describe(Kamil)
>
> Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
> Cc: Luben Tuikov <luben.tuikov@amd.com>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: Christian Koenig <christian.koenig@amd.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
> Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
> Signed-off-by: Tim Huang <tim.huang@amd.com>
> ---
> lib/amdgpu/amd_command_submission.c | 9 +-
> lib/amdgpu/amd_ip_blocks.c | 173 ++++++++++++++++------------
> lib/amdgpu/amd_ip_blocks.h | 1 +
> tests/amdgpu/amd_security.c | 13 ++-
> 4 files changed, 111 insertions(+), 85 deletions(-)
>
> diff --git a/lib/amdgpu/amd_command_submission.c b/lib/amdgpu/amd_command_submission.c
> index b674ba640..ddcf3d96e 100644
> --- a/lib/amdgpu/amd_command_submission.c
> +++ b/lib/amdgpu/amd_command_submission.c
> @@ -165,20 +165,19 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
> r = ip_block->funcs->compare(ip_block->funcs, ring_context, 1);
> igt_assert_eq(r, 0);
> } else if (ip_block->type == AMDGPU_HW_IP_GFX) {
> - ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> -
> + ip_block->funcs->atomic(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
> -
> } else if (ip_block->type == AMDGPU_HW_IP_DMA) {
> /* restore the bo_cpu to compare */
> ring_context->bo_cpu_origin = ring_context->bo_cpu[0];
> - ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> + ip_block->funcs->atomic(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>
> amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> + igt_assert_neq(ring_context->bo_cpu[0], ring_context->bo_cpu_origin);
> /* restore again, here dest_data should be */
> ring_context->bo_cpu_origin = ring_context->bo_cpu[0];
> - ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> + ip_block->funcs->atomic(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>
> amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
> /* here bo_cpu[0] should be unchanged, still is 0x12345678, otherwise failed*/
> diff --git a/lib/amdgpu/amd_ip_blocks.c b/lib/amdgpu/amd_ip_blocks.c
> index 96130ccd5..81db27817 100644
> --- a/lib/amdgpu/amd_ip_blocks.c
> +++ b/lib/amdgpu/amd_ip_blocks.c
> @@ -18,6 +18,7 @@
> #include "amdgpu_asic_addr.h"
> #include "amd_family.h"
> #include "amd_gfx_v8_0.h"
> +#include "ioctl_wrappers.h"
>
> /*
> * SDMA functions:
> @@ -34,48 +35,58 @@ sdma_ring_write_linear(const struct amdgpu_ip_funcs *func,
>
> i = 0;
> j = 0;
> - if (ring_context->secure == false) {
> - if (func->family_id == AMDGPU_FAMILY_SI)
> - ring_context->pm4[i++] = SDMA_PACKET_SI(SDMA_OPCODE_WRITE, 0, 0, 0,
> - ring_context->write_length);
> - else
> - ring_context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_WRITE,
> - SDMA_WRITE_SUB_OPCODE_LINEAR,
> - ring_context->secure ? SDMA_ATOMIC_TMZ(1) : 0);
> + if (func->family_id == AMDGPU_FAMILY_SI)
> + ring_context->pm4[i++] = SDMA_PACKET_SI(SDMA_OPCODE_WRITE, 0, 0, 0,
> + ring_context->write_length);
> + else
> + ring_context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_WRITE,
> + SDMA_WRITE_SUB_OPCODE_LINEAR,
> + ring_context->secure ? SDMA_ATOMIC_TMZ(1) : 0);
> +
> + ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
> + ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
> + if (func->family_id >= AMDGPU_FAMILY_AI)
> + ring_context->pm4[i++] = ring_context->write_length - 1;
> + else
> + ring_context->pm4[i++] = ring_context->write_length;
>
> - ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
> - ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
> - if (func->family_id >= AMDGPU_FAMILY_AI)
> - ring_context->pm4[i++] = ring_context->write_length - 1;
> - else
> - ring_context->pm4[i++] = ring_context->write_length;
> + while (j++ < ring_context->write_length)
> + ring_context->pm4[i++] = func->deadbeaf;
>
> - while (j++ < ring_context->write_length)
> - ring_context->pm4[i++] = func->deadbeaf;
> - } else {
> - memset(ring_context->pm4, 0, ring_context->pm4_size * sizeof(uint32_t));
> + *pm4_dw = i;
> +
> + return 0;
> +}
> +
> +static int
> +sdma_ring_atomic(const struct amdgpu_ip_funcs *func,
> + const struct amdgpu_ring_context *ring_context,
> + uint32_t *pm4_dw)
> +{
> + uint32_t i = 0;
> +
> + memset(ring_context->pm4, 0, ring_context->pm4_size * sizeof(uint32_t));
>
> /* atomic opcode for 32b w/ RTN and ATOMIC_SWAPCMP_RTN
> * loop, 1-loop_until_compare_satisfied.
> * single_pass_atomic, 0-lru
> */
> - ring_context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_ATOMIC,
> - 0,
> - SDMA_ATOMIC_LOOP(1) |
> - SDMA_ATOMIC_TMZ(1) |
> - SDMA_ATOMIC_OPCODE(TC_OP_ATOMIC_CMPSWAP_RTN_32));
> - ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
> - ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
> - ring_context->pm4[i++] = 0x12345678;
> - ring_context->pm4[i++] = 0x0;
> - ring_context->pm4[i++] = func->deadbeaf;
> - ring_context->pm4[i++] = 0x0;
> - ring_context->pm4[i++] = 0x100;
> - }
> -
> + ring_context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_ATOMIC,
> + 0,
> + SDMA_ATOMIC_LOOP(1) |
> + (ring_context->secure ? SDMA_ATOMIC_TMZ(1) : SDMA_ATOMIC_TMZ(0)) |
> + SDMA_ATOMIC_OPCODE(TC_OP_ATOMIC_CMPSWAP_RTN_32));
Please, use Kamil's suggestion about lower_32_bits as well.
It looks to me that the mask 0xffffffff takes extra precautions to clear the last 2 bits, which is unnecessary here,
we always allocate page-aligned sizes and the base address has an alignment parameter of 4096.
Let's use it everywhere lower_32_bits as below:
> + ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
ring_context->pm4[i++] = lower_32_bits(ring_context->bo_mc);
> + ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
> + ring_context->pm4[i++] = 0x12345678;
> + ring_context->pm4[i++] = 0x0;
> + ring_context->pm4[i++] = func->deadbeaf;
> + ring_context->pm4[i++] = 0x0;
> + ring_context->pm4[i++] = 0x100;
> *pm4_dw = i;
>
> return 0;
> +
> }
>
> static int
> @@ -95,8 +106,8 @@ sdma_ring_const_fill(const struct amdgpu_ip_funcs *func,
> } else {
> context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_CONSTANT_FILL, 0,
> SDMA_CONSTANT_FILL_EXTRA_SIZE(2));
> - context->pm4[i++] = 0xffffffff & context->bo_mc;
> - context->pm4[i++] = (0xffffffff00000000 & context->bo_mc) >> 32;
> + context->pm4[i++] = lower_32_bits(context->bo_mc);
> + context->pm4[i++] = upper_32_bits(context->bo_mc);
> context->pm4[i++] = func->deadbeaf;
>
> if (func->family_id >= AMDGPU_FAMILY_AI)
> @@ -121,10 +132,10 @@ sdma_ring_copy_linear(const struct amdgpu_ip_funcs *func,
> context->pm4[i++] = SDMA_PACKET_SI(SDMA_OPCODE_COPY_SI,
> 0, 0, 0,
> context->write_length);
> - context->pm4[i++] = 0xffffffff & context->bo_mc;
> - context->pm4[i++] = (0xffffffff00000000 & context->bo_mc) >> 32;
> - context->pm4[i++] = 0xffffffff & context->bo_mc2;
> - context->pm4[i++] = (0xffffffff00000000 & context->bo_mc2) >> 32;
> + context->pm4[i++] = lower_32_bits(context->bo_mc);
> + context->pm4[i++] = upper_32_bits(context->bo_mc);
> + context->pm4[i++] = lower_32_bits(context->bo_mc2);
> + context->pm4[i++] = upper_32_bits(context->bo_mc2);
> } else {
> context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_COPY,
> SDMA_COPY_SUB_OPCODE_LINEAR,
> @@ -134,10 +145,10 @@ sdma_ring_copy_linear(const struct amdgpu_ip_funcs *func,
> else
> context->pm4[i++] = context->write_length;
> context->pm4[i++] = 0;
> - context->pm4[i++] = 0xffffffff & context->bo_mc;
> - context->pm4[i++] = (0xffffffff00000000 & context->bo_mc) >> 32;
> - context->pm4[i++] = 0xffffffff & context->bo_mc2;
> - context->pm4[i++] = (0xffffffff00000000 & context->bo_mc2) >> 32;
> + context->pm4[i++] = lower_32_bits(context->bo_mc);
> + context->pm4[i++] = upper_32_bits(context->bo_mc);
> + context->pm4[i++] = lower_32_bits(context->bo_mc2);
> + context->pm4[i++] = upper_32_bits(context->bo_mc2);
> }
>
> *pm4_dw = i;
> @@ -163,37 +174,45 @@ gfx_ring_write_linear(const struct amdgpu_ip_funcs *func,
> i = 0;
> j = 0;
>
> - if (ring_context->secure == false) {
> - ring_context->pm4[i++] = PACKET3(PACKET3_WRITE_DATA, 2 + ring_context->write_length);
> - ring_context->pm4[i++] = WRITE_DATA_DST_SEL(5) | WR_CONFIRM;
> - ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
> - ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
> - while (j++ < ring_context->write_length)
> - ring_context->pm4[i++] = func->deadbeaf;
> - } else {
> - memset(ring_context->pm4, 0, ring_context->pm4_size * sizeof(uint32_t));
> + ring_context->pm4[i++] = PACKET3(PACKET3_WRITE_DATA, 2 + ring_context->write_length);
> + ring_context->pm4[i++] = WRITE_DATA_DST_SEL(5) | WR_CONFIRM;
> + ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
> + ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
> + while (j++ < ring_context->write_length)
> + ring_context->pm4[i++] = func->deadbeaf;
> +
> + *pm4_dw = i;
> + return 0;
> +}
> +
> +static int
> +gfx_ring_atomic(const struct amdgpu_ip_funcs *func,
> + const struct amdgpu_ring_context *ring_context,
> + uint32_t *pm4_dw)
> +{
> + uint32_t i = 0;
> +
> + memset(ring_context->pm4, 0, ring_context->pm4_size * sizeof(uint32_t));
> ring_context->pm4[i++] = PACKET3(PACKET3_ATOMIC_MEM, 7);
>
> - /* atomic opcode for 32b w/ RTN and ATOMIC_SWAPCMP_RTN
> - * command, 1-loop_until_compare_satisfied.
> - * single_pass_atomic, 0-lru
> - * engine_sel, 0-micro_engine
> - */
> - ring_context->pm4[i++] = (TC_OP_ATOMIC_CMPSWAP_RTN_32 |
> - ATOMIC_MEM_COMMAND(1) |
> - ATOMIC_MEM_CACHEPOLICAY(0) |
> - ATOMIC_MEM_ENGINESEL(0));
> - ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
> - ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
> - ring_context->pm4[i++] = 0x12345678;
> - ring_context->pm4[i++] = 0x0;
> - ring_context->pm4[i++] = 0xdeadbeaf;
> - ring_context->pm4[i++] = 0x0;
> - ring_context->pm4[i++] = 0x100;
> - }
> + /* atomic opcode for 32b w/ RTN and ATOMIC_SWAPCMP_RTN
> + * command, 1-loop_until_compare_satisfied.
> + * single_pass_atomic, 0-lru
> + * engine_sel, 0-micro_engine
> + */
> + ring_context->pm4[i++] = (TC_OP_ATOMIC_CMPSWAP_RTN_32 |
> + ATOMIC_MEM_COMMAND(1) |
> + ATOMIC_MEM_CACHEPOLICAY(0) |
> + ATOMIC_MEM_ENGINESEL(0));
> + ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
> + ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
> + ring_context->pm4[i++] = 0x12345678;
> + ring_context->pm4[i++] = 0x0;
> + ring_context->pm4[i++] = 0xdeadbeaf;
> + ring_context->pm4[i++] = 0x0;
> + ring_context->pm4[i++] = 0x100;
>
> *pm4_dw = i;
> -
> return 0;
> }
>
> @@ -212,8 +231,8 @@ gfx_ring_const_fill(const struct amdgpu_ip_funcs *func,
> PACKET3_DMA_DATA_SI_DST_SEL(0) |
> PACKET3_DMA_DATA_SI_SRC_SEL(2) |
> PACKET3_DMA_DATA_SI_CP_SYNC;
> - ring_context->pm4[i++] = 0xffffffff & ring_context->bo_mc;
> - ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
> + ring_context->pm4[i++] = lower_32_bits(ring_context->bo_mc);
> + ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
> ring_context->pm4[i++] = ring_context->write_length;
> } else {
> ring_context->pm4[i++] = PACKET3(PACKET3_DMA_DATA, 5);
> @@ -224,7 +243,7 @@ gfx_ring_const_fill(const struct amdgpu_ip_funcs *func,
> ring_context->pm4[i++] = func->deadbeaf;
> ring_context->pm4[i++] = 0;
> ring_context->pm4[i++] = 0xfffffffc & ring_context->bo_mc;
> - ring_context->pm4[i++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
> + ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
> ring_context->pm4[i++] = ring_context->write_length;
> }
> *pm4_dw = i;
> @@ -247,9 +266,9 @@ gfx_ring_copy_linear(const struct amdgpu_ip_funcs *func,
> PACKET3_DMA_DATA_SI_DST_SEL(0) |
> PACKET3_DMA_DATA_SI_SRC_SEL(0) |
> PACKET3_DMA_DATA_SI_CP_SYNC |
> - (0xffff00000000 & context->bo_mc) >> 32;
> + upper_32_bits(context->bo_mc);
> context->pm4[i++] = 0xfffffffc & context->bo_mc2;
> - context->pm4[i++] = (0xffffffff00000000 & context->bo_mc2) >> 32;
> + context->pm4[i++] = upper_32_bits(context->bo_mc2);
> context->pm4[i++] = context->write_length;
> } else {
> context->pm4[i++] = PACKET3(PACKET3_DMA_DATA, 5);
> @@ -258,9 +277,9 @@ gfx_ring_copy_linear(const struct amdgpu_ip_funcs *func,
> PACKET3_DMA_DATA_SRC_SEL(0) |
> PACKET3_DMA_DATA_CP_SYNC;
> context->pm4[i++] = 0xfffffffc & context->bo_mc;
> - context->pm4[i++] = (0xffffffff00000000 & context->bo_mc) >> 32;
> + context->pm4[i++] = upper_32_bits(context->bo_mc);
> context->pm4[i++] = 0xfffffffc & context->bo_mc2;
> - context->pm4[i++] = (0xffffffff00000000 & context->bo_mc2) >> 32;
> + context->pm4[i++] = upper_32_bits(context->bo_mc2);
> context->pm4[i++] = context->write_length;
> }
>
> @@ -311,6 +330,7 @@ static struct amdgpu_ip_funcs gfx_v8_x_ip_funcs = {
> .deadbeaf = 0xdeadbeaf,
> .pattern = 0xaaaaaaaa,
> .write_linear = gfx_ring_write_linear,
> + .atomic = gfx_ring_atomic,
> .const_fill = gfx_ring_const_fill,
> .copy_linear = gfx_ring_copy_linear,
> .compare = x_compare,
> @@ -325,6 +345,7 @@ static struct amdgpu_ip_funcs sdma_v3_x_ip_funcs = {
> .deadbeaf = 0xdeadbeaf,
> .pattern = 0xaaaaaaaa,
> .write_linear = sdma_ring_write_linear,
> + .atomic = sdma_ring_atomic,
> .const_fill = sdma_ring_const_fill,
> .copy_linear = sdma_ring_copy_linear,
> .compare = x_compare,
> diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h
> index 7f6fb3fb4..09a5e61f9 100644
> --- a/lib/amdgpu/amd_ip_blocks.h
> +++ b/lib/amdgpu/amd_ip_blocks.h
> @@ -70,6 +70,7 @@ struct amdgpu_ip_funcs {
> uint32_t pattern;
> /* functions */
> int (*write_linear)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, uint32_t *pm4_dw);
> + int (*atomic)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, uint32_t *pm4_dw);
Please, rename a new method from atomic to 'write_linear_atomic'
int (*write_linear_atomic)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, uint32_t *pm4_dw);
> int (*const_fill)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, uint32_t *pm4_dw);
> int (*copy_linear)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, uint32_t *pm4_dw);
> int (*compare)(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *context, int div);
> diff --git a/tests/amdgpu/amd_security.c b/tests/amdgpu/amd_security.c
> index 1a7eba9eb..d1146a7ce 100644
> --- a/tests/amdgpu/amd_security.c
> +++ b/tests/amdgpu/amd_security.c
> @@ -351,17 +351,22 @@ igt_main
> igt_skip_on(!is_security_tests_enable(device, &gpu_info, major, minor));
> }
>
> - igt_describe("amdgpu_security_alloc_buf_test");
> + igt_describe("amdgpu security alloc buf test");
> igt_subtest("amdgpu-security-alloc-buf-test")
> amdgpu_security_alloc_buf_test(device);
>
> - igt_describe("amdgpu_command_submission_write_linear_helper");
> - igt_subtest("write-linear-helper-secure")
> + igt_describe("amdgpu sdma command submission write linear helper");
> + igt_subtest("sdma-write-linear-helper-secure")
> amdgpu_command_submission_write_linear_helper(device,
> get_ip_block(device, AMDGPU_HW_IP_DMA), is_secure);
>
> + igt_describe("amdgpu gfx command submission write linear helper");
> + igt_subtest("gfx-write-linear-helper-secure")
> + amdgpu_command_submission_write_linear_helper(device,
> + get_ip_block(device, AMDGPU_HW_IP_GFX), is_secure);
> +
> /* dynamic test based on sdma_info.available rings */
> - igt_describe("amdgpu_secure_bounce");
> + igt_describe("amdgpu secure bounce");
> igt_subtest("amdgpu-secure-bounce")
> amdgpu_secure_bounce(device, fd, &sdma_info, get_ip_block(device,
> AMDGPU_HW_IP_DMA), is_secure);
[-- Attachment #2: Type: text/html, Size: 19649 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-10-30 0:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-27 1:48 [igt-dev] [PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx Jesse Zhang
2023-10-27 2:33 ` [igt-dev] ✓ CI.xeBAT: success for tests/amd_security: add secure write test for gfx (rev3) Patchwork
2023-10-27 2:35 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-10-28 6:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-10-30 0:45 ` [igt-dev] [PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx vitaly prosyak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox