* [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA
@ 2023-10-18 5:33 Jesse Zhang
2023-10-18 7:45 ` [igt-dev] ✗ CI.xeBAT: failure for tests/amd_dispatch: add negative test for SDMA (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Jesse Zhang @ 2023-10-18 5:33 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
Issue corrupted header or slow sdma linear copy
to trigger SDMA hang test.
V2:
- avoid generating warning,
and optimize logical code (Vitlaly)
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_deadlock_helpers.c | 148 ++++++++++++++++++++++++++++++
lib/amdgpu/amd_deadlock_helpers.h | 7 ++
tests/amdgpu/amd_deadlock.c | 16 ++++
3 files changed, 171 insertions(+)
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index a6be5f02a..8f2d63772 100644
--- a/lib/amdgpu/amd_deadlock_helpers.c
+++ b/lib/amdgpu/amd_deadlock_helpers.c
@@ -248,3 +248,151 @@ bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned i
free_cmd_base(base_cmd);
amdgpu_cs_ctx_free(context_handle);
}
+
+void
+amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
+{
+ const int sdma_write_length = 1024;
+ amdgpu_context_handle context_handle;
+ amdgpu_bo_handle ib_result_handle;
+ amdgpu_bo_handle bo1, bo2;
+ amdgpu_bo_handle resources[3];
+ amdgpu_bo_list_handle bo_list;
+ void *ib_result_cpu;
+ struct amdgpu_cs_ib_info ib_info;
+ struct amdgpu_cs_request ibs_request;
+ struct amdgpu_cs_fence fence_status;
+ uint64_t bo1_mc, bo2_mc;
+ uint64_t ib_result_mc_address;
+ volatile unsigned char *bo1_cpu, *bo2_cpu;
+ amdgpu_va_handle bo1_va_handle, bo2_va_handle;
+ amdgpu_va_handle va_handle;
+ struct drm_amdgpu_info_hw_ip hw_ip_info;
+ int j, r;
+ uint32_t expired, ib_size;
+ struct amdgpu_cmd_base *base_cmd = get_cmd_base();
+
+ r = amdgpu_query_hw_ip_info(device_handle, AMDGPU_HW_IP_DMA, 0, &hw_ip_info);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+ igt_assert_eq(r, 0);
+
+ if (hang_type == DMA_CORRUPTED_HEADER_HANG)
+ ib_size = 4096;
+ else
+ ib_size = 4096 * 0x20000;
+
+ r = amdgpu_bo_alloc_and_map(device_handle, ib_size, 4096,
+ AMDGPU_GEM_DOMAIN_GTT, 0,
+ &ib_result_handle, &ib_result_cpu,
+ &ib_result_mc_address, &va_handle);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_bo_alloc_and_map(device_handle,
+ sdma_write_length, 4096,
+ AMDGPU_GEM_DOMAIN_GTT,
+ 0, &bo1,
+ (void**)&bo1_cpu, &bo1_mc,
+ &bo1_va_handle);
+ igt_assert_eq(r, 0);
+
+ /* set bo1 */
+ memset((void*)bo1_cpu, 0xaa, sdma_write_length);
+
+ /* allocate UC bo2 for sDMA use */
+ r = amdgpu_bo_alloc_and_map(device_handle,
+ sdma_write_length, 4096,
+ AMDGPU_GEM_DOMAIN_GTT,
+ 0, &bo2,
+ (void**)&bo2_cpu, &bo2_mc,
+ &bo2_va_handle);
+ igt_assert_eq(r, 0);
+
+ /* clear bo2 */
+ memset((void*)bo2_cpu, 0, sdma_write_length);
+
+ resources[0] = bo1;
+ resources[1] = bo2;
+ resources[2] = ib_result_handle;
+ r = amdgpu_bo_list_create(device_handle, 3,
+ resources, NULL, &bo_list);
+
+ /* fulfill PM4: with bad copy linear header */
+ base_cmd->attach_buf(base_cmd, ib_result_cpu, ib_size);
+ if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
+ base_cmd->emit(base_cmd, 0x23decd3d);
+ base_cmd->emit(base_cmd, (sdma_write_length - 1));
+ base_cmd->emit(base_cmd, 0);
+ base_cmd->emit(base_cmd, (0xffffffff & bo1_mc));
+ base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo1_mc) >> 32));
+ base_cmd->emit(base_cmd, (0xffffffff & bo2_mc));
+ base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo2_mc) >> 32));
+ } else {
+ for (j = 1; j < 0x20000; j++) {
+ base_cmd->emit(base_cmd, SDMA_PACKET(SDMA_OPCODE_COPY,
+ SDMA_COPY_SUB_OPCODE_LINEAR,
+ 0));
+ base_cmd->emit(base_cmd, (sdma_write_length - 1));
+ base_cmd->emit(base_cmd, 0);
+ base_cmd->emit(base_cmd, (0xffffffff & bo1_mc));
+ base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo1_mc) >> 32));
+ base_cmd->emit(base_cmd, (0xffffffff & bo2_mc));
+ base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo2_mc) >> 32));
+ base_cmd->emit(base_cmd, SDMA_PACKET(SDMA_OPCODE_COPY,
+ SDMA_COPY_SUB_OPCODE_LINEAR,
+ 0));
+ base_cmd->emit(base_cmd, (sdma_write_length - 1));
+ base_cmd->emit(base_cmd, 0);
+ base_cmd->emit(base_cmd, (0xffffffff & bo2_mc));
+ base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo2_mc) >> 32));
+ base_cmd->emit(base_cmd, (0xffffffff & bo1_mc));
+ base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo1_mc) >> 32));
+ }
+ }
+
+ /* exec command */
+ memset(&ib_info, 0, sizeof(struct amdgpu_cs_ib_info));
+ ib_info.ib_mc_address = ib_result_mc_address;
+ ib_info.size = base_cmd->cdw;
+
+ memset(&ibs_request, 0, sizeof(struct amdgpu_cs_request));
+ ibs_request.ip_type = AMDGPU_HW_IP_DMA;
+ ibs_request.ring = 0;
+ ibs_request.number_of_ibs = 1;
+ ibs_request.ibs = &ib_info;
+ ibs_request.resources = bo_list;
+ ibs_request.fence_info.handle = NULL;
+
+ r = amdgpu_cs_submit(context_handle, 0, &ibs_request, 1);
+ igt_assert_eq(r, 0);
+
+ memset(&fence_status, 0, sizeof(struct amdgpu_cs_fence));
+ fence_status.context = context_handle;
+ fence_status.ip_type = AMDGPU_HW_IP_DMA;
+ fence_status.ip_instance = 0;
+ fence_status.ring = 0;
+ fence_status.fence = ibs_request.seq_no;
+
+ r = amdgpu_cs_query_fence_status(&fence_status,
+ AMDGPU_TIMEOUT_INFINITE,
+ 0, &expired);
+ if (r != 0 && r != -ECANCELED && r != -ETIME)
+ igt_assert(0);
+
+ r = amdgpu_bo_list_destroy(bo_list);
+ igt_assert_eq(r, 0);
+
+ amdgpu_bo_unmap_and_free(ib_result_handle, va_handle,
+ ib_result_mc_address, 4096);
+
+ amdgpu_bo_unmap_and_free(bo1, bo1_va_handle, bo1_mc,
+ sdma_write_length);
+
+ amdgpu_bo_unmap_and_free(bo2, bo2_va_handle, bo2_mc,
+ sdma_write_length);
+ /* end of test */
+ r = amdgpu_cs_ctx_free(context_handle);
+ igt_assert_eq(r, 0);
+ free_cmd_base(base_cmd);
+}
diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h
index cc8eba7f7..9c0d245a9 100644
--- a/lib/amdgpu/amd_deadlock_helpers.h
+++ b/lib/amdgpu/amd_deadlock_helpers.h
@@ -24,11 +24,18 @@
#ifndef __AMD_DEADLOCK_HELPERS_H__
#define __AMD_DEADLOCK_HELPERS_H__
+enum hang_type {
+ DMA_CORRUPTED_HEADER_HANG,
+ DMA_SLOW_LINEARCOPY_HANG
+};
+
void
amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned ip_type);
void
bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned ip_type);
+void
+amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type);
#endif
diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
index 6147b7636..dc7ec4366 100644
--- a/tests/amdgpu/amd_deadlock.c
+++ b/tests/amdgpu/amd_deadlock.c
@@ -77,6 +77,22 @@ igt_main
}
}
+ igt_describe("Test-GPU-reset-by-sdma-corrupted-header-with-jobs");
+ igt_subtest_with_dynamic("amdgpu-deadlock-sdma-corrupted-header-test") {
+ if (arr_cap[AMD_IP_DMA]) {
+ igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test")
+ amdgpu_hang_sdma_helper(device, DMA_CORRUPTED_HEADER_HANG);
+ }
+ }
+
+ igt_describe("Test-GPU-reset-by-sdma-slow-linear-copy-with-jobs");
+ igt_subtest_with_dynamic("amdgpu-deadlock-sdma-slow-linear-copy") {
+ if (arr_cap[AMD_IP_DMA]) {
+ igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy")
+ amdgpu_hang_sdma_helper(device, DMA_SLOW_LINEARCOPY_HANG);
+ }
+ }
+
igt_fixture {
amdgpu_device_deinitialize(device);
drm_close_driver(fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread* [igt-dev] ✗ CI.xeBAT: failure for tests/amd_dispatch: add negative test for SDMA (rev2)
2023-10-18 5:33 [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA Jesse Zhang
@ 2023-10-18 7:45 ` Patchwork
2023-10-18 7:48 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-10-18 7:45 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9243 bytes --]
== Series Details ==
Series: tests/amd_dispatch: add negative test for SDMA (rev2)
URL : https://patchwork.freedesktop.org/series/125215/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7543_BAT -> XEIGTPW_10020_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10020_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10020_BAT, 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.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_10020_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_store@basic-store:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7543/bat-dg2-oem2/igt@xe_exec_store@basic-store.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-dg2-oem2/igt@xe_exec_store@basic-store.html
Known issues
------------
Here are the changes found in XEIGTPW_10020_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-adlp-7: NOTRUN -> [FAIL][3] ([Intel XE#609]) +2 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-adlp-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@invalid-set-prop-any:
- bat-atsm-2: NOTRUN -> [SKIP][4] ([i915#6077]) +33 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
- bat-atsm-2: NOTRUN -> [SKIP][5] ([Intel XE#782]) +5 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-atsm-2: NOTRUN -> [SKIP][6] ([Intel XE#784])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@kms_dsc@dsc-basic.html
- bat-adlp-7: NOTRUN -> [SKIP][7] ([Intel XE#423])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-adlp-7/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-atsm-2: NOTRUN -> [SKIP][8] ([Intel XE#541]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: NOTRUN -> [FAIL][9] ([Intel XE#480]) +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-atsm-2: NOTRUN -> [SKIP][10] ([Intel XE#540]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: NOTRUN -> [FAIL][11] ([Intel XE#750])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
- bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#783])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-atsm-2: NOTRUN -> [SKIP][13] ([i915#1836]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_prop_blob@basic:
- bat-atsm-2: NOTRUN -> [SKIP][14] ([Intel XE#780])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@kms_prop_blob@basic.html
* igt@kms_psr@cursor_plane_move:
- bat-atsm-2: NOTRUN -> [SKIP][15] ([Intel XE#535]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@kms_psr@cursor_plane_move.html
* igt@xe_compute@compute-square:
- bat-atsm-2: NOTRUN -> [SKIP][16] ([Intel XE#672])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@xe_compute@compute-square.html
* igt@xe_evict@evict-beng-small-external:
- bat-adlp-7: NOTRUN -> [SKIP][17] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-adlp-7/igt@xe_evict@evict-beng-small-external.html
* igt@xe_exec_fault_mode@twice-userptr:
- bat-adlp-7: NOTRUN -> [SKIP][18] ([Intel XE#288]) +17 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
- bat-atsm-2: NOTRUN -> [SKIP][19] ([Intel XE#288]) +17 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html
* igt@xe_huc_copy@huc_copy:
- bat-atsm-2: NOTRUN -> [SKIP][20] ([Intel XE#255])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@migrate:
- bat-adlp-7: NOTRUN -> [INCOMPLETE][21] ([Intel XE#753])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-adlp-7/igt@xe_live_ktest@migrate.html
* igt@xe_mmap@vram:
- bat-adlp-7: NOTRUN -> [SKIP][22] ([Intel XE#263])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-adlp-7/igt@xe_mmap@vram.html
#### Possible fixes ####
* igt@xe_module_load@load:
- bat-atsm-2: [INCOMPLETE][23] ([Intel XE#714]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7543/bat-atsm-2/igt@xe_module_load@load.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-atsm-2/igt@xe_module_load@load.html
#### Warnings ####
* igt@xe_exec_fault_mode@twice-invalid-fault:
- bat-pvc-2: [INCOMPLETE][25] ([Intel XE#613]) -> [INCOMPLETE][26] ([Intel XE#613] / [Intel XE#814])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7543/bat-pvc-2/igt@xe_exec_fault_mode@twice-invalid-fault.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/bat-pvc-2/igt@xe_exec_fault_mode@twice-invalid-fault.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#263]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/263
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/423
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/541
[Intel XE#609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/609
[Intel XE#613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/613
[Intel XE#672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/672
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#714]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/714
[Intel XE#750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/750
[Intel XE#753]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/753
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
[Intel XE#814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/814
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
Build changes
-------------
* IGT: IGT_7543 -> IGTPW_10020
* Linux: xe-439-cbcd3e95647ff14d508d1a42dce785693446c7f2 -> xe-441-4d039d7be23937e2b498ed783aa5b0d8801b377b
IGTPW_10020: 10020
IGT_7543: 688f12831f876590e084e9b13b4d5ab85fe13d51 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-439-cbcd3e95647ff14d508d1a42dce785693446c7f2: cbcd3e95647ff14d508d1a42dce785693446c7f2
xe-441-4d039d7be23937e2b498ed783aa5b0d8801b377b: 4d039d7be23937e2b498ed783aa5b0d8801b377b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10020/index.html
[-- Attachment #2: Type: text/html, Size: 10416 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/amd_dispatch: add negative test for SDMA (rev2)
2023-10-18 5:33 [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA Jesse Zhang
2023-10-18 7:45 ` [igt-dev] ✗ CI.xeBAT: failure for tests/amd_dispatch: add negative test for SDMA (rev2) Patchwork
@ 2023-10-18 7:48 ` Patchwork
2023-10-18 10:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-10-19 2:39 ` [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA vitaly prosyak
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-10-18 7:48 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3553 bytes --]
== Series Details ==
Series: tests/amd_dispatch: add negative test for SDMA (rev2)
URL : https://patchwork.freedesktop.org/series/125215/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13769 -> IGTPW_10020
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/index.html
Participating hosts (31 -> 30)
------------------------------
Missing (1): bat-jsl-3
Known issues
------------
Here are the changes found in IGTPW_10020 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@load:
- bat-adlp-6: [PASS][1] -> [DMESG-WARN][2] ([i915#1982] / [i915#8449])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/bat-adlp-6/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/bat-adlp-6/igt@i915_module_load@load.html
* igt@i915_selftest@live@mman:
- bat-rpls-1: [PASS][3] -> [TIMEOUT][4] ([i915#6794] / [i915#7392])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/bat-rpls-1/igt@i915_selftest@live@mman.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/bat-rpls-1/igt@i915_selftest@live@mman.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-rpls-1: [PASS][5] -> [WARN][6] ([i915#8747])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#1845] / [i915#9197])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc.html
#### Possible fixes ####
* igt@i915_selftest@live@mman:
- fi-elk-e7500: [INCOMPLETE][8] -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/fi-elk-e7500/igt@i915_selftest@live@mman.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/fi-elk-e7500/igt@i915_selftest@live@mman.html
* igt@kms_frontbuffer_tracking@basic:
- fi-bsw-nick: [FAIL][10] ([i915#9276]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#8449]: https://gitlab.freedesktop.org/drm/intel/issues/8449
[i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747
[i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197
[i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7543 -> IGTPW_10020
CI-20190529: 20190529
CI_DRM_13769: 30f23d5bc2534f1707286bbf60be32d234fb54c3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10020: 10020
IGT_7543: 688f12831f876590e084e9b13b4d5ab85fe13d51 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/index.html
[-- Attachment #2: Type: text/html, Size: 4289 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for tests/amd_dispatch: add negative test for SDMA (rev2)
2023-10-18 5:33 [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA Jesse Zhang
2023-10-18 7:45 ` [igt-dev] ✗ CI.xeBAT: failure for tests/amd_dispatch: add negative test for SDMA (rev2) Patchwork
2023-10-18 7:48 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-10-18 10:24 ` Patchwork
2023-10-19 2:39 ` [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA vitaly prosyak
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-10-18 10:24 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 92738 bytes --]
== Series Details ==
Series: tests/amd_dispatch: add negative test for SDMA (rev2)
URL : https://patchwork.freedesktop.org/series/125215/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13769_full -> IGTPW_10020_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10020_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10020_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_10020/index.html
Participating hosts (10 -> 11)
------------------------------
Additional (1): shard-tglu0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10020_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_parallel@fds@vcs0:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg2-2/igt@gem_exec_parallel@fds@vcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@gem_exec_parallel@fds@vcs0.html
* igt@gem_exec_parallel@fds@vcs1:
- shard-dg1: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg1-17/igt@gem_exec_parallel@fds@vcs1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-18/igt@gem_exec_parallel@fds@vcs1.html
New tests
---------
New tests have been introduced between CI_DRM_13769_full and IGTPW_10020_full:
### New IGT tests (1) ###
* igt@kms_plane_lowres:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_10020_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-1/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-13/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#7701])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-4/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +10 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@drm_fdinfo@busy@vcs1.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][11] -> [FAIL][12] ([i915#7742])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +12 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: NOTRUN -> [FAIL][14] ([i915#7742])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#7297])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_persistence@engines-hostile@vcs0:
- shard-mtlp: [PASS][19] -> [FAIL][20] ([i915#2410]) +2 other tests fail
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vcs0.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-4/igt@gem_ctx_persistence@engines-hostile@vcs0.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-1/igt@gem_ctx_sseu@mmap-args.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-8/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg2: [PASS][26] -> [ABORT][27] ([i915#7975] / [i915#8213])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg2-11/igt@gem_eio@hibernate.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@gem_eio@hibernate.html
- shard-rkl: NOTRUN -> [ABORT][28] ([i915#7975] / [i915#8213])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg2: [PASS][29] -> [FAIL][30] ([i915#5784])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg2-11/igt@gem_eio@reset-stress.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: NOTRUN -> [FAIL][31] ([i915#5784])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4771])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: NOTRUN -> [FAIL][34] ([i915#2842])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][35] -> [FAIL][36] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-2/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][38] ([i915#2842])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-3/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][42] ([fdo#112283])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-7/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_params@secure-non-root:
- shard-tglu: NOTRUN -> [SKIP][43] ([fdo#112283])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-7/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +13 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-2/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +8 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-engines@ccs0:
- shard-mtlp: [PASS][48] -> [FAIL][49] ([i915#9119]) +4 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-7/igt@gem_exec_schedule@preempt-engines@ccs0.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html
* igt@gem_exec_schedule@preempt-engines@rcs0:
- shard-mtlp: [PASS][50] -> [DMESG-FAIL][51] ([i915#8962])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-7/igt@gem_exec_schedule@preempt-engines@rcs0.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4812]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-13/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_gtt_cpu_tlb:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +11 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-18/igt@gem_gtt_cpu_tlb.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-4/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][58] -> [TIMEOUT][59] ([i915#5493])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#8289])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-7/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-wc:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-1/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +7 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +5 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +8 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-2/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) +12 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4270])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-7/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-15/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-7/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-8/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190]) +17 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-7/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4079]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][77] ([fdo#109312])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-8/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4879])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-15/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-3/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-4/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3282])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-14/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4958])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-2/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@vma-merge:
- shard-rkl: NOTRUN -> [FAIL][86] ([i915#3318])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-1/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][87] ([fdo#109289]) +6 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@gen7_exec_parse@basic-rejected.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][88] ([fdo#109289]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-1/igt@gen7_exec_parse@chained-batch.html
- shard-dg1: NOTRUN -> [SKIP][89] ([fdo#109289]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-17/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-tglu: NOTRUN -> [SKIP][90] ([fdo#109289]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-5/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@gen9_exec_parse@allowed-single.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-3/igt@gen9_exec_parse@allowed-single.html
- shard-apl: [PASS][93] -> [INCOMPLETE][94] ([i915#5566])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-apl4/igt@gen9_exec_parse@allowed-single.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-apl1/igt@gen9_exec_parse@allowed-single.html
- shard-glk: [PASS][95] -> [INCOMPLETE][96] ([i915#5566])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-glk2/igt@gen9_exec_parse@allowed-single.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-glk3/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-10/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#2527]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-17/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#6227])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [PASS][101] -> [ABORT][102] ([i915#8489] / [i915#8668])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#7178])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
- shard-apl: NOTRUN -> [FAIL][104] ([i915#7036])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-apl1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#7091])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#8399]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6621])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-6/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][108] ([i915#8346])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-8/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#8925]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#8925]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-2/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#4387])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg1: NOTRUN -> [SKIP][112] ([fdo#109303])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-dg1: NOTRUN -> [SKIP][113] ([fdo#109302])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@mock@memory_region:
- shard-rkl: NOTRUN -> [DMESG-WARN][114] ([i915#9311])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@i915_selftest@mock@memory_region.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][115] ([i915#9311])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-3/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@debugfs-reader:
- shard-dg2: [PASS][116] -> [FAIL][117] ([fdo#103375]) +1 other test fail
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg2-1/igt@i915_suspend@debugfs-reader.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-1/igt@i915_suspend@debugfs-reader.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4212])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4212])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#111614])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][122] ([fdo#111615] / [i915#5286])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#5286])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5286]) +8 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111614]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-10/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][127] ([fdo#111614] / [i915#3638]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][128] ([fdo#111614]) +5 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3638]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-15/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [FAIL][130] ([i915#3743])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][131] ([fdo#110723]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][132] ([fdo#111615])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][134] ([fdo#111615]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][135] ([fdo#111615]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +8 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#2705])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-17/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#2705])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-6/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#4087] / [i915#7213]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#3742])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#4087]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-tglu: NOTRUN -> [SKIP][142] ([fdo#111827])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-3/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg1: NOTRUN -> [SKIP][143] ([fdo#111827])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-13/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][144] ([fdo#111827]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][145] ([fdo#111827]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-1/igt@kms_chamelium_color@degamma.html
- shard-mtlp: NOTRUN -> [SKIP][146] ([fdo#111827])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#7828]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-1/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#7828]) +10 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#7828]) +9 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#7828]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#7116])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#3299])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#3299]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#7118])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-5/igt@kms_content_protection@lic.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#7118]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-3/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555]) +6 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][160] ([fdo#109279] / [i915#3359])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-tglu: NOTRUN -> [SKIP][161] ([fdo#109279] / [i915#3359])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#3359])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3359]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8814])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#3359]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3546])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109274] / [i915#5354]) +6 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-apl: NOTRUN -> [SKIP][170] ([fdo#109271] / [fdo#111767])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-apl4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][171] ([fdo#109274] / [fdo#111767] / [i915#5354])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-rkl: NOTRUN -> [SKIP][172] ([fdo#111825]) +6 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-tglu: NOTRUN -> [SKIP][173] ([fdo#109274])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#4103] / [i915#4213])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#4103])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#9227])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-18/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#9226] / [i915#9261]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-18/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8827])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#8812])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@fbc:
- shard-snb: [PASS][181] -> [SKIP][182] ([fdo#109271]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-snb6/igt@kms_fbcon_fbt@fbc.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-snb2/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][183] ([fdo#109274] / [i915#3637]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-5/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3637]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-3/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg1: NOTRUN -> [SKIP][185] ([fdo#111767] / [fdo#111825]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-snb: NOTRUN -> [SKIP][186] ([fdo#109271] / [fdo#111767])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-snb7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][187] -> [FAIL][188] ([i915#79])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#8381])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][190] ([fdo#109274]) +7 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-rkl: NOTRUN -> [SKIP][191] ([fdo#111767] / [fdo#111825])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#2672]) +4 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#2672]) +5 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2672])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-dg2: [PASS][198] -> [FAIL][199] ([i915#6880])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#1825]) +5 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#5354]) +40 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#5439])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3023]) +17 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3458]) +22 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8708]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#8708]) +12 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][207] ([fdo#111825]) +47 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][208] ([fdo#109280]) +20 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#3458]) +21 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][210] ([fdo#110189]) +8 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][211] ([fdo#111825] / [i915#1825]) +28 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-apl: NOTRUN -> [SKIP][212] ([fdo#109271]) +33 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-apl3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#8708]) +15 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) +3 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-10/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +5 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#1839])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#6301]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-hdmi-a-1:
- shard-snb: NOTRUN -> [SKIP][220] ([fdo#109271]) +8 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-snb1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-hdmi-a-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- shard-apl: NOTRUN -> [INCOMPLETE][221] ([i915#180] / [i915#9392])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8821])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#3555]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#8806])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-3/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#6953])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-dg1: NOTRUN -> [FAIL][226] ([i915#8292])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#5176] / [i915#9423]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#5235]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#5235]) +11 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#5235]) +19 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#6524] / [i915#6805])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#658]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#658])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][234] ([fdo#111068] / [i915#658])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-8/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][235] ([fdo#111068] / [i915#658]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#4348])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu: NOTRUN -> [SKIP][237] ([fdo#109642] / [fdo#111068] / [i915#658])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-10/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][238] ([fdo#111068] / [i915#658]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_mmap_cpu:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#1072]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-2/igt@kms_psr@cursor_mmap_cpu.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#1072] / [i915#4078]) +8 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-18/igt@kms_psr@psr2_cursor_plane_onoff.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#1072]) +10 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-6/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#4235]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][243] ([fdo#111615] / [i915#5289])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][244] ([fdo#111615] / [i915#5289]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#4235] / [i915#5190]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#4235])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#4098]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-2/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][248] -> [FAIL][249] ([IGT#2])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg2-11/igt@kms_sysfs_edid_timing.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#8623])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][251] -> [FAIL][252] ([i915#9196]) +1 other test fail
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [PASS][253] -> [FAIL][254] ([i915#9196])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-vga-1:
- shard-snb: NOTRUN -> [DMESG-WARN][255] ([i915#8841]) +1 other test dmesg-warn
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-snb2/igt@kms_vblank@ts-continuation-suspend@pipe-a-vga-1.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#2437]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-2/igt@kms_writeback@writeback-fb-id.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#2437])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@kms_writeback@writeback-fb-id.html
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#2437])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-7/igt@kms_writeback@writeback-fb-id.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#2436])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#2434])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-15/igt@perf@mi-rpc.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [PASS][261] -> [FAIL][262] ([i915#7484])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][263] -> [FAIL][264] ([i915#4349])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@busy-hang@rcs0:
- shard-mtlp: [PASS][265] -> [ABORT][266] ([i915#9414]) +1 other test abort
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-8/igt@perf_pmu@busy-hang@rcs0.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-6/igt@perf_pmu@busy-hang@rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#8850])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-6/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg1: NOTRUN -> [SKIP][268] ([fdo#112283])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-15/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#8516])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#8516])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-dg1: NOTRUN -> [SKIP][271] ([fdo#109291])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-15/igt@prime_udl.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3708] / [i915#4077])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][273] ([fdo#109295] / [fdo#111656] / [i915#3708])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#3708] / [i915#4077]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#3708]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-11/igt@prime_vgem@fence-read-hang.html
- shard-rkl: NOTRUN -> [SKIP][276] ([fdo#109295] / [i915#3708])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#3708])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@prime_vgem@fence-read-hang.html
- shard-tglu: NOTRUN -> [SKIP][278] ([fdo#109295]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-9/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_get_bo_offset@create-get-offsets:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#2575]) +15 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@v3d/v3d_get_bo_offset@create-get-offsets.html
* igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#2575])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-6/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#2575]) +13 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-3/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-tglu: NOTRUN -> [SKIP][282] ([fdo#109315] / [i915#2575]) +5 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-6/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@v3d/v3d_wait_bo@used-bo-1ns:
- shard-rkl: NOTRUN -> [SKIP][283] ([fdo#109315]) +8 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@v3d/v3d_wait_bo@used-bo-1ns.html
* igt@vc4/vc4_create_bo@create-bo-0:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#7711]) +8 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-2/igt@vc4/vc4_create_bo@create-bo-0.html
* igt@vc4/vc4_tiling@set-get:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#2575]) +4 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-7/igt@vc4/vc4_tiling@set-get.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#7711]) +7 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-16/igt@vc4/vc4_wait_bo@used-bo-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#7711]) +6 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#7711])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-6/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][289] ([i915#7742]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][291] ([i915#7297]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][293] ([i915#6268]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@engines-hang@vcs0:
- shard-mtlp: [FAIL][295] ([i915#2410]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-3/igt@gem_ctx_persistence@engines-hang@vcs0.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-2/igt@gem_ctx_persistence@engines-hang@vcs0.html
* igt@gem_ctx_persistence@saturated-hostile@vecs0:
- shard-mtlp: [FAIL][297] ([i915#7816]) -> [PASS][298] +2 other tests pass
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-5/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-3/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
* igt@gem_eio@kms:
- shard-dg1: [FAIL][299] ([i915#5784]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg1-16/igt@gem_eio@kms.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-12/igt@gem_eio@kms.html
* igt@gem_exec_capture@pi@vcs1:
- shard-mtlp: [FAIL][301] ([i915#4475] / [i915#7765]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-3/igt@gem_exec_capture@pi@vcs1.html
* igt@gem_exec_capture@pi@vecs0:
- shard-mtlp: [DMESG-WARN][303] ([i915#5591]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-2/igt@gem_exec_capture@pi@vecs0.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-3/igt@gem_exec_capture@pi@vecs0.html
* igt@gem_exec_endless@dispatch@vecs0:
- shard-tglu: [TIMEOUT][305] ([i915#3778]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-tglu-6/igt@gem_exec_endless@dispatch@vecs0.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-8/igt@gem_exec_endless@dispatch@vecs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][307] ([i915#2846]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
- shard-glk: [FAIL][309] ([i915#2846]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-glk1/igt@gem_exec_fair@basic-deadline.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-glk3/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: [FAIL][311] ([i915#2842]) -> [PASS][312] +1 other test pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-glk1/igt@gem_exec_fair@basic-none-share@rcs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-dg1: [INCOMPLETE][313] ([i915#7975]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg1-19/igt@gem_exec_suspend@basic-s4-devices@smem.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@gem_exec_suspend@basic-s4-devices@smem.html
- shard-tglu: [ABORT][315] ([i915#7975] / [i915#8213]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-4/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_exec_whisper@basic-fds-forked-all:
- shard-tglu: [INCOMPLETE][317] ([i915#6755] / [i915#7392]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-tglu-5/igt@gem_exec_whisper@basic-fds-forked-all.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-5/igt@gem_exec_whisper@basic-fds-forked-all.html
* igt@i915_hangman@detector@ccs0:
- shard-mtlp: [ABORT][319] ([i915#9414]) -> [PASS][320] +1 other test pass
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-4/igt@i915_hangman@detector@ccs0.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-1/igt@i915_hangman@detector@ccs0.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-dg1: [FAIL][321] ([i915#3591]) -> [PASS][322] +2 other tests pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_selftest@live@uncore:
- shard-tglu: [INCOMPLETE][323] -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-tglu-3/igt@i915_selftest@live@uncore.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-tglu-9/igt@i915_selftest@live@uncore.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][325] ([i915#5138]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_color@ctm-negative@pipe-c:
- shard-dg1: [INCOMPLETE][327] -> [PASS][328] +1 other test pass
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg1-16/igt@kms_color@ctm-negative@pipe-c.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-13/igt@kms_color@ctm-negative@pipe-c.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][329] ([i915#2346]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-glk: [FAIL][331] ([i915#2346]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-mtlp: [DMESG-WARN][333] ([i915#2017]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-3/igt@kms_cursor_legacy@single-move@all-pipes.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [FAIL][335] ([i915#6880]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html
* {igt@kms_pm_rpm@dpms-mode-unset-lpsp}:
- shard-rkl: [SKIP][337] ([i915#9519]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
- shard-dg1: [SKIP][339] ([i915#9519]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg1-16/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg1-19/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr@psr2_suspend:
- shard-mtlp: [FAIL][341] -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-3/igt@kms_psr@psr2_suspend.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-7/igt@kms_psr@psr2_suspend.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-rkl: [INCOMPLETE][343] ([i915#8875]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-270.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [FAIL][345] ([i915#4349]) -> [PASS][346] +3 other tests pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-mtlp-6/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][347] ([i915#7118] / [i915#7162]) -> [SKIP][348] ([i915#7118])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-dg2-11/igt@kms_content_protection@type1.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-dg2-10/igt@kms_content_protection@type1.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][349] ([fdo#109285] / [i915#4098]) -> [SKIP][350] ([fdo#109285])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13769/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[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#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[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#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[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#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[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#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[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#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765
[i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[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#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[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#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119
[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#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298
[i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392
[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#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7543 -> IGTPW_10020
CI-20190529: 20190529
CI_DRM_13769: 30f23d5bc2534f1707286bbf60be32d234fb54c3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10020: 10020
IGT_7543: 688f12831f876590e084e9b13b4d5ab85fe13d51 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10020/index.html
[-- Attachment #2: Type: text/html, Size: 111820 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA
2023-10-18 5:33 [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA Jesse Zhang
` (2 preceding siblings ...)
2023-10-18 10:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-10-19 2:39 ` vitaly prosyak
3 siblings, 0 replies; 10+ messages in thread
From: vitaly prosyak @ 2023-10-19 2:39 UTC (permalink / raw)
To: Jesse Zhang, igt-dev
Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
[-- Attachment #1: Type: text/plain, Size: 11462 bytes --]
Hi Jesse,
It looks much better now, thanks!
I tested locally your patch.
There are some formatting issues , for example:
vprosyak@desktop-host:~/src/igt-gpu-tools$ ../linux/scripts/checkpatch.pl -f --no-tree /home/vprosyak/src/igt-gpu-tools/lib/amdgpu/amd_deadlock_helpers.c
WARNING: Use of volatile is usually wrong: see Documentation/process/volatile-considered-harmful.rst
#267: FILE: /home/vprosyak/src/igt-gpu-tools/lib/amdgpu/amd_deadlock_helpers.c:267:
+ volatile unsigned char *bo1_cpu, *bo2_cpu;
ERROR: "(foo**)" should be "(foo **)"
#296: FILE: /home/vprosyak/src/igt-gpu-tools/lib/amdgpu/amd_deadlock_helpers.c:296:
+ (void**)&bo1_cpu, &bo1_mc,
ERROR: "(foo*)" should be "(foo *)"
#301: FILE: /home/vprosyak/src/igt-gpu-tools/lib/amdgpu/amd_deadlock_helpers.c:301:
+ memset((void*)bo1_cpu, 0xaa, sdma_write_length);
ERROR: "(foo**)" should be "(foo **)"
#308: FILE: /home/vprosyak/src/igt-gpu-tools/lib/amdgpu/amd_deadlock_helpers.c:308:
+ (void**)&bo2_cpu, &bo2_mc,
ERROR: "(foo*)" should be "(foo *)"
#313: FILE: /home/vprosyak/src/igt-gpu-tools/lib/amdgpu/amd_deadlock_helpers.c:313:
+ memset((void*)bo2_cpu, 0, sdma_write_length);
total: 4 errors, 1 warnings, 398 lines checked
NOTE: For some of the reported defects, checkpatch may be able to
mechanically convert to the typical style using --fix or --fix-inplace.
/home/vprosyak/src/igt-gpu-tools/lib/amdgpu/amd_deadlock_helpers.c has style problems, please review.
I still have some comments to be addressed see below
Thanks, Vitaly
On 2023-10-18 01:33, Jesse Zhang wrote:
> Issue corrupted header or slow sdma linear copy
> to trigger SDMA hang test.
>
> V2:
> - avoid generating warning,
> and optimize logical code (Vitlaly)
>
> 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_deadlock_helpers.c | 148 ++++++++++++++++++++++++++++++
> lib/amdgpu/amd_deadlock_helpers.h | 7 ++
> tests/amdgpu/amd_deadlock.c | 16 ++++
> 3 files changed, 171 insertions(+)
>
> diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
> index a6be5f02a..8f2d63772 100644
> --- a/lib/amdgpu/amd_deadlock_helpers.c
> +++ b/lib/amdgpu/amd_deadlock_helpers.c
> @@ -248,3 +248,151 @@ bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned i
> free_cmd_base(base_cmd);
> amdgpu_cs_ctx_free(context_handle);
> }
> +
> +void
> +amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
> +{
> + const int sdma_write_length = 1024;
> + amdgpu_context_handle context_handle;
> + amdgpu_bo_handle ib_result_handle;
> + amdgpu_bo_handle bo1, bo2;
> + amdgpu_bo_handle resources[3];
> + amdgpu_bo_list_handle bo_list;
> + void *ib_result_cpu;
> + struct amdgpu_cs_ib_info ib_info;
> + struct amdgpu_cs_request ibs_request;
> + struct amdgpu_cs_fence fence_status;
> + uint64_t bo1_mc, bo2_mc;
> + uint64_t ib_result_mc_address;
> + volatile unsigned char *bo1_cpu, *bo2_cpu;
> + amdgpu_va_handle bo1_va_handle, bo2_va_handle;
> + amdgpu_va_handle va_handle;
> + struct drm_amdgpu_info_hw_ip hw_ip_info;
> + int j, r;
> + uint32_t expired, ib_size;
> + struct amdgpu_cmd_base *base_cmd = get_cmd_base();
These 2 lines below are not required , 'hw_ip_info' is not used.
> + r = amdgpu_query_hw_ip_info(device_handle, AMDGPU_HW_IP_DMA, 0, &hw_ip_info);
> + igt_assert_eq(r, 0);
> +
> + r = amdgpu_cs_ctx_create(device_handle, &context_handle);
> + igt_assert_eq(r, 0);
> +
> + if (hang_type == DMA_CORRUPTED_HEADER_HANG)
> + ib_size = 4096;
> + else
> + ib_size = 4096 * 0x20000;
> +
> + r = amdgpu_bo_alloc_and_map(device_handle, ib_size, 4096,
> + AMDGPU_GEM_DOMAIN_GTT, 0,
> + &ib_result_handle, &ib_result_cpu,
> + &ib_result_mc_address, &va_handle);
> + igt_assert_eq(r, 0);
> +
> + r = amdgpu_bo_alloc_and_map(device_handle,
> + sdma_write_length, 4096,
> + AMDGPU_GEM_DOMAIN_GTT,
> + 0, &bo1,
> + (void**)&bo1_cpu, &bo1_mc,
> + &bo1_va_handle);
> + igt_assert_eq(r, 0);
> +
> + /* set bo1 */
> + memset((void*)bo1_cpu, 0xaa, sdma_write_length);
> +
> + /* allocate UC bo2 for sDMA use */
> + r = amdgpu_bo_alloc_and_map(device_handle,
> + sdma_write_length, 4096,
> + AMDGPU_GEM_DOMAIN_GTT,
> + 0, &bo2,
> + (void**)&bo2_cpu, &bo2_mc,
> + &bo2_va_handle);
> + igt_assert_eq(r, 0);
> +
> + /* clear bo2 */
> + memset((void*)bo2_cpu, 0, sdma_write_length);
> +
> + resources[0] = bo1;
> + resources[1] = bo2;
> + resources[2] = ib_result_handle;
> + r = amdgpu_bo_list_create(device_handle, 3,
> + resources, NULL, &bo_list);
> +
> + /* fulfill PM4: with bad copy linear header */
> + base_cmd->attach_buf(base_cmd, ib_result_cpu, ib_size);
Can you use the following ASIC independent function :
sdma_ring_copy_linear(const struct amdgpu_ip_funcs *func,
const struct amdgpu_ring_context *context,
uint32_t *pm4_dw)
The existent example is into 'amdgpu_command_submission_copy_linear_helper'.
Then you need corrupt/overwrite header with value '0x23decd3d' based on your proposal and the following function could be used:
static void
cmd_emit_at_offset(struct amdgpu_cmd_base *base, uint32_t value, uint32_t offset_dwords)
with appropriate comment.
> + if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
> + base_cmd->emit(base_cmd, 0x23decd3d);
> + base_cmd->emit(base_cmd, (sdma_write_length - 1));
> + base_cmd->emit(base_cmd, 0);
> + base_cmd->emit(base_cmd, (0xffffffff & bo1_mc));
> + base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo1_mc) >> 32));
> + base_cmd->emit(base_cmd, (0xffffffff & bo2_mc));
> + base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo2_mc) >> 32));
> + } else {
We can use also here sdma_ring_copy_linear in the loop
> + for (j = 1; j < 0x20000; j++) {
> + base_cmd->emit(base_cmd, SDMA_PACKET(SDMA_OPCODE_COPY,
> + SDMA_COPY_SUB_OPCODE_LINEAR,
> + 0));
> + base_cmd->emit(base_cmd, (sdma_write_length - 1));
> + base_cmd->emit(base_cmd, 0);
> + base_cmd->emit(base_cmd, (0xffffffff & bo1_mc));
> + base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo1_mc) >> 32));
> + base_cmd->emit(base_cmd, (0xffffffff & bo2_mc));
> + base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo2_mc) >> 32));
> + base_cmd->emit(base_cmd, SDMA_PACKET(SDMA_OPCODE_COPY,
> + SDMA_COPY_SUB_OPCODE_LINEAR,
> + 0));
> + base_cmd->emit(base_cmd, (sdma_write_length - 1));
> + base_cmd->emit(base_cmd, 0);
> + base_cmd->emit(base_cmd, (0xffffffff & bo2_mc));
> + base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo2_mc) >> 32));
> + base_cmd->emit(base_cmd, (0xffffffff & bo1_mc));
> + base_cmd->emit(base_cmd, ((0xffffffff00000000 & bo1_mc) >> 32));
> + }
> + }
The whole logic would be become much cleaner , like into
void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device,
const struct amdgpu_ip_block_version *ip_block)
We can use 'struct amdgpu_ring_context *ring_context;' and avoid multiple variable on the stack .
Using the approach mentioned above the code would become much cleaner even if the similar routine 'bad_access_helper' uses
'base_cmd->emit' has several custom operations that are not generic, and we do not currently have it as part of 'struct amdgpu_ip_func'
Also there is another change required (add return value)
from
void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_type,
struct amdgpu_ring_context *ring_context)
to
*int* amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_type,
struct amdgpu_ring_context *ring_context)
and the return value could be checked as following into existent logic.
(r != 0 && r != -ECANCELED && r != -ETIME)
If the above approach cannot be implemented, let me know then we can back to your existing logic.
> +
> + /* exec command */
> + memset(&ib_info, 0, sizeof(struct amdgpu_cs_ib_info));
> + ib_info.ib_mc_address = ib_result_mc_address;
> + ib_info.size = base_cmd->cdw;
> +
> + memset(&ibs_request, 0, sizeof(struct amdgpu_cs_request));
> + ibs_request.ip_type = AMDGPU_HW_IP_DMA;
> + ibs_request.ring = 0;
> + ibs_request.number_of_ibs = 1;
> + ibs_request.ibs = &ib_info;
> + ibs_request.resources = bo_list;
> + ibs_request.fence_info.handle = NULL;
> +
> + r = amdgpu_cs_submit(context_handle, 0, &ibs_request, 1);
> + igt_assert_eq(r, 0);
> +
> + memset(&fence_status, 0, sizeof(struct amdgpu_cs_fence));
> + fence_status.context = context_handle;
> + fence_status.ip_type = AMDGPU_HW_IP_DMA;
> + fence_status.ip_instance = 0;
> + fence_status.ring = 0;
> + fence_status.fence = ibs_request.seq_no;
> +
> + r = amdgpu_cs_query_fence_status(&fence_status,
> + AMDGPU_TIMEOUT_INFINITE,
> + 0, &expired);
> + if (r != 0 && r != -ECANCELED && r != -ETIME)
> + igt_assert(0);
> +
> + r = amdgpu_bo_list_destroy(bo_list);
> + igt_assert_eq(r, 0);
> +
> + amdgpu_bo_unmap_and_free(ib_result_handle, va_handle,
> + ib_result_mc_address, 4096);
> +
> + amdgpu_bo_unmap_and_free(bo1, bo1_va_handle, bo1_mc,
> + sdma_write_length);
> +
> + amdgpu_bo_unmap_and_free(bo2, bo2_va_handle, bo2_mc,
> + sdma_write_length);
> + /* end of test */
> + r = amdgpu_cs_ctx_free(context_handle);
> + igt_assert_eq(r, 0);
> + free_cmd_base(base_cmd);
> +}
> diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h
> index cc8eba7f7..9c0d245a9 100644
> --- a/lib/amdgpu/amd_deadlock_helpers.h
> +++ b/lib/amdgpu/amd_deadlock_helpers.h
> @@ -24,11 +24,18 @@
> #ifndef __AMD_DEADLOCK_HELPERS_H__
> #define __AMD_DEADLOCK_HELPERS_H__
>
> +enum hang_type {
> + DMA_CORRUPTED_HEADER_HANG,
> + DMA_SLOW_LINEARCOPY_HANG
> +};
> +
> void
> amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned ip_type);
>
> void
> bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned ip_type);
>
> +void
> +amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type);
> #endif
>
> diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
> index 6147b7636..dc7ec4366 100644
> --- a/tests/amdgpu/amd_deadlock.c
> +++ b/tests/amdgpu/amd_deadlock.c
> @@ -77,6 +77,22 @@ igt_main
> }
> }
>
> + igt_describe("Test-GPU-reset-by-sdma-corrupted-header-with-jobs");
> + igt_subtest_with_dynamic("amdgpu-deadlock-sdma-corrupted-header-test") {
> + if (arr_cap[AMD_IP_DMA]) {
> + igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test")
> + amdgpu_hang_sdma_helper(device, DMA_CORRUPTED_HEADER_HANG);
> + }
> + }
> +
> + igt_describe("Test-GPU-reset-by-sdma-slow-linear-copy-with-jobs");
> + igt_subtest_with_dynamic("amdgpu-deadlock-sdma-slow-linear-copy") {
> + if (arr_cap[AMD_IP_DMA]) {
> + igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy")
> + amdgpu_hang_sdma_helper(device, DMA_SLOW_LINEARCOPY_HANG);
> + }
> + }
> +
> igt_fixture {
> amdgpu_device_deinitialize(device);
> drm_close_driver(fd);
[-- Attachment #2: Type: text/html, Size: 14487 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA
@ 2023-10-20 5:21 Jesse Zhang
2023-10-20 11:37 ` Kamil Konieczny
2023-10-22 3:42 ` vitaly prosyak
0 siblings, 2 replies; 10+ messages in thread
From: Jesse Zhang @ 2023-10-20 5:21 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
Issue corrupted header or slow sdma linear copy
to trigger SDMA hang test.
V3:
- avoid generating warning,
and optimize logical code. (Vitlaly)
- Use existing interfaces
to clean up code. (Vitaly)
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 | 46 +++++++++------
lib/amdgpu/amd_command_submission.h | 3 +-
lib/amdgpu/amd_deadlock_helpers.c | 90 +++++++++++++++++++++++++++++
lib/amdgpu/amd_deadlock_helpers.h | 7 +++
tests/amdgpu/amd_basic.c | 4 +-
tests/amdgpu/amd_deadlock.c | 16 +++++
tests/amdgpu/amd_security.c | 4 +-
7 files changed, 148 insertions(+), 22 deletions(-)
diff --git a/lib/amdgpu/amd_command_submission.c b/lib/amdgpu/amd_command_submission.c
index 02cf9357b..b674ba640 100644
--- a/lib/amdgpu/amd_command_submission.c
+++ b/lib/amdgpu/amd_command_submission.c
@@ -18,7 +18,7 @@
*/
void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_type,
- struct amdgpu_ring_context *ring_context)
+ struct amdgpu_ring_context *ring_context, int expect)
{
int r;
uint32_t expired;
@@ -31,15 +31,23 @@ void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_typ
amdgpu_bo_handle *all_res = alloca(sizeof(ring_context->resources[0]) * (ring_context->res_cnt + 1));
+ if (expect) {
+ /* allocate IB */
+ r = amdgpu_bo_alloc_and_map(device, ring_context->write_length, 4096,
+ AMDGPU_GEM_DOMAIN_GTT, 0,
+ &ib_result_handle, &ib_result_cpu,
+ &ib_result_mc_address, &va_handle);
+ } else {
+ /* prepare CS */
+ igt_assert(ring_context->pm4_dw <= 1024);
+ /* allocate IB */
+ r = amdgpu_bo_alloc_and_map(device, 4096, 4096,
+ AMDGPU_GEM_DOMAIN_GTT, 0,
+ &ib_result_handle, &ib_result_cpu,
+ &ib_result_mc_address, &va_handle);
- /* prepare CS */
- igt_assert(ring_context->pm4_dw <= 1024);
- /* allocate IB */
- r = amdgpu_bo_alloc_and_map(device, 4096, 4096,
- AMDGPU_GEM_DOMAIN_GTT, 0,
- &ib_result_handle, &ib_result_cpu,
- &ib_result_mc_address, &va_handle);
+ }
igt_assert_eq(r, 0);
/* copy PM4 packet to ring from caller */
@@ -81,9 +89,13 @@ void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_typ
r = amdgpu_cs_query_fence_status(&fence_status,
AMDGPU_TIMEOUT_INFINITE,
0, &expired);
- igt_assert_eq(r, 0);
- igt_assert_eq(expired, true);
-
+ if (expect) {
+ igt_assert_neq(r, 0);
+ igt_assert_neq(expired, true);
+ } else {
+ igt_assert_eq(r, 0);
+ igt_assert_eq(expired, true);
+ }
amdgpu_bo_unmap_and_free(ib_result_handle, va_handle,
ib_result_mc_address, 4096);
}
@@ -145,7 +157,7 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
ring_context->ring_id = ring_id;
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* verify if SDMA test result meets with expected */
i = 0;
@@ -155,20 +167,20 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
} else if (ip_block->type == AMDGPU_HW_IP_GFX) {
ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ 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);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* 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);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* here bo_cpu[0] should be unchanged, still is 0x12345678, otherwise failed*/
igt_assert_eq(ring_context->bo_cpu[0], ring_context->bo_cpu_origin);
}
@@ -236,7 +248,7 @@ void amdgpu_command_submission_const_fill_helper(amdgpu_device_handle device,
/* fulfill PM4: test DMA const fill */
ip_block->funcs->const_fill(ip_block->funcs, ring_context, &ring_context->pm4_dw);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* verify if SDMA test result meets with expected */
r = ip_block->funcs->compare(ip_block->funcs, ring_context, 4);
@@ -322,7 +334,7 @@ void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device,
ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* verify if SDMA test result meets with expected */
r = ip_block->funcs->compare_pattern(ip_block->funcs, ring_context, 4);
diff --git a/lib/amdgpu/amd_command_submission.h b/lib/amdgpu/amd_command_submission.h
index 58f3221a3..44f0cc958 100644
--- a/lib/amdgpu/amd_command_submission.h
+++ b/lib/amdgpu/amd_command_submission.h
@@ -29,7 +29,8 @@
#include "amd_ip_blocks.h"
void amdgpu_test_exec_cs_helper(amdgpu_device_handle device,
- unsigned int ip_type, struct amdgpu_ring_context *ring_context);
+ unsigned int ip_type, struct amdgpu_ring_context *ring_context,
+ int expect);
void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
const struct amdgpu_ip_block_version *ip_block,
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index a6be5f02a..5b7d51d94 100644
--- a/lib/amdgpu/amd_deadlock_helpers.c
+++ b/lib/amdgpu/amd_deadlock_helpers.c
@@ -13,6 +13,7 @@
#include "amd_memory.h"
#include "amd_deadlock_helpers.h"
#include "amd_ip_blocks.h"
+#include "lib/amdgpu/amd_command_submission.h"
#define MAX_JOB_COUNT 200
@@ -248,3 +249,92 @@ bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned i
free_cmd_base(base_cmd);
amdgpu_cs_ctx_free(context_handle);
}
+
+void
+amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
+{
+ int j, r;
+ uint32_t *ptr, offset;
+ struct amdgpu_ring_context *ring_context;
+ struct amdgpu_cmd_base *base_cmd = get_cmd_base();
+ const struct amdgpu_ip_block_version *ip_block = get_ip_block(device_handle, AMDGPU_HW_IP_DMA);
+
+ ring_context = calloc(1, sizeof(*ring_context));
+ if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
+ ring_context->write_length = 4096;
+ ring_context->pm4 = calloc(256, sizeof(*ring_context->pm4));
+ ring_context->pm4_size = 256;
+ } else {
+ ring_context->write_length = 1024 * 0x20000;
+ ring_context->pm4 = calloc(256 * 0x20000, sizeof(*ring_context->pm4));
+ ring_context->pm4_size = 256 * 0x20000;
+ }
+ ring_context->secure = false;
+ ring_context->res_cnt = 2;
+ igt_assert(ring_context->pm4);
+
+ r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_bo_alloc_and_map(device_handle, ring_context->write_length, 4096,
+ AMDGPU_GEM_DOMAIN_GTT, 0,
+ &ring_context->bo, (void **)&ring_context->bo_cpu,
+ &ring_context->bo_mc, &ring_context->va_handle);
+ igt_assert_eq(r, 0);
+
+ /* set bo */
+ memset((void *)ring_context->bo_cpu, 0, ring_context->write_length);
+ r = amdgpu_bo_alloc_and_map(device_handle,
+ ring_context->write_length, 4096,
+ AMDGPU_GEM_DOMAIN_GTT,
+ 0, &ring_context->bo2,
+ (void **)&ring_context->bo2_cpu, &ring_context->bo_mc2,
+ &ring_context->va_handle2);
+ igt_assert_eq(r, 0);
+
+ /* set bo2 */
+ memset((void *)ring_context->bo2_cpu, 0, ring_context->write_length);
+ ring_context->resources[0] = ring_context->bo;
+ ring_context->resources[1] = ring_context->bo2;
+ base_cmd->attach_buf(base_cmd, ring_context->pm4, ring_context->write_length);
+
+ /* fulfill PM4: with bad copy linear header */
+ if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
+ ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
+ base_cmd->emit_at_offset(base_cmd, 0x23decd3d, 0);
+ } else {
+ /* Save initialization pm4 */
+ ptr = ring_context->pm4;
+ for (j = 1; j < 0x20000; j++) {
+ ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
+ ring_context->pm4 += ring_context->pm4_dw;
+ ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
+
+ offset = ring_context->pm4_dw * 2 * j;
+ base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc2), (offset - 4));
+ base_cmd->emit_at_offset(base_cmd,
+ ((0xffffffff00000000 & ring_context->bo_mc2) >> 32), (offset - 3));
+ base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc), (offset - 2));
+ base_cmd->emit_at_offset(base_cmd,
+ ((0xffffffff00000000 & ring_context->bo_mc) >> 32), (offset - 1));
+ ring_context->pm4 += ring_context->pm4_dw;
+ }
+ /* restore pm4 */
+ ring_context->pm4 = ptr;
+ /* update the total pm4_dw */
+ ring_context->pm4_dw = ring_context->pm4_dw * 2 * j;
+ }
+
+ amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 1);
+ amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle, ring_context->bo_mc,
+ ring_context->write_length);
+ amdgpu_bo_unmap_and_free(ring_context->bo2, ring_context->va_handle2, ring_context->bo_mc2,
+ ring_context->write_length);
+ /* clean resources */
+ free(ring_context->pm4);
+ /* end of test */
+ //r = amdgpu_cs_ctx_free(context_handle);
+ r = amdgpu_cs_ctx_free(ring_context->context_handle);
+ igt_assert_eq(r, 0);
+ free_cmd_base(base_cmd);
+}
diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h
index cc8eba7f7..9c0d245a9 100644
--- a/lib/amdgpu/amd_deadlock_helpers.h
+++ b/lib/amdgpu/amd_deadlock_helpers.h
@@ -24,11 +24,18 @@
#ifndef __AMD_DEADLOCK_HELPERS_H__
#define __AMD_DEADLOCK_HELPERS_H__
+enum hang_type {
+ DMA_CORRUPTED_HEADER_HANG,
+ DMA_SLOW_LINEARCOPY_HANG
+};
+
void
amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned ip_type);
void
bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned ip_type);
+void
+amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type);
#endif
diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
index 88fdbd980..70e45649d 100644
--- a/tests/amdgpu/amd_basic.c
+++ b/tests/amdgpu/amd_basic.c
@@ -307,7 +307,7 @@ static void amdgpu_userptr_test(amdgpu_device_handle device)
ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
r = ip_block->funcs->compare(ip_block->funcs, ring_context, 1);
igt_assert_eq(r, 0);
@@ -412,7 +412,7 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle)
ring_context->resources[2] = ring_context->boa_vram[loop2];
ring_context->resources[3] = ring_context->boa_gtt[loop2];
ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
- amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0);
/* fulfill PM4: test DMA copy linear */
r = ip_block->funcs->compare_pattern(ip_block->funcs, ring_context, sdma_write_length);
igt_assert_eq(r, 0);
diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
index 6147b7636..dc7ec4366 100644
--- a/tests/amdgpu/amd_deadlock.c
+++ b/tests/amdgpu/amd_deadlock.c
@@ -77,6 +77,22 @@ igt_main
}
}
+ igt_describe("Test-GPU-reset-by-sdma-corrupted-header-with-jobs");
+ igt_subtest_with_dynamic("amdgpu-deadlock-sdma-corrupted-header-test") {
+ if (arr_cap[AMD_IP_DMA]) {
+ igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test")
+ amdgpu_hang_sdma_helper(device, DMA_CORRUPTED_HEADER_HANG);
+ }
+ }
+
+ igt_describe("Test-GPU-reset-by-sdma-slow-linear-copy-with-jobs");
+ igt_subtest_with_dynamic("amdgpu-deadlock-sdma-slow-linear-copy") {
+ if (arr_cap[AMD_IP_DMA]) {
+ igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy")
+ amdgpu_hang_sdma_helper(device, DMA_SLOW_LINEARCOPY_HANG);
+ }
+ }
+
igt_fixture {
amdgpu_device_deinitialize(device);
drm_close_driver(fd);
diff --git a/tests/amdgpu/amd_security.c b/tests/amdgpu/amd_security.c
index 46180df2e..1a7eba9eb 100644
--- a/tests/amdgpu/amd_security.c
+++ b/tests/amdgpu/amd_security.c
@@ -110,7 +110,7 @@ amdgpu_bo_lcopy(amdgpu_device_handle device,
amdgpu_sdma_lcopy(ring_context->pm4, ring_context->bo_mc2,
ring_context->bo_mc, size, secure);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
free(ring_context->pm4);
}
@@ -155,7 +155,7 @@ amdgpu_bo_move(amdgpu_device_handle device, int fd,
* it to the desired location.
*/
amdgpu_sdma_nop(ring_context->pm4, PACKET_NOP_SIZE);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
free(ring_context->pm4);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA
2023-10-20 5:21 Jesse Zhang
@ 2023-10-20 11:37 ` Kamil Konieczny
2023-10-20 16:08 ` vitaly prosyak
2023-10-22 3:42 ` vitaly prosyak
1 sibling, 1 reply; 10+ messages in thread
From: Kamil Konieczny @ 2023-10-20 11:37 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
Hi Jesse,
On 2023-10-20 at 13:21:47 +0800, Jesse Zhang wrote:
> Issue corrupted header or slow sdma linear copy
> to trigger SDMA hang test.
>
> V3:
> - avoid generating warning,
> and optimize logical code. (Vitlaly)
> - Use existing interfaces
> to clean up code. (Vitaly)
>
> 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 | 46 +++++++++------
> lib/amdgpu/amd_command_submission.h | 3 +-
> lib/amdgpu/amd_deadlock_helpers.c | 90 +++++++++++++++++++++++++++++
> lib/amdgpu/amd_deadlock_helpers.h | 7 +++
> tests/amdgpu/amd_basic.c | 4 +-
> tests/amdgpu/amd_deadlock.c | 16 +++++
> tests/amdgpu/amd_security.c | 4 +-
> 7 files changed, 148 insertions(+), 22 deletions(-)
>
> diff --git a/lib/amdgpu/amd_command_submission.c b/lib/amdgpu/amd_command_submission.c
> index 02cf9357b..b674ba640 100644
> --- a/lib/amdgpu/amd_command_submission.c
> +++ b/lib/amdgpu/amd_command_submission.c
> @@ -18,7 +18,7 @@
> */
>
> void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_type,
> - struct amdgpu_ring_context *ring_context)
> + struct amdgpu_ring_context *ring_context, int expect)
> {
> int r;
> uint32_t expired;
> @@ -31,15 +31,23 @@ void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_typ
>
> amdgpu_bo_handle *all_res = alloca(sizeof(ring_context->resources[0]) * (ring_context->res_cnt + 1));
>
> + if (expect) {
> + /* allocate IB */
> + r = amdgpu_bo_alloc_and_map(device, ring_context->write_length, 4096,
> + AMDGPU_GEM_DOMAIN_GTT, 0,
> + &ib_result_handle, &ib_result_cpu,
> + &ib_result_mc_address, &va_handle);
> + } else {
> + /* prepare CS */
> + igt_assert(ring_context->pm4_dw <= 1024);
> + /* allocate IB */
> + r = amdgpu_bo_alloc_and_map(device, 4096, 4096,
> + AMDGPU_GEM_DOMAIN_GTT, 0,
> + &ib_result_handle, &ib_result_cpu,
> + &ib_result_mc_address, &va_handle);
>
> - /* prepare CS */
> - igt_assert(ring_context->pm4_dw <= 1024);
>
> - /* allocate IB */
> - r = amdgpu_bo_alloc_and_map(device, 4096, 4096,
> - AMDGPU_GEM_DOMAIN_GTT, 0,
> - &ib_result_handle, &ib_result_cpu,
> - &ib_result_mc_address, &va_handle);
> + }
> igt_assert_eq(r, 0);
>
> /* copy PM4 packet to ring from caller */
> @@ -81,9 +89,13 @@ void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_typ
> r = amdgpu_cs_query_fence_status(&fence_status,
> AMDGPU_TIMEOUT_INFINITE,
> 0, &expired);
> - igt_assert_eq(r, 0);
> - igt_assert_eq(expired, true);
> -
> + if (expect) {
> + igt_assert_neq(r, 0);
> + igt_assert_neq(expired, true);
> + } else {
> + igt_assert_eq(r, 0);
> + igt_assert_eq(expired, true);
> + }
> amdgpu_bo_unmap_and_free(ib_result_handle, va_handle,
> ib_result_mc_address, 4096);
> }
> @@ -145,7 +157,7 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
>
> ring_context->ring_id = ring_id;
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> /* verify if SDMA test result meets with expected */
> i = 0;
> @@ -155,20 +167,20 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
> } else if (ip_block->type == AMDGPU_HW_IP_GFX) {
> ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + 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);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> /* 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);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
> /* here bo_cpu[0] should be unchanged, still is 0x12345678, otherwise failed*/
> igt_assert_eq(ring_context->bo_cpu[0], ring_context->bo_cpu_origin);
> }
> @@ -236,7 +248,7 @@ void amdgpu_command_submission_const_fill_helper(amdgpu_device_handle device,
> /* fulfill PM4: test DMA const fill */
> ip_block->funcs->const_fill(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> /* verify if SDMA test result meets with expected */
> r = ip_block->funcs->compare(ip_block->funcs, ring_context, 4);
> @@ -322,7 +334,7 @@ void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device,
>
> ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> /* verify if SDMA test result meets with expected */
> r = ip_block->funcs->compare_pattern(ip_block->funcs, ring_context, 4);
> diff --git a/lib/amdgpu/amd_command_submission.h b/lib/amdgpu/amd_command_submission.h
> index 58f3221a3..44f0cc958 100644
> --- a/lib/amdgpu/amd_command_submission.h
> +++ b/lib/amdgpu/amd_command_submission.h
> @@ -29,7 +29,8 @@
> #include "amd_ip_blocks.h"
>
> void amdgpu_test_exec_cs_helper(amdgpu_device_handle device,
> - unsigned int ip_type, struct amdgpu_ring_context *ring_context);
> + unsigned int ip_type, struct amdgpu_ring_context *ring_context,
> + int expect);
>
> void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
> const struct amdgpu_ip_block_version *ip_block,
> diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
> index a6be5f02a..5b7d51d94 100644
> --- a/lib/amdgpu/amd_deadlock_helpers.c
> +++ b/lib/amdgpu/amd_deadlock_helpers.c
> @@ -13,6 +13,7 @@
> #include "amd_memory.h"
> #include "amd_deadlock_helpers.h"
> #include "amd_ip_blocks.h"
> +#include "lib/amdgpu/amd_command_submission.h"
>
> #define MAX_JOB_COUNT 200
>
> @@ -248,3 +249,92 @@ bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned i
> free_cmd_base(base_cmd);
> amdgpu_cs_ctx_free(context_handle);
> }
> +
> +void
> +amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
> +{
> + int j, r;
> + uint32_t *ptr, offset;
> + struct amdgpu_ring_context *ring_context;
> + struct amdgpu_cmd_base *base_cmd = get_cmd_base();
> + const struct amdgpu_ip_block_version *ip_block = get_ip_block(device_handle, AMDGPU_HW_IP_DMA);
> +
> + ring_context = calloc(1, sizeof(*ring_context));
> + if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
> + ring_context->write_length = 4096;
> + ring_context->pm4 = calloc(256, sizeof(*ring_context->pm4));
> + ring_context->pm4_size = 256;
> + } else {
> + ring_context->write_length = 1024 * 0x20000;
> + ring_context->pm4 = calloc(256 * 0x20000, sizeof(*ring_context->pm4));
> + ring_context->pm4_size = 256 * 0x20000;
> + }
> + ring_context->secure = false;
> + ring_context->res_cnt = 2;
> + igt_assert(ring_context->pm4);
> +
> + r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
> + igt_assert_eq(r, 0);
> +
> + r = amdgpu_bo_alloc_and_map(device_handle, ring_context->write_length, 4096,
> + AMDGPU_GEM_DOMAIN_GTT, 0,
> + &ring_context->bo, (void **)&ring_context->bo_cpu,
> + &ring_context->bo_mc, &ring_context->va_handle);
> + igt_assert_eq(r, 0);
> +
> + /* set bo */
> + memset((void *)ring_context->bo_cpu, 0, ring_context->write_length);
> + r = amdgpu_bo_alloc_and_map(device_handle,
> + ring_context->write_length, 4096,
> + AMDGPU_GEM_DOMAIN_GTT,
> + 0, &ring_context->bo2,
> + (void **)&ring_context->bo2_cpu, &ring_context->bo_mc2,
> + &ring_context->va_handle2);
> + igt_assert_eq(r, 0);
> +
> + /* set bo2 */
> + memset((void *)ring_context->bo2_cpu, 0, ring_context->write_length);
> + ring_context->resources[0] = ring_context->bo;
> + ring_context->resources[1] = ring_context->bo2;
> + base_cmd->attach_buf(base_cmd, ring_context->pm4, ring_context->write_length);
> +
> + /* fulfill PM4: with bad copy linear header */
> + if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
> + ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> + base_cmd->emit_at_offset(base_cmd, 0x23decd3d, 0);
> + } else {
> + /* Save initialization pm4 */
> + ptr = ring_context->pm4;
> + for (j = 1; j < 0x20000; j++) {
> + ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> + ring_context->pm4 += ring_context->pm4_dw;
> + ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> +
> + offset = ring_context->pm4_dw * 2 * j;
> + base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc2), (offset - 4));
> + base_cmd->emit_at_offset(base_cmd,
> + ((0xffffffff00000000 & ring_context->bo_mc2) >> 32), (offset - 3));
> + base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc), (offset - 2));
> + base_cmd->emit_at_offset(base_cmd,
> + ((0xffffffff00000000 & ring_context->bo_mc) >> 32), (offset - 1));
> + ring_context->pm4 += ring_context->pm4_dw;
> + }
> + /* restore pm4 */
> + ring_context->pm4 = ptr;
> + /* update the total pm4_dw */
> + ring_context->pm4_dw = ring_context->pm4_dw * 2 * j;
> + }
> +
> + amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 1);
> + amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle, ring_context->bo_mc,
> + ring_context->write_length);
> + amdgpu_bo_unmap_and_free(ring_context->bo2, ring_context->va_handle2, ring_context->bo_mc2,
> + ring_context->write_length);
> + /* clean resources */
> + free(ring_context->pm4);
> + /* end of test */
> + //r = amdgpu_cs_ctx_free(context_handle);
> + r = amdgpu_cs_ctx_free(ring_context->context_handle);
> + igt_assert_eq(r, 0);
> + free_cmd_base(base_cmd);
> +}
> diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h
> index cc8eba7f7..9c0d245a9 100644
> --- a/lib/amdgpu/amd_deadlock_helpers.h
> +++ b/lib/amdgpu/amd_deadlock_helpers.h
> @@ -24,11 +24,18 @@
> #ifndef __AMD_DEADLOCK_HELPERS_H__
> #define __AMD_DEADLOCK_HELPERS_H__
>
> +enum hang_type {
> + DMA_CORRUPTED_HEADER_HANG,
> + DMA_SLOW_LINEARCOPY_HANG
> +};
> +
> void
> amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned ip_type);
>
> void
> bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned ip_type);
>
> +void
> +amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type);
> #endif
>
> diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
> index 88fdbd980..70e45649d 100644
> --- a/tests/amdgpu/amd_basic.c
> +++ b/tests/amdgpu/amd_basic.c
> @@ -307,7 +307,7 @@ static void amdgpu_userptr_test(amdgpu_device_handle device)
>
> ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> r = ip_block->funcs->compare(ip_block->funcs, ring_context, 1);
> igt_assert_eq(r, 0);
> @@ -412,7 +412,7 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle)
> ring_context->resources[2] = ring_context->boa_vram[loop2];
> ring_context->resources[3] = ring_context->boa_gtt[loop2];
> ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> - amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0);
> /* fulfill PM4: test DMA copy linear */
> r = ip_block->funcs->compare_pattern(ip_block->funcs, ring_context, sdma_write_length);
> igt_assert_eq(r, 0);
> diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
> index 6147b7636..dc7ec4366 100644
> --- a/tests/amdgpu/amd_deadlock.c
> +++ b/tests/amdgpu/amd_deadlock.c
> @@ -77,6 +77,22 @@ igt_main
> }
> }
>
> + igt_describe("Test-GPU-reset-by-sdma-corrupted-header-with-jobs");
----------------------^---^-----^--^----^---------^------^----^
s/-/ /g
In descriptions you may use spaces.
> + igt_subtest_with_dynamic("amdgpu-deadlock-sdma-corrupted-header-test") {
And here it is ok - no spaces in tests names, use '-' in place of them.
> + if (arr_cap[AMD_IP_DMA]) {
> + igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test")
> + amdgpu_hang_sdma_helper(device, DMA_CORRUPTED_HEADER_HANG);
> + }
> + }
> +
> + igt_describe("Test-GPU-reset-by-sdma-slow-linear-copy-with-jobs");
----------------------^---^...
Same here.
Regards,
Kamil
> + igt_subtest_with_dynamic("amdgpu-deadlock-sdma-slow-linear-copy") {
> + if (arr_cap[AMD_IP_DMA]) {
> + igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy")
> + amdgpu_hang_sdma_helper(device, DMA_SLOW_LINEARCOPY_HANG);
> + }
> + }
> +
> igt_fixture {
> amdgpu_device_deinitialize(device);
> drm_close_driver(fd);
> diff --git a/tests/amdgpu/amd_security.c b/tests/amdgpu/amd_security.c
> index 46180df2e..1a7eba9eb 100644
> --- a/tests/amdgpu/amd_security.c
> +++ b/tests/amdgpu/amd_security.c
> @@ -110,7 +110,7 @@ amdgpu_bo_lcopy(amdgpu_device_handle device,
>
> amdgpu_sdma_lcopy(ring_context->pm4, ring_context->bo_mc2,
> ring_context->bo_mc, size, secure);
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
> free(ring_context->pm4);
> }
>
> @@ -155,7 +155,7 @@ amdgpu_bo_move(amdgpu_device_handle device, int fd,
> * it to the desired location.
> */
> amdgpu_sdma_nop(ring_context->pm4, PACKET_NOP_SIZE);
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
> free(ring_context->pm4);
> }
>
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA
2023-10-20 11:37 ` Kamil Konieczny
@ 2023-10-20 16:08 ` vitaly prosyak
0 siblings, 0 replies; 10+ messages in thread
From: vitaly prosyak @ 2023-10-20 16:08 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Jesse Zhang, Vitaly Prosyak,
Alex Deucher, Luben Tuikov, Christian Koenig, Tim Huang
On 2023-10-20 07:37, Kamil Konieczny wrote:
> Hi Jesse,
> On 2023-10-20 at 13:21:47 +0800, Jesse Zhang wrote:
>> Issue corrupted header or slow sdma linear copy
>> to trigger SDMA hang test.
>>
>> V3:
>> - avoid generating warning,
>> and optimize logical code. (Vitlaly)
>> - Use existing interfaces
>> to clean up code. (Vitaly)
>>
>> 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 | 46 +++++++++------
>> lib/amdgpu/amd_command_submission.h | 3 +-
>> lib/amdgpu/amd_deadlock_helpers.c | 90 +++++++++++++++++++++++++++++
>> lib/amdgpu/amd_deadlock_helpers.h | 7 +++
>> tests/amdgpu/amd_basic.c | 4 +-
>> tests/amdgpu/amd_deadlock.c | 16 +++++
>> tests/amdgpu/amd_security.c | 4 +-
>> 7 files changed, 148 insertions(+), 22 deletions(-)
>>
>> diff --git a/lib/amdgpu/amd_command_submission.c b/lib/amdgpu/amd_command_submission.c
>> index 02cf9357b..b674ba640 100644
>> --- a/lib/amdgpu/amd_command_submission.c
>> +++ b/lib/amdgpu/amd_command_submission.c
>> @@ -18,7 +18,7 @@
>> */
>>
>> void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_type,
>> - struct amdgpu_ring_context *ring_context)
>> + struct amdgpu_ring_context *ring_context, int expect)
>> {
>> int r;
>> uint32_t expired;
>> @@ -31,15 +31,23 @@ void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_typ
>>
>> amdgpu_bo_handle *all_res = alloca(sizeof(ring_context->resources[0]) * (ring_context->res_cnt + 1));
>>
>> + if (expect) {
>> + /* allocate IB */
>> + r = amdgpu_bo_alloc_and_map(device, ring_context->write_length, 4096,
>> + AMDGPU_GEM_DOMAIN_GTT, 0,
>> + &ib_result_handle, &ib_result_cpu,
>> + &ib_result_mc_address, &va_handle);
>> + } else {
>> + /* prepare CS */
>> + igt_assert(ring_context->pm4_dw <= 1024);
>> + /* allocate IB */
>> + r = amdgpu_bo_alloc_and_map(device, 4096, 4096,
>> + AMDGPU_GEM_DOMAIN_GTT, 0,
>> + &ib_result_handle, &ib_result_cpu,
>> + &ib_result_mc_address, &va_handle);
>>
>> - /* prepare CS */
>> - igt_assert(ring_context->pm4_dw <= 1024);
>>
>> - /* allocate IB */
>> - r = amdgpu_bo_alloc_and_map(device, 4096, 4096,
>> - AMDGPU_GEM_DOMAIN_GTT, 0,
>> - &ib_result_handle, &ib_result_cpu,
>> - &ib_result_mc_address, &va_handle);
>> + }
>> igt_assert_eq(r, 0);
>>
>> /* copy PM4 packet to ring from caller */
>> @@ -81,9 +89,13 @@ void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_typ
>> r = amdgpu_cs_query_fence_status(&fence_status,
>> AMDGPU_TIMEOUT_INFINITE,
>> 0, &expired);
>> - igt_assert_eq(r, 0);
>> - igt_assert_eq(expired, true);
>> -
>> + if (expect) {
>> + igt_assert_neq(r, 0);
>> + igt_assert_neq(expired, true);
>> + } else {
>> + igt_assert_eq(r, 0);
>> + igt_assert_eq(expired, true);
>> + }
>> amdgpu_bo_unmap_and_free(ib_result_handle, va_handle,
>> ib_result_mc_address, 4096);
>> }
>> @@ -145,7 +157,7 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
>>
>> ring_context->ring_id = ring_id;
>>
>> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
>> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>>
>> /* verify if SDMA test result meets with expected */
>> i = 0;
>> @@ -155,20 +167,20 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
>> } else if (ip_block->type == AMDGPU_HW_IP_GFX) {
>> ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>>
>> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
>> + 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);
>>
>> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
>> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>>
>> /* 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);
>>
>> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
>> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>> /* here bo_cpu[0] should be unchanged, still is 0x12345678, otherwise failed*/
>> igt_assert_eq(ring_context->bo_cpu[0], ring_context->bo_cpu_origin);
>> }
>> @@ -236,7 +248,7 @@ void amdgpu_command_submission_const_fill_helper(amdgpu_device_handle device,
>> /* fulfill PM4: test DMA const fill */
>> ip_block->funcs->const_fill(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>>
>> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
>> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>>
>> /* verify if SDMA test result meets with expected */
>> r = ip_block->funcs->compare(ip_block->funcs, ring_context, 4);
>> @@ -322,7 +334,7 @@ void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device,
>>
>> ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>>
>> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
>> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>>
>> /* verify if SDMA test result meets with expected */
>> r = ip_block->funcs->compare_pattern(ip_block->funcs, ring_context, 4);
>> diff --git a/lib/amdgpu/amd_command_submission.h b/lib/amdgpu/amd_command_submission.h
>> index 58f3221a3..44f0cc958 100644
>> --- a/lib/amdgpu/amd_command_submission.h
>> +++ b/lib/amdgpu/amd_command_submission.h
>> @@ -29,7 +29,8 @@
>> #include "amd_ip_blocks.h"
>>
>> void amdgpu_test_exec_cs_helper(amdgpu_device_handle device,
>> - unsigned int ip_type, struct amdgpu_ring_context *ring_context);
>> + unsigned int ip_type, struct amdgpu_ring_context *ring_context,
>> + int expect);
>>
>> void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
>> const struct amdgpu_ip_block_version *ip_block,
>> diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
>> index a6be5f02a..5b7d51d94 100644
>> --- a/lib/amdgpu/amd_deadlock_helpers.c
>> +++ b/lib/amdgpu/amd_deadlock_helpers.c
>> @@ -13,6 +13,7 @@
>> #include "amd_memory.h"
>> #include "amd_deadlock_helpers.h"
>> #include "amd_ip_blocks.h"
>> +#include "lib/amdgpu/amd_command_submission.h"
>>
>> #define MAX_JOB_COUNT 200
>>
>> @@ -248,3 +249,92 @@ bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned i
>> free_cmd_base(base_cmd);
>> amdgpu_cs_ctx_free(context_handle);
>> }
>> +
>> +void
>> +amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
>> +{
>> + int j, r;
>> + uint32_t *ptr, offset;
>> + struct amdgpu_ring_context *ring_context;
>> + struct amdgpu_cmd_base *base_cmd = get_cmd_base();
>> + const struct amdgpu_ip_block_version *ip_block = get_ip_block(device_handle, AMDGPU_HW_IP_DMA);
>> +
>> + ring_context = calloc(1, sizeof(*ring_context));
>> + if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
>> + ring_context->write_length = 4096;
>> + ring_context->pm4 = calloc(256, sizeof(*ring_context->pm4));
>> + ring_context->pm4_size = 256;
>> + } else {
>> + ring_context->write_length = 1024 * 0x20000;
>> + ring_context->pm4 = calloc(256 * 0x20000, sizeof(*ring_context->pm4));
>> + ring_context->pm4_size = 256 * 0x20000;
>> + }
>> + ring_context->secure = false;
>> + ring_context->res_cnt = 2;
>> + igt_assert(ring_context->pm4);
>> +
>> + r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
>> + igt_assert_eq(r, 0);
>> +
>> + r = amdgpu_bo_alloc_and_map(device_handle, ring_context->write_length, 4096,
>> + AMDGPU_GEM_DOMAIN_GTT, 0,
>> + &ring_context->bo, (void **)&ring_context->bo_cpu,
>> + &ring_context->bo_mc, &ring_context->va_handle);
>> + igt_assert_eq(r, 0);
>> +
>> + /* set bo */
>> + memset((void *)ring_context->bo_cpu, 0, ring_context->write_length);
>> + r = amdgpu_bo_alloc_and_map(device_handle,
>> + ring_context->write_length, 4096,
>> + AMDGPU_GEM_DOMAIN_GTT,
>> + 0, &ring_context->bo2,
>> + (void **)&ring_context->bo2_cpu, &ring_context->bo_mc2,
>> + &ring_context->va_handle2);
>> + igt_assert_eq(r, 0);
>> +
>> + /* set bo2 */
>> + memset((void *)ring_context->bo2_cpu, 0, ring_context->write_length);
>> + ring_context->resources[0] = ring_context->bo;
>> + ring_context->resources[1] = ring_context->bo2;
>> + base_cmd->attach_buf(base_cmd, ring_context->pm4, ring_context->write_length);
>> +
>> + /* fulfill PM4: with bad copy linear header */
>> + if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
>> + ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>> + base_cmd->emit_at_offset(base_cmd, 0x23decd3d, 0);
>> + } else {
>> + /* Save initialization pm4 */
>> + ptr = ring_context->pm4;
>> + for (j = 1; j < 0x20000; j++) {
>> + ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>> + ring_context->pm4 += ring_context->pm4_dw;
>> + ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>> +
>> + offset = ring_context->pm4_dw * 2 * j;
>> + base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc2), (offset - 4));
>> + base_cmd->emit_at_offset(base_cmd,
>> + ((0xffffffff00000000 & ring_context->bo_mc2) >> 32), (offset - 3));
>> + base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc), (offset - 2));
>> + base_cmd->emit_at_offset(base_cmd,
>> + ((0xffffffff00000000 & ring_context->bo_mc) >> 32), (offset - 1));
>> + ring_context->pm4 += ring_context->pm4_dw;
>> + }
>> + /* restore pm4 */
>> + ring_context->pm4 = ptr;
>> + /* update the total pm4_dw */
>> + ring_context->pm4_dw = ring_context->pm4_dw * 2 * j;
>> + }
>> +
>> + amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 1);
>> + amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle, ring_context->bo_mc,
>> + ring_context->write_length);
>> + amdgpu_bo_unmap_and_free(ring_context->bo2, ring_context->va_handle2, ring_context->bo_mc2,
>> + ring_context->write_length);
>> + /* clean resources */
>> + free(ring_context->pm4);
>> + /* end of test */
>> + //r = amdgpu_cs_ctx_free(context_handle);
>> + r = amdgpu_cs_ctx_free(ring_context->context_handle);
>> + igt_assert_eq(r, 0);
>> + free_cmd_base(base_cmd);
>> +}
>> diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h
>> index cc8eba7f7..9c0d245a9 100644
>> --- a/lib/amdgpu/amd_deadlock_helpers.h
>> +++ b/lib/amdgpu/amd_deadlock_helpers.h
>> @@ -24,11 +24,18 @@
>> #ifndef __AMD_DEADLOCK_HELPERS_H__
>> #define __AMD_DEADLOCK_HELPERS_H__
>>
>> +enum hang_type {
>> + DMA_CORRUPTED_HEADER_HANG,
>> + DMA_SLOW_LINEARCOPY_HANG
>> +};
>> +
>> void
>> amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned ip_type);
>>
>> void
>> bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned ip_type);
>>
>> +void
>> +amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type);
>> #endif
>>
>> diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
>> index 88fdbd980..70e45649d 100644
>> --- a/tests/amdgpu/amd_basic.c
>> +++ b/tests/amdgpu/amd_basic.c
>> @@ -307,7 +307,7 @@ static void amdgpu_userptr_test(amdgpu_device_handle device)
>>
>> ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>>
>> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
>> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>>
>> r = ip_block->funcs->compare(ip_block->funcs, ring_context, 1);
>> igt_assert_eq(r, 0);
>> @@ -412,7 +412,7 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle)
>> ring_context->resources[2] = ring_context->boa_vram[loop2];
>> ring_context->resources[3] = ring_context->boa_gtt[loop2];
>> ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>> - amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context);
>> + amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0);
>> /* fulfill PM4: test DMA copy linear */
>> r = ip_block->funcs->compare_pattern(ip_block->funcs, ring_context, sdma_write_length);
>> igt_assert_eq(r, 0);
>> diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
>> index 6147b7636..dc7ec4366 100644
>> --- a/tests/amdgpu/amd_deadlock.c
>> +++ b/tests/amdgpu/amd_deadlock.c
>> @@ -77,6 +77,22 @@ igt_main
>> }
>> }
>>
>> + igt_describe("Test-GPU-reset-by-sdma-corrupted-header-with-jobs");
> ----------------------^---^-----^--^----^---------^------^----^
> s/-/ /g
> In descriptions you may use spaces.
Thanks Kamil!
>
>> + igt_subtest_with_dynamic("amdgpu-deadlock-sdma-corrupted-header-test") {
> And here it is ok - no spaces in tests names, use '-' in place of them.
It was my fault for putting '-' everywhere, basically when the test fails there is a complaint about an invalid character, now it is clear that it is related only to the test name.
>> + if (arr_cap[AMD_IP_DMA]) {
>> + igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test")
>> + amdgpu_hang_sdma_helper(device, DMA_CORRUPTED_HEADER_HANG);
>> + }
>> + }
>> +
>> + igt_describe("Test-GPU-reset-by-sdma-slow-linear-copy-with-jobs");
> ----------------------^---^...
> Same here.
>
> Regards,
> Kamil
>
>> + igt_subtest_with_dynamic("amdgpu-deadlock-sdma-slow-linear-copy") {
>> + if (arr_cap[AMD_IP_DMA]) {
>> + igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy")
>> + amdgpu_hang_sdma_helper(device, DMA_SLOW_LINEARCOPY_HANG);
>> + }
>> + }
>> +
>> igt_fixture {
>> amdgpu_device_deinitialize(device);
>> drm_close_driver(fd);
>> diff --git a/tests/amdgpu/amd_security.c b/tests/amdgpu/amd_security.c
>> index 46180df2e..1a7eba9eb 100644
>> --- a/tests/amdgpu/amd_security.c
>> +++ b/tests/amdgpu/amd_security.c
>> @@ -110,7 +110,7 @@ amdgpu_bo_lcopy(amdgpu_device_handle device,
>>
>> amdgpu_sdma_lcopy(ring_context->pm4, ring_context->bo_mc2,
>> ring_context->bo_mc, size, secure);
>> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
>> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>> free(ring_context->pm4);
>> }
>>
>> @@ -155,7 +155,7 @@ amdgpu_bo_move(amdgpu_device_handle device, int fd,
>> * it to the desired location.
>> */
>> amdgpu_sdma_nop(ring_context->pm4, PACKET_NOP_SIZE);
>> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
>> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>> free(ring_context->pm4);
>> }
>>
>> --
>> 2.25.1
>>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA
2023-10-20 5:21 Jesse Zhang
2023-10-20 11:37 ` Kamil Konieczny
@ 2023-10-22 3:42 ` vitaly prosyak
1 sibling, 0 replies; 10+ messages in thread
From: vitaly prosyak @ 2023-10-22 3:42 UTC (permalink / raw)
To: Jesse Zhang, igt-dev
Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
[-- Attachment #1: Type: text/plain, Size: 15188 bytes --]
Hi Jesse,
Please, see below to add a couple of 'defines' and additional comments for clarification.
With this Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
I validated on SIENNA_CICHLID, works fine!
Thanks, Vitaly
On 2023-10-20 01:21, Jesse Zhang wrote:
> Issue corrupted header or slow sdma linear copy
> to trigger SDMA hang test.
>
> V3:
> - avoid generating warning,
> and optimize logical code. (Vitaly)
> - Use existing interfaces
> to clean up code. (Vitaly)
>
> 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 | 46 +++++++++------
> lib/amdgpu/amd_command_submission.h | 3 +-
> lib/amdgpu/amd_deadlock_helpers.c | 90 +++++++++++++++++++++++++++++
> lib/amdgpu/amd_deadlock_helpers.h | 7 +++
> tests/amdgpu/amd_basic.c | 4 +-
> tests/amdgpu/amd_deadlock.c | 16 +++++
> tests/amdgpu/amd_security.c | 4 +-
> 7 files changed, 148 insertions(+), 22 deletions(-)
>
> diff --git a/lib/amdgpu/amd_command_submission.c b/lib/amdgpu/amd_command_submission.c
> index 02cf9357b..b674ba640 100644
> --- a/lib/amdgpu/amd_command_submission.c
> +++ b/lib/amdgpu/amd_command_submission.c
> @@ -18,7 +18,7 @@
> */
>
> void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_type,
> - struct amdgpu_ring_context *ring_context)
> + struct amdgpu_ring_context *ring_context, int expect)
> {
> int r;
> uint32_t expired;
> @@ -31,15 +31,23 @@ void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_typ
>
> amdgpu_bo_handle *all_res = alloca(sizeof(ring_context->resources[0]) * (ring_context->res_cnt + 1));
>
> + if (expect) {
> + /* allocate IB */
> + r = amdgpu_bo_alloc_and_map(device, ring_context->write_length, 4096,
> + AMDGPU_GEM_DOMAIN_GTT, 0,
> + &ib_result_handle, &ib_result_cpu,
> + &ib_result_mc_address, &va_handle);
> + } else {
> + /* prepare CS */
> + igt_assert(ring_context->pm4_dw <= 1024);
> + /* allocate IB */
> + r = amdgpu_bo_alloc_and_map(device, 4096, 4096,
> + AMDGPU_GEM_DOMAIN_GTT, 0,
> + &ib_result_handle, &ib_result_cpu,
> + &ib_result_mc_address, &va_handle);
>
> - /* prepare CS */
> - igt_assert(ring_context->pm4_dw <= 1024);
>
> - /* allocate IB */
> - r = amdgpu_bo_alloc_and_map(device, 4096, 4096,
> - AMDGPU_GEM_DOMAIN_GTT, 0,
> - &ib_result_handle, &ib_result_cpu,
> - &ib_result_mc_address, &va_handle);
> + }
> igt_assert_eq(r, 0);
>
> /* copy PM4 packet to ring from caller */
> @@ -81,9 +89,13 @@ void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_typ
> r = amdgpu_cs_query_fence_status(&fence_status,
> AMDGPU_TIMEOUT_INFINITE,
> 0, &expired);
> - igt_assert_eq(r, 0);
> - igt_assert_eq(expired, true);
> -
> + if (expect) {
> + igt_assert_neq(r, 0);
> + igt_assert_neq(expired, true);
> + } else {
> + igt_assert_eq(r, 0);
> + igt_assert_eq(expired, true);
> + }
> amdgpu_bo_unmap_and_free(ib_result_handle, va_handle,
> ib_result_mc_address, 4096);
> }
> @@ -145,7 +157,7 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
>
> ring_context->ring_id = ring_id;
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> /* verify if SDMA test result meets with expected */
> i = 0;
> @@ -155,20 +167,20 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
> } else if (ip_block->type == AMDGPU_HW_IP_GFX) {
> ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + 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);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> /* 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);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
> /* here bo_cpu[0] should be unchanged, still is 0x12345678, otherwise failed*/
> igt_assert_eq(ring_context->bo_cpu[0], ring_context->bo_cpu_origin);
> }
> @@ -236,7 +248,7 @@ void amdgpu_command_submission_const_fill_helper(amdgpu_device_handle device,
> /* fulfill PM4: test DMA const fill */
> ip_block->funcs->const_fill(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> /* verify if SDMA test result meets with expected */
> r = ip_block->funcs->compare(ip_block->funcs, ring_context, 4);
> @@ -322,7 +334,7 @@ void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device,
>
> ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> /* verify if SDMA test result meets with expected */
> r = ip_block->funcs->compare_pattern(ip_block->funcs, ring_context, 4);
> diff --git a/lib/amdgpu/amd_command_submission.h b/lib/amdgpu/amd_command_submission.h
> index 58f3221a3..44f0cc958 100644
> --- a/lib/amdgpu/amd_command_submission.h
> +++ b/lib/amdgpu/amd_command_submission.h
> @@ -29,7 +29,8 @@
> #include "amd_ip_blocks.h"
>
> void amdgpu_test_exec_cs_helper(amdgpu_device_handle device,
> - unsigned int ip_type, struct amdgpu_ring_context *ring_context);
> + unsigned int ip_type, struct amdgpu_ring_context *ring_context,
> + int expect);
>
> void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
> const struct amdgpu_ip_block_version *ip_block,
> diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
> index a6be5f02a..5b7d51d94 100644
> --- a/lib/amdgpu/amd_deadlock_helpers.c
> +++ b/lib/amdgpu/amd_deadlock_helpers.c
> @@ -13,6 +13,7 @@
> #include "amd_memory.h"
> #include "amd_deadlock_helpers.h"
> #include "amd_ip_blocks.h"
> +#include "lib/amdgpu/amd_command_submission.h"
>
> #define MAX_JOB_COUNT 200
>
> @@ -248,3 +249,92 @@ bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned i
> free_cmd_base(base_cmd);
> amdgpu_cs_ctx_free(context_handle);
> }
#define MAX_DMABUF_COUNT 0x20000
#define MAX_DWORD_COUNT 256
> +
> +void
> +amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
> +{
> + int j, r;
> + uint32_t *ptr, offset;
> + struct amdgpu_ring_context *ring_context;
> + struct amdgpu_cmd_base *base_cmd = get_cmd_base();
> + const struct amdgpu_ip_block_version *ip_block = get_ip_block(device_handle, AMDGPU_HW_IP_DMA);
> +
> + ring_context = calloc(1, sizeof(*ring_context));
> + if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
> + ring_context->write_length = 4096;
> + ring_context->pm4 = calloc(*MAX_DWORD_COUNT*, sizeof(*ring_context->pm4));
> + ring_context->pm4_size = *MAX_DWORD_COUNT*;
> + } else {
> + ring_context->write_length = *MAX_DWORD_COUNT* * 4 * *MAX_DMABUF_COUNT*;
> + ring_context->pm4 = calloc(*MAX_DWORD_COUNT* * *MAX_DMABUF_COUNT*, sizeof(*ring_context->pm4));
> + ring_context->pm4_size = *MAX_DWORD_COUNT* * *MAX_DMABUF_COUNT*;
> + }
> + ring_context->secure = false;
> + ring_context->res_cnt = 2;
> + igt_assert(ring_context->pm4);
> +
> + r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
> + igt_assert_eq(r, 0);
> +
> + r = amdgpu_bo_alloc_and_map(device_handle, ring_context->write_length, 4096,
> + AMDGPU_GEM_DOMAIN_GTT, 0,
> + &ring_context->bo, (void **)&ring_context->bo_cpu,
> + &ring_context->bo_mc, &ring_context->va_handle);
> + igt_assert_eq(r, 0);
> +
> + /* set bo */
> + memset((void *)ring_context->bo_cpu, 0, ring_context->write_length);
> + r = amdgpu_bo_alloc_and_map(device_handle,
> + ring_context->write_length, 4096,
> + AMDGPU_GEM_DOMAIN_GTT,
> + 0, &ring_context->bo2,
> + (void **)&ring_context->bo2_cpu, &ring_context->bo_mc2,
> + &ring_context->va_handle2);
> + igt_assert_eq(r, 0);
> +
> + /* set bo2 */
> + memset((void *)ring_context->bo2_cpu, 0, ring_context->write_length);
> + ring_context->resources[0] = ring_context->bo;
> + ring_context->resources[1] = ring_context->bo2;
> + base_cmd->attach_buf(base_cmd, ring_context->pm4, ring_context->write_length);
> +
> + /* fulfill PM4: with bad copy linear header */
> + if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
> + ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> + base_cmd->emit_at_offset(base_cmd, 0x23decd3d, 0);
> + } else {
> + /* Save initialization pm4 */
> + ptr = ring_context->pm4;
> + for (j = 1; j < *MAX_DMABUF_COUNT*; j++) {
/* copy from buf1 to buf2 */
> + ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> + ring_context->pm4 += ring_context->pm4_dw
> + ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> +
> + offset = ring_context->pm4_dw * 2 * j;
/* override addr of buf1 and buf 2 in order to copy from buf2 to buf1 */
> + base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc2), (offset - 4));
> + base_cmd->emit_at_offset(base_cmd,
> + ((0xffffffff00000000 & ring_context->bo_mc2) >> 32), (offset - 3));
> + base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc), (offset - 2));
> + base_cmd->emit_at_offset(base_cmd,
> + ((0xffffffff00000000 & ring_context->bo_mc) >> 32), (offset - 1));
> + ring_context->pm4 += ring_context->pm4_dw;
> + }
> + /* restore pm4 */
> + ring_context->pm4 = ptr;
> + /* update the total pm4_dw */
> + ring_context->pm4_dw = ring_context->pm4_dw * 2 * j;
> + }
> +
> + amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 1);
> + amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle, ring_context->bo_mc,
> + ring_context->write_length);
> + amdgpu_bo_unmap_and_free(ring_context->bo2, ring_context->va_handle2, ring_context->bo_mc2,
> + ring_context->write_length);
> + /* clean resources */
> + free(ring_context->pm4);
> + /* end of test */
> + //r = amdgpu_cs_ctx_free(context_handle);
> + r = amdgpu_cs_ctx_free(ring_context->context_handle);
> + igt_assert_eq(r, 0);
> + free_cmd_base(base_cmd);
> +}
> diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h
> index cc8eba7f7..9c0d245a9 100644
> --- a/lib/amdgpu/amd_deadlock_helpers.h
> +++ b/lib/amdgpu/amd_deadlock_helpers.h
> @@ -24,11 +24,18 @@
> #ifndef __AMD_DEADLOCK_HELPERS_H__
> #define __AMD_DEADLOCK_HELPERS_H__
>
> +enum hang_type {
> + DMA_CORRUPTED_HEADER_HANG,
> + DMA_SLOW_LINEARCOPY_HANG
> +};
> +
> void
> amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned ip_type);
>
> void
> bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned ip_type);
>
> +void
> +amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type);
> #endif
>
> diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
> index 88fdbd980..70e45649d 100644
> --- a/tests/amdgpu/amd_basic.c
> +++ b/tests/amdgpu/amd_basic.c
> @@ -307,7 +307,7 @@ static void amdgpu_userptr_test(amdgpu_device_handle device)
>
> ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
>
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
>
> r = ip_block->funcs->compare(ip_block->funcs, ring_context, 1);
> igt_assert_eq(r, 0);
> @@ -412,7 +412,7 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle)
> ring_context->resources[2] = ring_context->boa_vram[loop2];
> ring_context->resources[3] = ring_context->boa_gtt[loop2];
> ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
> - amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0);
> /* fulfill PM4: test DMA copy linear */
> r = ip_block->funcs->compare_pattern(ip_block->funcs, ring_context, sdma_write_length);
> igt_assert_eq(r, 0);
> diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
> index 6147b7636..dc7ec4366 100644
> --- a/tests/amdgpu/amd_deadlock.c
> +++ b/tests/amdgpu/amd_deadlock.c
> @@ -77,6 +77,22 @@ igt_main
> }
> }
>
> + igt_describe("Test-GPU-reset-by-sdma-corrupted-header-with-jobs");
> + igt_subtest_with_dynamic("amdgpu-deadlock-sdma-corrupted-header-test") {
> + if (arr_cap[AMD_IP_DMA]) {
> + igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test")
> + amdgpu_hang_sdma_helper(device, DMA_CORRUPTED_HEADER_HANG);
> + }
> + }
> +
> + igt_describe("Test-GPU-reset-by-sdma-slow-linear-copy-with-jobs");
> + igt_subtest_with_dynamic("amdgpu-deadlock-sdma-slow-linear-copy") {
> + if (arr_cap[AMD_IP_DMA]) {
> + igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy")
> + amdgpu_hang_sdma_helper(device, DMA_SLOW_LINEARCOPY_HANG);
> + }
> + }
> +
> igt_fixture {
> amdgpu_device_deinitialize(device);
> drm_close_driver(fd);
> diff --git a/tests/amdgpu/amd_security.c b/tests/amdgpu/amd_security.c
> index 46180df2e..1a7eba9eb 100644
> --- a/tests/amdgpu/amd_security.c
> +++ b/tests/amdgpu/amd_security.c
> @@ -110,7 +110,7 @@ amdgpu_bo_lcopy(amdgpu_device_handle device,
>
> amdgpu_sdma_lcopy(ring_context->pm4, ring_context->bo_mc2,
> ring_context->bo_mc, size, secure);
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
> free(ring_context->pm4);
> }
>
> @@ -155,7 +155,7 @@ amdgpu_bo_move(amdgpu_device_handle device, int fd,
> * it to the desired location.
> */
> amdgpu_sdma_nop(ring_context->pm4, PACKET_NOP_SIZE);
> - amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
> + amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
> free(ring_context->pm4);
> }
>
[-- Attachment #2: Type: text/html, Size: 17129 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA
@ 2023-10-23 2:04 Jesse Zhang
0 siblings, 0 replies; 10+ messages in thread
From: Jesse Zhang @ 2023-10-23 2:04 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
Issue corrupted header or slow sdma linear copy
to trigger SDMA hang test.
V4:
- avoid generating warning,
and optimize logical code. (Vitaly)
- Use existing interfaces
to clean up code. (Vitaly)
- add define and additional
comments for clarification. (Vitaly)
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>
Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
---
lib/amdgpu/amd_command_submission.c | 46 ++++++++------
lib/amdgpu/amd_command_submission.h | 3 +-
lib/amdgpu/amd_deadlock_helpers.c | 95 +++++++++++++++++++++++++++++
lib/amdgpu/amd_deadlock_helpers.h | 7 +++
tests/amdgpu/amd_basic.c | 4 +-
tests/amdgpu/amd_deadlock.c | 16 +++++
tests/amdgpu/amd_security.c | 4 +-
7 files changed, 153 insertions(+), 22 deletions(-)
diff --git a/lib/amdgpu/amd_command_submission.c b/lib/amdgpu/amd_command_submission.c
index 02cf9357b..b674ba640 100644
--- a/lib/amdgpu/amd_command_submission.c
+++ b/lib/amdgpu/amd_command_submission.c
@@ -18,7 +18,7 @@
*/
void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_type,
- struct amdgpu_ring_context *ring_context)
+ struct amdgpu_ring_context *ring_context, int expect)
{
int r;
uint32_t expired;
@@ -31,15 +31,23 @@ void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_typ
amdgpu_bo_handle *all_res = alloca(sizeof(ring_context->resources[0]) * (ring_context->res_cnt + 1));
+ if (expect) {
+ /* allocate IB */
+ r = amdgpu_bo_alloc_and_map(device, ring_context->write_length, 4096,
+ AMDGPU_GEM_DOMAIN_GTT, 0,
+ &ib_result_handle, &ib_result_cpu,
+ &ib_result_mc_address, &va_handle);
+ } else {
+ /* prepare CS */
+ igt_assert(ring_context->pm4_dw <= 1024);
+ /* allocate IB */
+ r = amdgpu_bo_alloc_and_map(device, 4096, 4096,
+ AMDGPU_GEM_DOMAIN_GTT, 0,
+ &ib_result_handle, &ib_result_cpu,
+ &ib_result_mc_address, &va_handle);
- /* prepare CS */
- igt_assert(ring_context->pm4_dw <= 1024);
- /* allocate IB */
- r = amdgpu_bo_alloc_and_map(device, 4096, 4096,
- AMDGPU_GEM_DOMAIN_GTT, 0,
- &ib_result_handle, &ib_result_cpu,
- &ib_result_mc_address, &va_handle);
+ }
igt_assert_eq(r, 0);
/* copy PM4 packet to ring from caller */
@@ -81,9 +89,13 @@ void amdgpu_test_exec_cs_helper(amdgpu_device_handle device, unsigned int ip_typ
r = amdgpu_cs_query_fence_status(&fence_status,
AMDGPU_TIMEOUT_INFINITE,
0, &expired);
- igt_assert_eq(r, 0);
- igt_assert_eq(expired, true);
-
+ if (expect) {
+ igt_assert_neq(r, 0);
+ igt_assert_neq(expired, true);
+ } else {
+ igt_assert_eq(r, 0);
+ igt_assert_eq(expired, true);
+ }
amdgpu_bo_unmap_and_free(ib_result_handle, va_handle,
ib_result_mc_address, 4096);
}
@@ -145,7 +157,7 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
ring_context->ring_id = ring_id;
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* verify if SDMA test result meets with expected */
i = 0;
@@ -155,20 +167,20 @@ void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
} else if (ip_block->type == AMDGPU_HW_IP_GFX) {
ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ 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);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* 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);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* here bo_cpu[0] should be unchanged, still is 0x12345678, otherwise failed*/
igt_assert_eq(ring_context->bo_cpu[0], ring_context->bo_cpu_origin);
}
@@ -236,7 +248,7 @@ void amdgpu_command_submission_const_fill_helper(amdgpu_device_handle device,
/* fulfill PM4: test DMA const fill */
ip_block->funcs->const_fill(ip_block->funcs, ring_context, &ring_context->pm4_dw);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* verify if SDMA test result meets with expected */
r = ip_block->funcs->compare(ip_block->funcs, ring_context, 4);
@@ -322,7 +334,7 @@ void amdgpu_command_submission_copy_linear_helper(amdgpu_device_handle device,
ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
/* verify if SDMA test result meets with expected */
r = ip_block->funcs->compare_pattern(ip_block->funcs, ring_context, 4);
diff --git a/lib/amdgpu/amd_command_submission.h b/lib/amdgpu/amd_command_submission.h
index 58f3221a3..44f0cc958 100644
--- a/lib/amdgpu/amd_command_submission.h
+++ b/lib/amdgpu/amd_command_submission.h
@@ -29,7 +29,8 @@
#include "amd_ip_blocks.h"
void amdgpu_test_exec_cs_helper(amdgpu_device_handle device,
- unsigned int ip_type, struct amdgpu_ring_context *ring_context);
+ unsigned int ip_type, struct amdgpu_ring_context *ring_context,
+ int expect);
void amdgpu_command_submission_write_linear_helper(amdgpu_device_handle device,
const struct amdgpu_ip_block_version *ip_block,
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index a6be5f02a..612f127fd 100644
--- a/lib/amdgpu/amd_deadlock_helpers.c
+++ b/lib/amdgpu/amd_deadlock_helpers.c
@@ -13,6 +13,7 @@
#include "amd_memory.h"
#include "amd_deadlock_helpers.h"
#include "amd_ip_blocks.h"
+#include "lib/amdgpu/amd_command_submission.h"
#define MAX_JOB_COUNT 200
@@ -248,3 +249,97 @@ bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned i
free_cmd_base(base_cmd);
amdgpu_cs_ctx_free(context_handle);
}
+
+#define MAX_DMABUF_COUNT 0x20000
+#define MAX_DWORD_COUNT 256
+
+void
+amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
+{
+ int j, r;
+ uint32_t *ptr, offset;
+ struct amdgpu_ring_context *ring_context;
+ struct amdgpu_cmd_base *base_cmd = get_cmd_base();
+ const struct amdgpu_ip_block_version *ip_block = get_ip_block(device_handle, AMDGPU_HW_IP_DMA);
+
+ ring_context = calloc(1, sizeof(*ring_context));
+ if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
+ ring_context->write_length = 4096;
+ ring_context->pm4 = calloc(MAX_DWORD_COUNT, sizeof(*ring_context->pm4));
+ ring_context->pm4_size = MAX_DWORD_COUNT;
+ } else {
+ ring_context->write_length = MAX_DWORD_COUNT * 4 * MAX_DMABUF_COUNT;
+ ring_context->pm4 = calloc(MAX_DWORD_COUNT * MAX_DMABUF_COUNT, sizeof(*ring_context->pm4));
+ ring_context->pm4_size = MAX_DWORD_COUNT * MAX_DMABUF_COUNT;
+ }
+ ring_context->secure = false;
+ ring_context->res_cnt = 2;
+ igt_assert(ring_context->pm4);
+
+ r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_bo_alloc_and_map(device_handle, ring_context->write_length, 4096,
+ AMDGPU_GEM_DOMAIN_GTT, 0,
+ &ring_context->bo, (void **)&ring_context->bo_cpu,
+ &ring_context->bo_mc, &ring_context->va_handle);
+ igt_assert_eq(r, 0);
+
+ /* set bo */
+ memset((void *)ring_context->bo_cpu, 0, ring_context->write_length);
+ r = amdgpu_bo_alloc_and_map(device_handle,
+ ring_context->write_length, 4096,
+ AMDGPU_GEM_DOMAIN_GTT,
+ 0, &ring_context->bo2,
+ (void **)&ring_context->bo2_cpu, &ring_context->bo_mc2,
+ &ring_context->va_handle2);
+ igt_assert_eq(r, 0);
+
+ /* set bo2 */
+ memset((void *)ring_context->bo2_cpu, 0, ring_context->write_length);
+ ring_context->resources[0] = ring_context->bo;
+ ring_context->resources[1] = ring_context->bo2;
+ base_cmd->attach_buf(base_cmd, ring_context->pm4, ring_context->write_length);
+
+ /* fulfill PM4: with bad copy linear header */
+ if (hang_type == DMA_CORRUPTED_HEADER_HANG) {
+ ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
+ base_cmd->emit_at_offset(base_cmd, 0x23decd3d, 0);
+ } else {
+ /* Save initialization pm4 */
+ ptr = ring_context->pm4;
+ for (j = 1; j < MAX_DMABUF_COUNT; j++) {
+ /* copy from buf1 to buf2 */
+ ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
+ ring_context->pm4 += ring_context->pm4_dw;
+ ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
+
+ offset = ring_context->pm4_dw * 2 * j;
+ /* override addr of buf1 and buf 2 in order to copy from buf2 to buf1 */
+ base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc2), (offset - 4));
+ base_cmd->emit_at_offset(base_cmd,
+ ((0xffffffff00000000 & ring_context->bo_mc2) >> 32), (offset - 3));
+ base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc), (offset - 2));
+ base_cmd->emit_at_offset(base_cmd,
+ ((0xffffffff00000000 & ring_context->bo_mc) >> 32), (offset - 1));
+ ring_context->pm4 += ring_context->pm4_dw;
+ }
+ /* restore pm4 */
+ ring_context->pm4 = ptr;
+ /* update the total pm4_dw */
+ ring_context->pm4_dw = ring_context->pm4_dw * 2 * j;
+ }
+
+ amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 1);
+ amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle, ring_context->bo_mc,
+ ring_context->write_length);
+ amdgpu_bo_unmap_and_free(ring_context->bo2, ring_context->va_handle2, ring_context->bo_mc2,
+ ring_context->write_length);
+ /* clean resources */
+ free(ring_context->pm4);
+ /* end of test */
+ //r = amdgpu_cs_ctx_free(context_handle);
+ r = amdgpu_cs_ctx_free(ring_context->context_handle);
+ igt_assert_eq(r, 0);
+ free_cmd_base(base_cmd);
+}
diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h
index cc8eba7f7..9c0d245a9 100644
--- a/lib/amdgpu/amd_deadlock_helpers.h
+++ b/lib/amdgpu/amd_deadlock_helpers.h
@@ -24,11 +24,18 @@
#ifndef __AMD_DEADLOCK_HELPERS_H__
#define __AMD_DEADLOCK_HELPERS_H__
+enum hang_type {
+ DMA_CORRUPTED_HEADER_HANG,
+ DMA_SLOW_LINEARCOPY_HANG
+};
+
void
amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned ip_type);
void
bad_access_helper(amdgpu_device_handle device_handle, int reg_access, unsigned ip_type);
+void
+amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type);
#endif
diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
index 88fdbd980..70e45649d 100644
--- a/tests/amdgpu/amd_basic.c
+++ b/tests/amdgpu/amd_basic.c
@@ -307,7 +307,7 @@ static void amdgpu_userptr_test(amdgpu_device_handle device)
ip_block->funcs->write_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
r = ip_block->funcs->compare(ip_block->funcs, ring_context, 1);
igt_assert_eq(r, 0);
@@ -412,7 +412,7 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle)
ring_context->resources[2] = ring_context->boa_vram[loop2];
ring_context->resources[3] = ring_context->boa_gtt[loop2];
ip_block->funcs->copy_linear(ip_block->funcs, ring_context, &ring_context->pm4_dw);
- amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0);
/* fulfill PM4: test DMA copy linear */
r = ip_block->funcs->compare_pattern(ip_block->funcs, ring_context, sdma_write_length);
igt_assert_eq(r, 0);
diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
index 6147b7636..dc7ec4366 100644
--- a/tests/amdgpu/amd_deadlock.c
+++ b/tests/amdgpu/amd_deadlock.c
@@ -77,6 +77,22 @@ igt_main
}
}
+ igt_describe("Test-GPU-reset-by-sdma-corrupted-header-with-jobs");
+ igt_subtest_with_dynamic("amdgpu-deadlock-sdma-corrupted-header-test") {
+ if (arr_cap[AMD_IP_DMA]) {
+ igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test")
+ amdgpu_hang_sdma_helper(device, DMA_CORRUPTED_HEADER_HANG);
+ }
+ }
+
+ igt_describe("Test-GPU-reset-by-sdma-slow-linear-copy-with-jobs");
+ igt_subtest_with_dynamic("amdgpu-deadlock-sdma-slow-linear-copy") {
+ if (arr_cap[AMD_IP_DMA]) {
+ igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy")
+ amdgpu_hang_sdma_helper(device, DMA_SLOW_LINEARCOPY_HANG);
+ }
+ }
+
igt_fixture {
amdgpu_device_deinitialize(device);
drm_close_driver(fd);
diff --git a/tests/amdgpu/amd_security.c b/tests/amdgpu/amd_security.c
index 46180df2e..1a7eba9eb 100644
--- a/tests/amdgpu/amd_security.c
+++ b/tests/amdgpu/amd_security.c
@@ -110,7 +110,7 @@ amdgpu_bo_lcopy(amdgpu_device_handle device,
amdgpu_sdma_lcopy(ring_context->pm4, ring_context->bo_mc2,
ring_context->bo_mc, size, secure);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
free(ring_context->pm4);
}
@@ -155,7 +155,7 @@ amdgpu_bo_move(amdgpu_device_handle device, int fd,
* it to the desired location.
*/
amdgpu_sdma_nop(ring_context->pm4, PACKET_NOP_SIZE);
- amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context);
+ amdgpu_test_exec_cs_helper(device, ip_block->type, ring_context, 0);
free(ring_context->pm4);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-10-23 2:04 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-18 5:33 [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA Jesse Zhang
2023-10-18 7:45 ` [igt-dev] ✗ CI.xeBAT: failure for tests/amd_dispatch: add negative test for SDMA (rev2) Patchwork
2023-10-18 7:48 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-10-18 10:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-10-19 2:39 ` [igt-dev] [PATCH] tests/amd_dispatch: add negative test for SDMA vitaly prosyak
-- strict thread matches above, loose matches on Subject: below --
2023-10-20 5:21 Jesse Zhang
2023-10-20 11:37 ` Kamil Konieczny
2023-10-20 16:08 ` vitaly prosyak
2023-10-22 3:42 ` vitaly prosyak
2023-10-23 2:04 Jesse Zhang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox