* [igt-dev] [PATCH] tests/amd_security: add secure write test for gfx
@ 2023-10-25 1:23 Jesse Zhang
2023-10-25 3:29 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Jesse Zhang @ 2023-10-25 1:23 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
To verify writes in TMZ mode,
add secure write, and verify the result for gfx.
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 | 139 ++++++++++++++++------------
lib/amdgpu/amd_ip_blocks.h | 1 +
tests/amdgpu/amd_security.c | 7 +-
4 files changed, 90 insertions(+), 66 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..6a095e0a3 100644
--- a/lib/amdgpu/amd_ip_blocks.c
+++ b/lib/amdgpu/amd_ip_blocks.c
@@ -34,50 +34,59 @@ 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++] = (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;
- 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++] = (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;
*pm4_dw = i;
return 0;
-}
+}
static int
sdma_ring_const_fill(const struct amdgpu_ip_funcs *func,
const struct amdgpu_ring_context *context,
@@ -163,37 +172,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++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
+ 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++] = (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;
*pm4_dw = i;
-
return 0;
}
@@ -311,6 +328,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 +343,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..793a0a8b5 100644
--- a/tests/amdgpu/amd_security.c
+++ b/tests/amdgpu/amd_security.c
@@ -356,10 +356,15 @@ igt_main
amdgpu_security_alloc_buf_test(device);
igt_describe("amdgpu_command_submission_write_linear_helper");
- igt_subtest("write-linear-helper-secure")
+ 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_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_subtest("amdgpu-secure-bounce")
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/amd_security: add secure write test for gfx
2023-10-25 1:23 [igt-dev] [PATCH] tests/amd_security: add secure write test for gfx Jesse Zhang
@ 2023-10-25 3:29 ` Patchwork
2023-10-25 8:04 ` [igt-dev] [PATCH] " Kamil Konieczny
2023-10-25 18:54 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-10-25 3:29 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4147 bytes --]
== Series Details ==
Series: tests/amd_security: add secure write test for gfx
URL : https://patchwork.freedesktop.org/series/125534/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13783 -> IGTPW_10058
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/index.html
Participating hosts (37 -> 35)
------------------------------
Missing (2): fi-kbl-soraka fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10058 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@random-engines:
- fi-bsw-n3050: NOTRUN -> [SKIP][1] ([fdo#109271]) +18 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [PASS][2] -> [DMESG-FAIL][3] ([i915#5334])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- fi-hsw-4770: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#5190])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_hdmi_inject@inject-audio:
- fi-bsw-n3050: NOTRUN -> [FAIL][5] ([IGT#3])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/fi-bsw-n3050/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][6] ([fdo#109271]) +12 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/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][7] ([i915#8841]) +6 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/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][8] ([fdo#109271] / [i915#1072]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7552 -> IGTPW_10058
CI-20190529: 20190529
CI_DRM_13783: effc8753aee06b5bd8f6f93dcdee9bb759efc8e7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10058: 10058
IGT_7552: 557856802dfee103802f1157f97c65bb476d5468 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@xe_evict_ccs@evict-ccs-overcommit-parallel-instantfree-reopen
-igt@xe_evict_ccs@evict-ccs-overcommit-parallel-instantfree-samefd
-igt@xe_evict_ccs@evict-ccs-overcommit-parallel-nofree-reopen
-igt@xe_evict_ccs@evict-ccs-overcommit-parallel-nofree-samefd
-igt@xe_evict_ccs@evict-ccs-overcommit-simple
-igt@xe_evict_ccs@evict-ccs-overcommit-standalone-instantfree-reopen
-igt@xe_evict_ccs@evict-ccs-overcommit-standalone-instantfree-samefd
-igt@xe_evict_ccs@evict-ccs-overcommit-standalone-nofree-reopen
-igt@xe_evict_ccs@evict-ccs-overcommit-standalone-nofree-samefd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/index.html
[-- Attachment #2: Type: text/html, Size: 5163 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH] tests/amd_security: add secure write test for gfx
2023-10-25 1:23 [igt-dev] [PATCH] tests/amd_security: add secure write test for gfx Jesse Zhang
2023-10-25 3:29 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2023-10-25 8:04 ` Kamil Konieczny
2023-10-25 18:54 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
2 siblings, 0 replies; 6+ messages in thread
From: Kamil Konieczny @ 2023-10-25 8:04 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
Hi Jesse,
On 2023-10-25 at 09:23:54 +0800, Jesse Zhang wrote:
> To verify writes in TMZ mode,
--------------------- ^^^
Describe what TMZ means, we have much too many shortcuts.
> add secure write, and verify the result for gfx.
----------------- ^
s/,//
>
> 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 | 139 ++++++++++++++++------------
> lib/amdgpu/amd_ip_blocks.h | 1 +
> tests/amdgpu/amd_security.c | 7 +-
> 4 files changed, 90 insertions(+), 66 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..6a095e0a3 100644
> --- a/lib/amdgpu/amd_ip_blocks.c
> +++ b/lib/amdgpu/amd_ip_blocks.c
> @@ -34,50 +34,59 @@ 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++] = (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;
>
> - 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++] = (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;
> *pm4_dw = i;
>
> return 0;
> -}
>
> +}
Remove this change, keep newline before new function.
> static int
> sdma_ring_const_fill(const struct amdgpu_ip_funcs *func,
> const struct amdgpu_ring_context *context,
> @@ -163,37 +172,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++] = (0xffffffff00000000 & ring_context->bo_mc) >> 32;
---------------------------- ^^^^^^^^^^^^
We have helpers for high and low 32-bits.
Regards,
Kamil
> + 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++] = (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;
>
> *pm4_dw = i;
> -
> return 0;
> }
>
> @@ -311,6 +328,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 +343,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..793a0a8b5 100644
> --- a/tests/amdgpu/amd_security.c
> +++ b/tests/amdgpu/amd_security.c
> @@ -356,10 +356,15 @@ igt_main
> amdgpu_security_alloc_buf_test(device);
>
> igt_describe("amdgpu_command_submission_write_linear_helper");
> - igt_subtest("write-linear-helper-secure")
> + 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_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_subtest("amdgpu-secure-bounce")
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/amd_security: add secure write test for gfx
2023-10-25 1:23 [igt-dev] [PATCH] tests/amd_security: add secure write test for gfx Jesse Zhang
2023-10-25 3:29 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-10-25 8:04 ` [igt-dev] [PATCH] " Kamil Konieczny
@ 2023-10-25 18:54 ` Patchwork
2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-10-25 18:54 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 92144 bytes --]
== Series Details ==
Series: tests/amd_security: add secure write test for gfx
URL : https://patchwork.freedesktop.org/series/125534/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13783_full -> IGTPW_10058_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10058_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10058_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_10058/index.html
Participating hosts (11 -> 12)
------------------------------
Additional (1): shard-mtlp0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10058_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_balancer@fairslice:
- shard-rkl: [PASS][1] -> [SKIP][2] +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-2/igt@gem_exec_balancer@fairslice.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@gem_exec_balancer@fairslice.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-rkl: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [INCOMPLETE][4] ([i915#9408]) -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@gem_compute@compute-square}:
- shard-rkl: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@gem_compute@compute-square.html
* {igt@kms_plane@pixel-format@pipe-a}:
- shard-dg1: [PASS][7] -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg1-13/igt@kms_plane@pixel-format@pipe-a.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-16/igt@kms_plane@pixel-format@pipe-a.html
* {igt@kms_plane@planar-pixel-format-settings}:
- shard-rkl: [PASS][9] -> [SKIP][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-1/igt@kms_plane@planar-pixel-format-settings.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_plane@planar-pixel-format-settings.html
* {igt@kms_plane@plane-position-hole-dpms@pipe-a}:
- shard-mtlp: NOTRUN -> [FAIL][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-2/igt@kms_plane@plane-position-hole-dpms@pipe-a.html
Known issues
------------
Here are the changes found in IGTPW_10058_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#8411])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8411])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#7701])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +19 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_read@short-buffer-block:
- shard-rkl: [PASS][16] -> [SKIP][17] ([i915#4098]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-4/igt@drm_read@short-buffer-block.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@drm_read@short-buffer-block.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#4873])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-2/igt@gem_caching@writes.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [PASS][20] -> [INCOMPLETE][21] ([i915#9364])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][22] -> [FAIL][23] ([i915#6268])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][24] -> [FAIL][25] ([i915#9561])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-7/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][26] ([fdo#109314])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-5/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@legacy-engines-hostile@vebox:
- shard-mtlp: [PASS][29] -> [FAIL][30] ([i915#2410]) +3 other tests fail
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-8/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#5882]) +9 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-10/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [PASS][35] -> [FAIL][36] ([i915#4475])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-mtlp-8/igt@gem_exec_capture@pi@vcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-3/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) +2 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: NOTRUN -> [FAIL][40] ([i915#2842])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-9/igt@gem_exec_fair@basic-pace-solo@rcs0.html
- shard-glk: NOTRUN -> [FAIL][41] ([i915#2842])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-glk2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-5/igt@gem_exec_flush@basic-uc-set-default.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-13/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][45] ([fdo#112283])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-10/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +15 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: [PASS][47] -> [SKIP][48] ([i915#3281]) +10 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-19/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-5/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: NOTRUN -> [ABORT][53] ([i915#7975] / [i915#8213]) +1 other test abort
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-7/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-glk: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#4613])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-glk3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom:
- shard-snb: NOTRUN -> [SKIP][57] ([fdo#109271]) +19 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-snb2/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#8289])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#284])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-10/igt@gem_media_vme.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +13 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-18/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_gtt@hang-busy:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-5/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html
* igt@gem_pread@display:
- shard-rkl: [PASS][65] -> [SKIP][66] ([i915#3282]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@gem_pread@display.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@gem_pread@display.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4270])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-18/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#4270])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-7/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_readwrite@read-write:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-1/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_basic:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@gem_tiled_pread_basic.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@gem_userptr_blits@coherency-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-3/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4958])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html
* igt@gen3_render_linear_blits:
- shard-dg1: NOTRUN -> [SKIP][82] ([fdo#109289]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-17/igt@gen3_render_linear_blits.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109289]) +9 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-mtlp: NOTRUN -> [SKIP][84] ([fdo#109289])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-7/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: [PASS][86] -> [SKIP][87] ([i915#2527]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@gen9_exec_parse@bb-start-param.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-5/igt@gen9_exec_parse@secure-batches.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4881])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-10/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#6227])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-15/igt@i915_module_load@load.html
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#6227])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-2/igt@i915_module_load@load.html
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#6227])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-10/igt@i915_module_load@load.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#7091])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8436])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-glk: NOTRUN -> [SKIP][95] ([fdo#109271]) +77 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-glk5/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-dg1: [PASS][96] -> [FAIL][97] ([i915#3591])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_pm_rps@basic-api:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6621])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-4/igt@i915_pm_rps@basic-api.html
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#8925])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@i915_pm_rps@thresholds-park@gt0.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#8925])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-19/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4387])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@i915_pm_sseu@full-enable.html
- shard-rkl: [PASS][103] -> [SKIP][104] ([i915#4387])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#6245])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live@gt_heartbeat:
- shard-apl: [PASS][106] -> [DMESG-FAIL][107] ([i915#5334])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-apl4/igt@i915_selftest@live@gt_heartbeat.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@mock@memory_region:
- shard-glk: NOTRUN -> [DMESG-WARN][108] ([i915#9311])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-glk2/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#4212]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-5/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@crc@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [FAIL][111] ([i915#8247]) +3 other tests fail
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#6228])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6229])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-8/igt@kms_async_flips@test-cursor.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][114] -> [FAIL][115] ([i915#5138])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111615] / [i915#5286])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][119] ([fdo#111614]) +7 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-10/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-rkl: [PASS][120] -> [SKIP][121] ([i915#1845] / [i915#4098]) +10 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][122] ([fdo#111614] / [i915#3638])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3638])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][124] ([fdo#111614]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-7/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][125] -> [FAIL][126] ([i915#3743]) +2 other tests fail
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190]) +22 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111615])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-9/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][132] ([fdo#110723])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#2705])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-7/igt@kms_big_joiner@basic.html
* igt@kms_cdclk@mode-transition:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3742])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-13/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#3742])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-9/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4087] / [i915#7213]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][137] ([fdo#111827]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#7828]) +16 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#7828]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#7828])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-19/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#7828])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#7828]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#3555]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-3/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6944])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#3116] / [i915#3299])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3299])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-15/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][148] ([i915#7173])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#3359])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#3555]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#3555]) +5 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-apl: NOTRUN -> [SKIP][152] ([fdo#109271]) +11 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-apl6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#4103])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#4213])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213] / [i915#5608])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3546])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][157] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][158] ([fdo#109274] / [i915#5354]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][159] -> [FAIL][160] ([i915#2346])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#9226] / [i915#9261]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#9227])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#9227])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#9226] / [i915#9261]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#1845] / [i915#4098]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#1257])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-4/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109274] / [fdo#111767]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#8381])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][171] ([fdo#109274]) +8 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-10/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-dg1: NOTRUN -> [SKIP][172] ([fdo#111825]) +7 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-15/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-tglu: NOTRUN -> [SKIP][173] ([fdo#109274] / [i915#3637]) +4 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-rkl: NOTRUN -> [SKIP][174] ([fdo#111825]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_flip@2x-nonexisting-fb-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3637])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-5/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@dpms-off-confusion-interruptible:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#3637] / [i915#4098]) +5 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_flip@dpms-off-confusion-interruptible.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-snb: NOTRUN -> [DMESG-WARN][177] ([i915#8841]) +1 other test dmesg-warn
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#2672] / [i915#3555])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#2672]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#2672]) +6 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-dg2: NOTRUN -> [SKIP][181] ([fdo#109285])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#1849] / [i915#4098])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [PASS][183] -> [SKIP][184] ([i915#1849] / [i915#4098]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][185] ([fdo#111825] / [i915#1825]) +7 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#8708]) +25 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#3458]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3023]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#1825]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#5354]) +40 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][191] ([fdo#109280]) +12 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#8708]) +4 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8708])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3458]) +23 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@static-swap:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-7/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][197] ([fdo#109289])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-tglu: NOTRUN -> [SKIP][198] ([fdo#109289]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-2/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1:
- shard-apl: [PASS][199] -> [INCOMPLETE][200] ([i915#180] / [i915#9392])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#4098]) +10 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8806])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#8152])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_plane_scaling@invalid-parameters.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#5235]) +15 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#5235]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#6953] / [i915#8152])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#5235]) +15 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#4098] / [i915#6953] / [i915#8152])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_properties@plane-properties-atomic:
- shard-rkl: [PASS][210] -> [SKIP][211] ([i915#1849]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-7/igt@kms_properties@plane-properties-atomic.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_properties@plane-properties-atomic.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-rkl: NOTRUN -> [SKIP][212] ([fdo#111068] / [i915#658])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#658])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-12/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#658])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-glk: NOTRUN -> [SKIP][215] ([fdo#109271] / [i915#658]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-glk2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#658]) +4 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_sprite_mmap_cpu:
- shard-tglu: NOTRUN -> [SKIP][217] ([fdo#110189]) +8 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-2/igt@kms_psr@psr2_sprite_mmap_cpu.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#1072]) +10 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#4235] / [i915#5190])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#4098]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8809])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][222] ([i915#5465]) +1 other test fail
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#4098])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][224] ([IGT#2])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#8623])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-mtlp: [PASS][226] -> [FAIL][227] ([i915#9196])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@perf@gen12-group-exclusive-stream-sample-oa:
- shard-rkl: [PASS][228] -> [SKIP][229] ([fdo#109289])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-4/igt@perf@gen12-group-exclusive-stream-sample-oa.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@perf@gen12-group-exclusive-stream-sample-oa.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#7387])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [PASS][231] -> [FAIL][232] ([i915#3089])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#8850])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-6/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][234] ([i915#6806])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@perf_pmu@frequency@gt0.html
* igt@prime_vgem@basic-read:
- shard-rkl: [PASS][235] -> [SKIP][236] ([fdo#109295] / [i915#3291] / [i915#3708])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@prime_vgem@basic-read.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#3708] / [i915#4077])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-5/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#3708])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-1/igt@prime_vgem@fence-read-hang.html
- shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109295] / [i915#3708]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3708])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-8/igt@prime_vgem@fence-read-hang.html
* igt@sysfs_heartbeat_interval@mixed@vecs0:
- shard-mtlp: [PASS][241] -> [FAIL][242] ([i915#1731])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html
* igt@v3d/v3d_submit_cl@bad-bo:
- shard-tglu: NOTRUN -> [SKIP][243] ([fdo#109315] / [i915#2575]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-7/igt@v3d/v3d_submit_cl@bad-bo.html
* igt@v3d/v3d_submit_cl@bad-perfmon:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#2575]) +19 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-7/igt@v3d/v3d_submit_cl@bad-perfmon.html
- shard-rkl: NOTRUN -> [SKIP][245] ([fdo#109315]) +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@v3d/v3d_submit_cl@bad-perfmon.html
* igt@v3d/v3d_submit_cl@multisync-out-syncs:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#2575]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-13/igt@v3d/v3d_submit_cl@multisync-out-syncs.html
* igt@v3d/v3d_submit_csd@multiple-job-submission:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#2575]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-2/igt@v3d/v3d_submit_csd@multiple-job-submission.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#7711]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-2/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#7711]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-13/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#2575]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-4/igt@vc4/vc4_purgeable_bo@mark-purgeable.html
* igt@vc4/vc4_tiling@get-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#7711]) +11 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-handle.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#7711]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [FAIL][253] ([i915#7742]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
* igt@fbdev@eof:
- shard-rkl: [SKIP][255] ([i915#2582]) -> [PASS][256] +3 other tests pass
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@fbdev@eof.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@fbdev@eof.html
* igt@gem_eio@wait-wedge-immediate:
- shard-mtlp: [ABORT][257] ([i915#9414]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-mtlp-2/igt@gem_eio@wait-wedge-immediate.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-2/igt@gem_eio@wait-wedge-immediate.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][259] ([i915#2842]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][261] ([i915#3281]) -> [PASS][262] +4 other tests pass
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_whisper@basic-fds-priority-all:
- shard-tglu: [INCOMPLETE][263] ([i915#6755] / [i915#7392]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-tglu-3/igt@gem_exec_whisper@basic-fds-priority-all.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-tglu-2/igt@gem_exec_whisper@basic-fds-priority-all.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [DMESG-WARN][265] ([i915#4936] / [i915#5493]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-rkl: [SKIP][267] ([i915#3282]) -> [PASS][268] +3 other tests pass
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-1/igt@gem_partial_pwrite_pread@write-display.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@gem_partial_pwrite_pread@write-display.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: [SKIP][269] ([i915#2527]) -> [PASS][270] +1 other test pass
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [WARN][271] ([i915#7356]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-dg1: [FAIL][273] ([i915#3591]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [FAIL][275] ([i915#5138]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* {igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-rc-ccs}:
- shard-rkl: [SKIP][277] ([i915#4098]) -> [PASS][278] +7 other tests pass
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-rc-ccs.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [SKIP][279] ([i915#1845] / [i915#4098]) -> [PASS][280] +13 other tests pass
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc:
- shard-rkl: [SKIP][281] ([i915#1849] / [i915#4098]) -> [PASS][282] +6 other tests pass
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html
* {igt@kms_pm_dc@dc5-dpms-negative}:
- shard-rkl: [SKIP][283] -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_pm_dc@dc5-dpms-negative.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_pm_dc@dc5-dpms-negative.html
* {igt@kms_pm_rpm@dpms-mode-unset-lpsp}:
- shard-rkl: [SKIP][285] ([i915#9519]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress}:
- shard-dg1: [SKIP][287] ([i915#9519]) -> [PASS][288] +1 other test pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1:
- shard-apl: [FAIL][289] ([i915#9196]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-apl6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-apl3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][291] ([i915#9196]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-1:
- shard-apl: [INCOMPLETE][293] -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-apl1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-1.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-apl7/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-1.html
* igt@perf@gen12-group-exclusive-stream-ctx-handle:
- shard-rkl: [SKIP][295] ([fdo#109289]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@perf@gen12-group-exclusive-stream-ctx-handle.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@perf@gen12-group-exclusive-stream-ctx-handle.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][297] ([i915#2436]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [FAIL][299] ([i915#4349]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][301] ([i915#4349]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-7/igt@perf_pmu@most-busy-check-all@rcs0.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][303] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-7/igt@prime_vgem@basic-fence-read.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][305] ([i915#7957]) -> [SKIP][306] ([i915#3555])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][307] ([i915#4098] / [i915#9323]) -> [SKIP][308] ([i915#7957])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][309] ([i915#5286]) -> [SKIP][310] ([i915#4098]) +3 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][311] ([i915#4098]) -> [SKIP][312] ([i915#5286]) +4 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/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][313] ([fdo#111614] / [i915#3638]) -> [SKIP][314] ([i915#1845] / [i915#4098]) +2 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][315] ([i915#1845] / [i915#4098]) -> [SKIP][316] ([fdo#111614] / [i915#3638])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][317] ([i915#1845] / [i915#4098]) -> [SKIP][318] ([fdo#110723]) +5 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][319] ([fdo#110723]) -> [SKIP][320] ([i915#1845] / [i915#4098]) +3 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_content_protection@atomic:
- shard-rkl: [SKIP][321] ([i915#1845] / [i915#4098]) -> [SKIP][322] ([i915#7118])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_content_protection@atomic.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][323] ([i915#1845] / [i915#4098]) -> [SKIP][324] ([i915#3116])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][325] ([i915#3116]) -> [SKIP][326] ([i915#1845] / [i915#4098])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][327] ([i915#7118]) -> [SKIP][328] ([i915#1845] / [i915#4098])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-4/igt@kms_content_protection@srm.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][329] ([i915#7118] / [i915#7162]) -> [SKIP][330] ([i915#7118])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-dg2-11/igt@kms_content_protection@type1.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-dg2-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][331] ([i915#4098]) -> [SKIP][332] ([i915#3555]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-rkl: [SKIP][333] ([i915#3555]) -> [SKIP][334] ([i915#4098]) +4 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x32.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][335] ([i915#3359]) -> [SKIP][336] ([i915#4098]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: [SKIP][337] ([i915#4098]) -> [SKIP][338] ([i915#3359])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-rkl: [SKIP][339] ([i915#1845] / [i915#4098]) -> [SKIP][340] ([fdo#111825]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][341] ([i915#1845] / [i915#4098]) -> [SKIP][342] ([i915#4103]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: [SKIP][343] ([fdo#111825]) -> [SKIP][344] ([i915#1845] / [i915#4098]) +3 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-rkl: [SKIP][345] ([i915#1845] / [i915#4098]) -> [SKIP][346] ([fdo#111767] / [fdo#111825])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][347] ([i915#4098]) -> [SKIP][348] ([i915#3555] / [i915#3840])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][349] ([fdo#110189] / [i915#3955]) -> [SKIP][350] ([i915#3955])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][351] ([i915#1849] / [i915#4098]) -> [SKIP][352] ([fdo#111825] / [i915#1825]) +26 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][353] ([i915#3023]) -> [SKIP][354] ([i915#1849] / [i915#4098]) +14 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][355] ([i915#1849] / [i915#4098]) -> [SKIP][356] ([i915#5439])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][357] ([i915#1849] / [i915#4098]) -> [SKIP][358] ([i915#3023]) +18 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][359] ([fdo#111825] / [i915#1825]) -> [SKIP][360] ([i915#1849] / [i915#4098]) +18 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [SKIP][361] ([i915#3555] / [i915#8228]) -> [SKIP][362] ([i915#1845] / [i915#4098])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-2/igt@kms_hdr@bpc-switch.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_hdr@bpc-switch.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][363] ([i915#4816]) -> [SKIP][364] ([i915#4070] / [i915#4816])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][365] ([i915#6301]) -> [SKIP][366] ([i915#1845] / [i915#4098])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13783/shard-rkl-2/igt@kms_panel_fitting@legacy.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/shard-rkl-5/igt@kms_panel_fitting@legacy.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#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[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#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[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#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#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
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[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#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[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#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3089]: https://gitlab.freedesktop.org/drm/intel/issues/3089
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392
[i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9561]: https://gitlab.freedesktop.org/drm/intel/issues/9561
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7552 -> IGTPW_10058
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13783: effc8753aee06b5bd8f6f93dcdee9bb759efc8e7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10058: 10058
IGT_7552: 557856802dfee103802f1157f97c65bb476d5468 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10058/index.html
[-- Attachment #2: Type: text/html, Size: 114162 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH] tests/amd_security: add secure write test for gfx
@ 2023-10-26 3:05 Jesse Zhang
2023-10-26 10:56 ` Kamil Konieczny
0 siblings, 1 reply; 6+ messages in thread
From: Jesse Zhang @ 2023-10-26 3:05 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.
V1:
- Improve description and coding style.
Encoding using helpers for high and low 32 bits (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 | 7 +-
4 files changed, 108 insertions(+), 82 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..793a0a8b5 100644
--- a/tests/amdgpu/amd_security.c
+++ b/tests/amdgpu/amd_security.c
@@ -356,10 +356,15 @@ igt_main
amdgpu_security_alloc_buf_test(device);
igt_describe("amdgpu_command_submission_write_linear_helper");
- igt_subtest("write-linear-helper-secure")
+ 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_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_subtest("amdgpu-secure-bounce")
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH] tests/amd_security: add secure write test for gfx
2023-10-26 3:05 [igt-dev] [PATCH] " Jesse Zhang
@ 2023-10-26 10:56 ` Kamil Konieczny
0 siblings, 0 replies; 6+ messages in thread
From: Kamil Konieczny @ 2023-10-26 10:56 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
Hi Jesse,
On 2023-10-26 at 11:05:45 +0800, Jesse Zhang wrote:
when sending patches to igt-dev please add "i-g-t" after PATCH,
your current subject:
[PATCH] tests/amd_security: add secure write test for gfx
should be:
[PATCH i-g-t] tests/amd_security: add secure write test for gfx
Also when sending second version add version info to it, so it
will become:
[PATCH v2 i-g-t] tests/amd_security: add secure write test for gfx
or
[PATCH i-g-t v2] tests/amd_security: add secure write test for gfx
One more nit, see below.
> To verify writes in Trusted Memory Zone(TMZ),
> add secure writing and verify the results of gfx.
>
> V1:
> - Improve description and coding style.
> Encoding using helpers for high and low 32 bits (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 | 7 +-
> 4 files changed, 108 insertions(+), 82 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..793a0a8b5 100644
> --- a/tests/amdgpu/amd_security.c
> +++ b/tests/amdgpu/amd_security.c
> @@ -356,10 +356,15 @@ igt_main
> amdgpu_security_alloc_buf_test(device);
>
> igt_describe("amdgpu_command_submission_write_linear_helper");
> - igt_subtest("write-linear-helper-secure")
> + 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_command_submission_write_linear_helper");
----------------- ^
This is copy-paste from above, also do not use "_" in descriptions,
use spaces instead.
Regards,
Kamil
> + 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_subtest("amdgpu-secure-bounce")
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-10-26 10:56 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-25 1:23 [igt-dev] [PATCH] tests/amd_security: add secure write test for gfx Jesse Zhang
2023-10-25 3:29 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-10-25 8:04 ` [igt-dev] [PATCH] " Kamil Konieczny
2023-10-25 18:54 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-10-26 3:05 [igt-dev] [PATCH] " Jesse Zhang
2023-10-26 10:56 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox