* [igt-dev] [PATCH i-g-t v4] tests/intel: Add Xe peer2peer test
@ 2023-11-30 21:40 David Kershner
2023-12-01 0:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/intel: Add Xe peer2peer test (rev4) Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: David Kershner @ 2023-11-30 21:40 UTC (permalink / raw)
To: igt-dev, michael.j.ruhl, john.fleck, katarzyna.piecielska
Add tests to read/write data between two different GPUs using DMABUF
and P2PDMA. The kernel must have P2PDMA and DMABUF enabled for the test
pass.
Acked-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: David Kershner <david.kershner@intel.com>
---
Changes from v1 --
- fixed whitespace issues
- fixed review comments
Changes from v2 --
- fixed peer2peer test description
- updates due to rebase
Changes from v3 --
- updaets due to rebase
---
tests/intel/xe_peer2peer.c | 374 +++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 375 insertions(+)
create mode 100644 tests/intel/xe_peer2peer.c
diff --git a/tests/intel/xe_peer2peer.c b/tests/intel/xe_peer2peer.c
new file mode 100644
index 000000000..e81c5bd7b
--- /dev/null
+++ b/tests/intel/xe_peer2peer.c
@@ -0,0 +1,374 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include "drm.h"
+#include "igt.h"
+#include "igt_device.h"
+#include "intel_blt.h"
+#include "intel_mocs.h"
+#include "lib/igt_sysfs.h"
+#include "lib/intel_chipset.h"
+#include "lib/intel_pat.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+#include "xe/xe_util.h"
+
+/**
+ * TEST: xe_peer2peer
+ * Category: Hardware building block
+ * Sub-category: MultiGPU
+ * Functionality: dma buf copy
+ * Description: Peer2peer dma buf copy tests
+ * Test category: xe
+ *
+ * SUBTEST: read
+ * Description:
+ * dma buf copy read
+ *
+ * SUBTEST: write
+ * Description:
+ * dma buf copy write
+ */
+
+IGT_TEST_DESCRIPTION("Exercise blitter read/writes between two Xe devices");
+
+struct blt_fast_copy_data {
+ int xe;
+ struct blt_copy_object src;
+ struct blt_copy_object mid;
+ struct blt_copy_object dst;
+
+ struct blt_copy_batch bb;
+ enum blt_color_depth color_depth;
+};
+
+struct gpu_info {
+ uint32_t id;
+ int fd;
+ struct igt_collection *set;
+};
+
+static bool has_prime(int fd)
+{
+ uint64_t value;
+ uint64_t mask = DRM_PRIME_CAP_IMPORT | DRM_PRIME_CAP_EXPORT;
+
+ if (drmGetCap(fd, DRM_CAP_PRIME, &value))
+ return false;
+
+ return (value & mask) == mask;
+}
+
+static int get_device_info(struct gpu_info gpus[], int num_gpus)
+{
+ int cnt;
+ int xe;
+ int i;
+
+ for (i = 0, cnt = 0 && i < 128; cnt < num_gpus; i++) {
+ xe = __drm_open_driver_another(i, DRIVER_XE);
+ if (xe < 0)
+ break;
+
+ /* dma-buf is required */
+ if (!has_prime(xe) || !blt_has_fast_copy(xe)) {
+ close(xe);
+ continue;
+ }
+
+ gpus[cnt].fd = xe;
+ gpus[cnt].set = xe_get_memory_region_set(xe,
+ DRM_XE_MEM_REGION_CLASS_SYSMEM,
+ DRM_XE_MEM_REGION_CLASS_VRAM);
+ cnt++;
+ }
+
+ return cnt;
+}
+
+/**
+ * test_read - Read an imported buffer from an external GPU via dma-buf
+ * @ex_gpu: device providing the original object
+ * @im_gpu: device doing the read
+ * @ex_reg: the source region to copy from
+ * @im_reg: the destination region to copy to
+ *
+ */
+static void test_read(struct gpu_info *ex_gpu, struct gpu_info *im_gpu,
+ uint32_t ex_reg, uint32_t im_reg)
+{
+ struct blt_copy_data im_blt = {};
+ struct blt_copy_data ex_blt = {};
+ struct blt_copy_object *dst;
+ struct blt_copy_object *im_src;
+ struct blt_copy_object *src;
+ const uint32_t bpp = 32;
+ uint64_t im_bb_size = xe_get_default_alignment(im_gpu->fd);
+ uint64_t ahnd;
+ uint32_t bb;
+ uint32_t width = 1024, height = 1024;
+ int result;
+ uint32_t vm, exec_queue;
+ uint32_t ex_xe = ex_gpu->fd;
+ uint32_t im_xe = im_gpu->fd;
+ uint32_t ex_src, dmabuf;
+ uint32_t stride;
+
+ struct drm_xe_engine_class_instance inst = {
+ .engine_class = DRM_XE_ENGINE_CLASS_COPY,
+ };
+ intel_ctx_t *ctx;
+
+ vm = xe_vm_create(im_xe, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0);
+ exec_queue = xe_exec_queue_create(im_xe, vm, &inst, 0);
+ ctx = intel_ctx_xe(im_xe, vm, exec_queue, 0, 0, 0);
+ ahnd = intel_allocator_open_full(im_xe, ctx->vm, 0, 0,
+ INTEL_ALLOCATOR_SIMPLE,
+ ALLOC_STRATEGY_LOW_TO_HIGH, 0);
+
+ blt_copy_init(ex_xe, &ex_blt);
+ blt_copy_init(im_xe, &im_blt);
+
+ src = blt_create_object(&ex_blt, ex_reg, width, height, bpp, 0,
+ T_LINEAR, COMPRESSION_DISABLED, 0, true);
+ dst = blt_create_object(&im_blt, im_reg, width, height, bpp, 0,
+ T_LINEAR, COMPRESSION_DISABLED, 0, true);
+ blt_surface_fill_rect(ex_xe, src, width, height);
+
+ dmabuf = prime_handle_to_fd(ex_xe, src->handle);
+ ex_src = prime_fd_to_handle(im_xe, dmabuf);
+ im_src = calloc(1, sizeof(*im_src));
+
+ stride = width * 4;
+ blt_set_object(im_src, ex_src, src->size, ex_reg, 0, DEFAULT_PAT_INDEX,
+ T_LINEAR, COMPRESSION_DISABLED, 0);
+ blt_set_geom(im_src, stride, 0, 0, width, height, 0, 0);
+ igt_assert(im_src->size == dst->size);
+
+ im_blt.color_depth = CD_32bit;
+ blt_set_copy_object(&im_blt.src, im_src);
+ blt_set_copy_object(&im_blt.dst, dst);
+
+ bb = xe_bo_create_flags(im_xe, 0, im_bb_size, im_reg);
+ blt_set_batch(&im_blt.bb, bb, im_bb_size, im_reg);
+
+ blt_fast_copy(im_xe, ctx, NULL, ahnd, &im_blt);
+
+ result = memcmp(src->ptr, im_blt.dst.ptr, src->size);
+
+ put_offset(ahnd, im_src->handle);
+ put_offset(ahnd, dst->handle);
+ put_offset(ahnd, bb);
+ intel_allocator_bind(ahnd, 0, 0);
+ blt_destroy_object(im_xe, im_src);
+ blt_destroy_object(im_xe, dst);
+ blt_destroy_object(ex_xe, src);
+ put_ahnd(ahnd);
+
+ igt_assert_f(!result, "source and destination surfaces differs!\n");
+}
+
+/**
+ * test_write - Write an imported buffer to an external GPU via dma-buf
+ * @ex_gpu: device providing the destination object
+ * @im_gpu: device doing the write
+ * @ex_reg: the source region to copy from
+ * @im_reg: the destination region to copy to
+ *
+ */
+static void test_write(struct gpu_info *ex_gpu, struct gpu_info *im_gpu,
+ uint32_t ex_reg, uint32_t im_reg)
+{
+ struct blt_copy_data im_blt = {};
+ struct blt_copy_data ex_blt = {};
+ struct blt_copy_object *dst;
+ struct blt_copy_object *im_dst;
+ struct blt_copy_object *src;
+ const uint32_t bpp = 32;
+ uint64_t im_bb_size = xe_get_default_alignment(im_gpu->fd);
+ uint64_t ahnd;
+ uint32_t bb;
+ uint32_t width = 1024, height = 1024;
+ int result;
+ uint32_t vm, exec_queue;
+ uint32_t ex_xe = ex_gpu->fd;
+ uint32_t im_xe = im_gpu->fd;
+ uint32_t ex_dst, dmabuf;
+ uint32_t stride;
+
+ struct drm_xe_engine_class_instance inst = {
+ .engine_class = DRM_XE_ENGINE_CLASS_COPY,
+ };
+ intel_ctx_t *ctx;
+
+ vm = xe_vm_create(im_xe, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0);
+ exec_queue = xe_exec_queue_create(im_xe, vm, &inst, 0);
+ ctx = intel_ctx_xe(im_xe, vm, exec_queue, 0, 0, 0);
+ ahnd = intel_allocator_open_full(im_xe, ctx->vm, 0, 0,
+ INTEL_ALLOCATOR_SIMPLE,
+ ALLOC_STRATEGY_LOW_TO_HIGH, 0);
+
+ blt_copy_init(ex_xe, &ex_blt);
+ blt_copy_init(im_xe, &im_blt);
+
+ dst = blt_create_object(&ex_blt, ex_reg, width, height, bpp, 0,
+ T_LINEAR, COMPRESSION_DISABLED, 0, true);
+ src = blt_create_object(&im_blt, im_reg, width, height, bpp, 0,
+ T_LINEAR, COMPRESSION_DISABLED, 0, true);
+ blt_surface_fill_rect(im_xe, src, width, height);
+
+ dmabuf = prime_handle_to_fd(ex_xe, dst->handle);
+ ex_dst = prime_fd_to_handle(im_xe, dmabuf);
+ im_dst = calloc(1, sizeof(*im_dst));
+
+ stride = width * 4;
+ blt_set_object(im_dst, ex_dst, src->size, ex_reg, 0, DEFAULT_PAT_INDEX,
+ T_LINEAR, COMPRESSION_DISABLED, 0);
+ blt_set_geom(im_dst, stride, 0, 0, width, height, 0, 0);
+ igt_assert(im_dst->size == src->size);
+
+ im_blt.color_depth = CD_32bit;
+ blt_set_copy_object(&im_blt.src, src);
+ blt_set_copy_object(&im_blt.dst, im_dst);
+
+ bb = xe_bo_create_flags(im_xe, 0, im_bb_size, im_reg);
+ blt_set_batch(&im_blt.bb, bb, im_bb_size, im_reg);
+
+ blt_fast_copy(im_xe, ctx, NULL, ahnd, &im_blt);
+
+ result = memcmp(dst->ptr, im_blt.src.ptr, src->size);
+
+ put_offset(ahnd, im_dst->handle);
+ put_offset(ahnd, dst->handle);
+ put_offset(ahnd, bb);
+ intel_allocator_bind(ahnd, 0, 0);
+ blt_destroy_object(im_xe, src);
+ blt_destroy_object(im_xe, im_dst);
+ blt_destroy_object(ex_xe, dst);
+ put_ahnd(ahnd);
+
+ igt_assert_f(!result, "source and destination surfaces differs!\n");
+}
+
+static const char *p2p_path(int ex_reg, struct gpu_info *ex_gpu, struct gpu_info *im_gpu)
+{
+ return "-p2p";
+}
+
+static char *region_name(int xe, uint32_t region)
+{
+ char *name;
+ struct drm_xe_query_mem_region *memreg;
+ int r;
+ int len = 7;
+
+ /* enough for "name%d" * n */
+ name = malloc(len);
+ igt_assert(name);
+
+ memreg = xe_mem_region(xe, region);
+
+ if (XE_IS_CLASS_VRAM(memreg))
+ r = snprintf(name, len, "%s%d",
+ xe_region_name(region),
+ memreg->instance);
+ else
+ r = snprintf(name, len, "%s",
+ xe_region_name(region));
+
+ igt_assert(r > 0);
+
+ return name;
+}
+
+/**
+ * gpu_read - Set up a read from the exporting GPU to the importing GPU
+ * @ex_gpu: GPU that is exporting a buffer for read
+ * @im_gpu: GPU that is importing and reading the buffer
+ */
+static void gpu_read(struct gpu_info *ex_gpu, struct gpu_info *im_gpu)
+{
+ struct igt_collection *ex_regs, *im_regs;
+ int ex_reg, im_reg;
+ char *ex_name, *im_name;
+ const char *path;
+
+ for_each_variation_r(ex_regs, 1, ex_gpu->set) {
+ ex_reg = igt_collection_get_value(ex_regs, 0);
+ ex_name = region_name(ex_gpu->fd, ex_reg);
+
+ for_each_variation_r(im_regs, 1, im_gpu->set) {
+ im_reg = igt_collection_get_value(im_regs, 0);
+ im_name = region_name(im_gpu->fd, im_reg);
+
+ path = p2p_path(ex_reg, ex_gpu, im_gpu);
+ igt_dynamic_f("read-gpuA-%s-gpuB-%s%s", ex_name,
+ im_name, path)
+ test_read(ex_gpu, im_gpu, ex_reg, im_reg);
+
+ free(im_name);
+ }
+ free(ex_name);
+ }
+}
+
+/**
+ * gpu_write - Set up a write from the importing GPU to the exporting GPU
+ * @ex_gpu: GPU that is exporting a buffer for read
+ * @im_gpu: GPU that is importing and reading the buffer
+ */
+static void gpu_write(struct gpu_info *ex_gpu, struct gpu_info *im_gpu)
+{
+ struct igt_collection *ex_regs, *im_regs;
+ int ex_reg, im_reg;
+ char *ex_name, *im_name;
+ const char *path;
+
+ for_each_variation_r(ex_regs, 1, ex_gpu->set) {
+ ex_reg = igt_collection_get_value(ex_regs, 0);
+ ex_name = region_name(ex_gpu->fd, ex_reg);
+
+ for_each_variation_r(im_regs, 1, im_gpu->set) {
+ im_reg = igt_collection_get_value(im_regs, 0);
+ im_name = region_name(im_gpu->fd, im_reg);
+
+ path = p2p_path(ex_reg, ex_gpu, im_gpu);
+ igt_dynamic_f("write-gpuA-%s-gpuB-%s%s", ex_name,
+ im_name, path)
+ test_write(ex_gpu, im_gpu, ex_reg, im_reg);
+
+ free(im_name);
+ }
+ free(ex_name);
+ }
+}
+
+#define DEFAULT_SIZE 0
+
+igt_main_args("", NULL, NULL, NULL, NULL)
+{
+ struct gpu_info gpus[2];
+ int gpu_cnt;
+
+ igt_fixture {
+ gpu_cnt = get_device_info(gpus, ARRAY_SIZE(gpus));
+ igt_skip_on(gpu_cnt < 2);
+ }
+
+ igt_describe("dmabuf gpu-gpu read");
+ igt_subtest_with_dynamic_f("read")
+ gpu_read(&gpus[0], &gpus[1]);
+
+ igt_describe("dmabuf gpu-gpu write");
+ igt_subtest_with_dynamic_f("write")
+ gpu_write(&gpus[0], &gpus[1]);
+
+ igt_fixture {
+ int cnt;
+
+ for (cnt = 0; cnt < gpu_cnt; cnt++)
+ drm_close_driver(gpus[cnt].fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index facf60ccf..514f8ac85 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -302,6 +302,7 @@ intel_xe_progs = [
'xe_module_load',
'xe_noexec_ping_pong',
'xe_pat',
+ 'xe_peer2peer',
'xe_pm',
'xe_pm_residency',
'xe_prime_self_import',
--
2.38.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/intel: Add Xe peer2peer test (rev4) 2023-11-30 21:40 [igt-dev] [PATCH i-g-t v4] tests/intel: Add Xe peer2peer test David Kershner @ 2023-12-01 0:36 ` Patchwork 2023-12-01 2:16 ` [igt-dev] ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-12-01 0:36 UTC (permalink / raw) To: David Kershner; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3663 bytes --] == Series Details == Series: tests/intel: Add Xe peer2peer test (rev4) URL : https://patchwork.freedesktop.org/series/126343/ State : success == Summary == CI Bug Log - changes from IGT_7613 -> IGTPW_10313 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/index.html Participating hosts (37 -> 34) ------------------------------ Missing (3): bat-mtlp-8 fi-snb-2520m fi-bsw-n3050 Known issues ------------ Here are the changes found in IGTPW_10313 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-1: [PASS][3] -> [FAIL][4] ([fdo#103375]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2: - fi-bsw-nick: [PASS][5] -> [DMESG-WARN][6] ([i915#1982]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/fi-bsw-nick/igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/fi-bsw-nick/igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#1845] / [i915#9197]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-9: [INCOMPLETE][8] ([i915#9275]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][10] ([IGT#3]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7613 -> IGTPW_10313 CI-20190529: 20190529 CI_DRM_13956: b59a0a6520764f36a79ba6b4c590e243ac6b913d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10313: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/index.html IGT_7613: 378017d8fa63defde11c0b4bc72025c64b70607d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_peer2peer@read +igt@xe_peer2peer@write == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/index.html [-- Attachment #2: Type: text/html, Size: 4475 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/intel: Add Xe peer2peer test (rev4) 2023-11-30 21:40 [igt-dev] [PATCH i-g-t v4] tests/intel: Add Xe peer2peer test David Kershner 2023-12-01 0:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/intel: Add Xe peer2peer test (rev4) Patchwork @ 2023-12-01 2:16 ` Patchwork 2023-12-02 9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-04 14:06 ` [igt-dev] [PATCH i-g-t v4] tests/intel: Add Xe peer2peer test Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-12-01 2:16 UTC (permalink / raw) To: David Kershner; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2053 bytes --] == Series Details == Series: tests/intel: Add Xe peer2peer test (rev4) URL : https://patchwork.freedesktop.org/series/126343/ State : success == Summary == CI Bug Log - changes from XEIGT_7613_BAT -> XEIGTPW_10313_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10313_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7613/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10313/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html #### Possible fixes #### * {igt@xe_create@create-execqueues-leak}: - bat-atsm-2: [FAIL][3] ([Intel XE#524]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7613/bat-atsm-2/igt@xe_create@create-execqueues-leak.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10313/bat-atsm-2/igt@xe_create@create-execqueues-leak.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7613 -> IGTPW_10313 IGTPW_10313: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/index.html IGT_7613: 378017d8fa63defde11c0b4bc72025c64b70607d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-542-84f2c2adec155170779f65ff63b4e80a51d22448: 84f2c2adec155170779f65ff63b4e80a51d22448 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10313/index.html [-- Attachment #2: Type: text/html, Size: 2649 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/intel: Add Xe peer2peer test (rev4) 2023-11-30 21:40 [igt-dev] [PATCH i-g-t v4] tests/intel: Add Xe peer2peer test David Kershner 2023-12-01 0:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/intel: Add Xe peer2peer test (rev4) Patchwork 2023-12-01 2:16 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-12-02 9:26 ` Patchwork 2023-12-04 14:06 ` [igt-dev] [PATCH i-g-t v4] tests/intel: Add Xe peer2peer test Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-12-02 9:26 UTC (permalink / raw) To: David Kershner; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100261 bytes --] == Series Details == Series: tests/intel: Add Xe peer2peer test (rev4) URL : https://patchwork.freedesktop.org/series/126343/ State : failure == Summary == CI Bug Log - changes from IGT_7613_full -> IGTPW_10313_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10313_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10313_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10313_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gem_contexts: - shard-mtlp: [PASS][1] -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-mtlp-1/igt@i915_selftest@live@gem_contexts.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-5/igt@i915_selftest@live@gem_contexts.html #### Warnings #### * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [INCOMPLETE][3] ([i915#9275]) -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-6/igt@gem_exec_suspend@basic-s0@lmem0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html Known issues ------------ Here are the changes found in IGTPW_10313_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-5/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][7] ([i915#6122]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@api_intel_bb@render-ccs.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +21 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][10] ([i915#7742]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@fbdev@eof: - shard-rkl: [PASS][11] -> [SKIP][12] ([i915#2582]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@fbdev@eof.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@fbdev@eof.html * igt@fbdev@info: - shard-rkl: [PASS][13] -> [SKIP][14] ([i915#1849] / [i915#2582]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-2/igt@fbdev@info.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@fbdev@info.html * igt@fbdev@write: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#2582]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@fbdev@write.html * igt@gem_ccs@suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-4/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8562]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg2: NOTRUN -> [SKIP][21] ([fdo#109314]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-6/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-close: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-dg2: [PASS][25] -> [FAIL][26] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@gem_eio@kms.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-1/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-6/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-6/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-5/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#6334]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#6334]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#6334]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-rkl: NOTRUN -> [FAIL][35] ([i915#9606]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][36] ([i915#9606]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-10/igt@gem_exec_capture@many-4k-zero.html - shard-mtlp: NOTRUN -> [FAIL][37] ([i915#9606]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_capture@pi@vcs1: - shard-mtlp: [PASS][38] -> [FAIL][39] ([i915#4475] / [i915#7765]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-mtlp-6/igt@gem_exec_capture@pi@vcs1.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html * igt@gem_exec_capture@pi@vecs0: - shard-mtlp: [PASS][40] -> [DMESG-WARN][41] ([i915#5591]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-mtlp-6/igt@gem_exec_capture@pi@vecs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@gem_exec_capture@pi@vecs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][42] -> [FAIL][43] ([i915#2842]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-19/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-19/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#7697]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@secure-non-master: - shard-mtlp: NOTRUN -> [SKIP][49] ([fdo#112283]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +10 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +10 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +8 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-13/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-mtlp: [PASS][56] -> [ABORT][57] ([i915#9262]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-mtlp-2/igt@gem_exec_suspend@basic-s3-devices@smem.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-4/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-10/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk8/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@smem-oom: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-3/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-4/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap@big-bo: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +8 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-10/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@basic-wc: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@gem_mmap_gtt@basic-wc.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@set-cache-level: - shard-rkl: [PASS][67] -> [SKIP][68] ([i915#1850]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@gem_mmap_wc@set-cache-level.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-2/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@uncached: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-13/igt@gem_pread@uncached.html * igt@gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-16/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#4270]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4270]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4079]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-rkl: NOTRUN -> [SKIP][81] ([fdo#109312]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@gem_softpin@evict-snoop-interruptible.html - shard-tglu: NOTRUN -> [SKIP][82] ([fdo#109312]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-7/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4879]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][84] ([fdo#110542]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@gem_userptr_blits@coherency-sync.html - shard-tglu: NOTRUN -> [SKIP][85] ([fdo#110542]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4958]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3297]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@vma-merge: - shard-mtlp: NOTRUN -> [FAIL][91] ([i915#3318]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@gem_userptr_blits@vma-merge.html * igt@gen3_mixed_blits: - shard-tglu: NOTRUN -> [SKIP][92] ([fdo#109289]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-10/igt@gen3_mixed_blits.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][93] ([fdo#109289]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-5/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-param: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@gen9_exec_parse@shadow-peek.html - shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-3/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#6227]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-7/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [INCOMPLETE][99] ([i915#9697]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][100] -> [INCOMPLETE][101] ([i915#9200]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#8399]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][103] ([fdo#109271]) +94 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-dg2: NOTRUN -> [SKIP][104] ([fdo#109293] / [fdo#109506]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#6621]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][106] ([i915#8346]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@i915_pm_rps@reset.html * igt@i915_query@query-topology-known-pci-ids: - shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#109303]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@mock@memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][108] ([i915#9311]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk7/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@fence-restore-untiled: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4077]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-12/igt@i915_suspend@fence-restore-untiled.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-5/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#3826]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][113] ([i915#8247]) +3 other tests fail [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][114] ([i915#8247]) +3 other tests fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [FAIL][115] ([i915#8247]) +3 other tests fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6229]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#1769]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#1845] / [i915#4098]) +38 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-2/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][123] ([fdo#111615] / [i915#5286]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111614]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][125] ([fdo#111614]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-5/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][126] ([fdo#111614] / [i915#3638]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-18/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111614]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#5190]) +12 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [FAIL][130] ([i915#3743]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][131] -> [FAIL][132] ([i915#3743]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][133] ([fdo#110723]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5190]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][135] ([fdo#111615]) +10 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][136] ([fdo#111615]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-15/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][137] ([fdo#111615]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_joiner@basic: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#2705]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_big_joiner@basic.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#3742]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4087] / [i915#7213]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7213]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][143] ([fdo#111827]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-limited-range: - shard-tglu: NOTRUN -> [SKIP][144] ([fdo#111827]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-6/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7828]) +10 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#7828]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#7828]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-16/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#7828]) +9 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@ctm-signed@pipe-a: - shard-rkl: [PASS][150] -> [SKIP][151] ([i915#4098]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_color@ctm-signed@pipe-a.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_color@ctm-signed@pipe-a.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#7118]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][153] ([i915#7173]) +1 other test timeout [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#3299]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3299]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6944]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@kms_content_protection@lic.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#7118]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3555]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3359]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3555]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3359]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][162] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][163] ([fdo#111767] / [i915#3546]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3546]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#4213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][166] ([fdo#109274] / [i915#5354]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-tglu: NOTRUN -> [SKIP][167] ([fdo#109274]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-5/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][168] ([i915#4103] / [i915#4213]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][169] ([i915#4103]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#8588]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#8588]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#3804]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3840] / [i915#9688]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3840] / [i915#9688]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3469]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3637]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][178] ([fdo#109274]) +6 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-tglu: NOTRUN -> [SKIP][179] ([fdo#109274] / [i915#3637]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-9/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][180] ([fdo#111767] / [i915#3637]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-snb: NOTRUN -> [SKIP][181] ([fdo#109271] / [fdo#111767]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-snb6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-snb: NOTRUN -> [SKIP][182] ([fdo#109271]) +4 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-snb7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111825]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@bo-too-big-interruptible: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3637] / [i915#4098]) +11 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_flip@bo-too-big-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#8381]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#2672]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#2672]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/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-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555]) +11 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8810]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#5274]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [PASS][194] -> [FAIL][195] ([i915#6880]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: [PASS][196] -> [SKIP][197] ([i915#1849] / [i915#4098] / [i915#5354]) +13 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#5354]) +25 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#8708]) +17 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][200] ([fdo#111825] / [i915#1825]) +17 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#8708]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#1849] / [i915#4098] / [i915#5354]) +14 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3458]) +22 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3023]) +8 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1825]) +27 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111825]) +7 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][207] ([fdo#109280]) +19 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#5439]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-tglu: NOTRUN -> [SKIP][209] ([fdo#110189]) +6 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3458]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8708]) +11 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_invalid_mode@int-max-clock: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#4098]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#6301]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#6301]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-2/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-rkl: NOTRUN -> [SKIP][216] ([fdo#109289]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][217] ([fdo#109289]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-16/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][218] ([fdo#109289]) +5 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@bad-source: - shard-rkl: [PASS][219] -> [SKIP][220] ([i915#1845] / [i915#4098]) +28 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_pipe_crc_basic@bad-source.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_pipe_crc_basic@bad-source.html * igt@kms_plane@plane-position-hole: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#8825]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_plane@plane-position-hole.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][222] ([i915#4573]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3582]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8821]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][225] ([i915#8292]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-2/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-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#5176] / [i915#9423]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#5235]) +5 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#5235]) +7 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#6953] / [i915#8152]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#5235]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#5235]) +19 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#8152]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#5235]) +4 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#4098] / [i915#6953] / [i915#8152]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#5235]) +14 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#6524]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#9683]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-10/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#9683]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][240] ([fdo#111068] / [i915#9683]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-8/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9683]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#4348]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_cursor_render: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#9673] / [i915#9732]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-18/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_primary_blt: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9673] / [i915#9732]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr@psr2_primary_render: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9673] / [i915#9732]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@kms_psr@psr2_primary_render.html * igt@kms_psr@psr2_sprite_blt: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#9673] / [i915#9732]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-8/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#9685]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#4235]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#4235] / [i915#5190]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][250] ([fdo#111615] / [i915#5289]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][251] ([fdo#111615] / [i915#5289]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#4235]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][253] ([i915#5465]) +1 other test fail [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-snb2/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8823]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#4098]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-6/igt@kms_setmode@invalid-clone-single-crtc.html - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8809]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-tglu: [PASS][257] -> [FAIL][258] ([i915#9196]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [FAIL][259] ([i915#9196]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vblank@query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#4098]) +17 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_vblank@query-forked-busy.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8808]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-2/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output: - shard-glk: NOTRUN -> [SKIP][262] ([fdo#109271] / [i915#2437]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk7/igt@kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][263] ([i915#2437]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_writeback@writeback-check-output.html - shard-tglu: NOTRUN -> [SKIP][264] ([i915#2437]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-6/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#2437]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-16/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#2434]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-10/igt@perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][267] ([i915#2434]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [PASS][268] -> [FAIL][269] ([i915#4349]) +2 other tests fail [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8807]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-6/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#8516]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#3291] / [i915#3708]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][273] ([fdo#109295] / [i915#3291] / [i915#3708]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@prime_vgem@basic-fence-read.html * igt@tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][274] ([fdo#109307] / [i915#4818]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-16/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#2575]) +10 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-8/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@bad-perfmon: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#2575]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-15/igt@v3d/v3d_submit_csd@bad-perfmon.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#2575]) +13 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-rkl: NOTRUN -> [SKIP][278] ([fdo#109315]) +9 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-tglu: NOTRUN -> [SKIP][279] ([fdo#109315] / [i915#2575]) +6 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-8/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#7711]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-12/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#7711]) +8 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_mmap@mmap-bo: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#7711]) +6 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#7711]) +6 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-7/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#2575]) +4 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-4/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [FAIL][285] ([i915#7742]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][287] ([i915#6268]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@hibernate: - shard-tglu: [ABORT][289] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-10/igt@gem_eio@hibernate.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-4/igt@gem_eio@hibernate.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][291] ([i915#5784]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg1-16/igt@gem_eio@unwedge-stress.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][293] ([i915#2842]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-rkl: [FAIL][295] ([i915#2842]) -> [PASS][296] +1 other test pass [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][297] ([i915#4936] / [i915#5493]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [DMESG-WARN][299] ([i915#4936] / [i915#5493]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [ABORT][301] ([i915#5566]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-glk1/igt@gen9_exec_parse@allowed-all.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk5/igt@gen9_exec_parse@allowed-all.html * {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0}: - shard-dg1: [FAIL][303] ([i915#3591]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][305] ([i915#5138]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][307] ([i915#3743]) -> [PASS][308] +1 other test pass [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_color@degamma@pipe-a: - shard-rkl: [SKIP][309] ([i915#4098]) -> [PASS][310] +9 other tests pass [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_color@degamma@pipe-a.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_color@degamma@pipe-a.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][311] ([i915#2346]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc: - shard-rkl: [SKIP][313] ([i915#1849] / [i915#4098]) -> [PASS][314] +1 other test pass [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_fbcon_fbt@fbc.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_fbcon_fbt@fbc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][315] ([i915#1849] / [i915#4098] / [i915#5354]) -> [PASS][316] +7 other tests pass [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [FAIL][317] ([i915#6880]) -> [PASS][318] +2 other tests pass [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-snb: [SKIP][319] ([fdo#109271]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * {igt@kms_pm_dc@dc9-dpms}: - shard-tglu: [SKIP][321] ([i915#4281]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html * {igt@kms_pm_rpm@dpms-mode-unset-lpsp}: - shard-rkl: [SKIP][323] ([i915#9519]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * {igt@kms_pm_rpm@system-suspend-modeset}: - shard-rkl: [SKIP][325] ([fdo#109308]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_pm_rpm@system-suspend-modeset.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_rotation_crc@primary-rotation-90: - shard-rkl: [SKIP][327] ([i915#1845] / [i915#4098]) -> [PASS][328] +24 other tests pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-90.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_rotation_crc@primary-rotation-90.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [FAIL][329] ([i915#8724]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@perf@enable-disable@0-rcs0.html * igt@prime_vgem@basic-fence-flip: - shard-rkl: [SKIP][331] ([fdo#109295] / [i915#3708] / [i915#4098]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@prime_vgem@basic-fence-flip.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@prime_vgem@basic-fence-flip.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][333] ([i915#9618]) -> [INCOMPLETE][334] ([i915#9408]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][335] ([i915#5286]) -> [SKIP][336] ([i915#1845] / [i915#4098]) +6 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][337] ([i915#1845] / [i915#4098]) -> [SKIP][338] ([i915#5286]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][339] ([fdo#111614] / [i915#3638]) -> [SKIP][340] ([i915#1845] / [i915#4098]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][341] ([i915#1845] / [i915#4098]) -> [SKIP][342] ([fdo#111614] / [i915#3638]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][343] ([fdo#110723]) -> [SKIP][344] ([i915#1845] / [i915#4098]) +4 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-rkl: [SKIP][345] ([fdo#111615]) -> [SKIP][346] ([i915#1845] / [i915#4098]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-rkl: [SKIP][347] ([i915#1845] / [i915#4098]) -> [SKIP][348] ([fdo#110723]) +2 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][349] ([i915#3116]) -> [SKIP][350] ([i915#1845] / [i915#4098]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][351] ([i915#7118] / [i915#7162]) -> [SKIP][352] ([i915#7118]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@kms_content_protection@type1.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-6/igt@kms_content_protection@type1.html - shard-rkl: [SKIP][353] ([i915#7118]) -> [SKIP][354] ([i915#1845] / [i915#4098]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_content_protection@type1.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: [SKIP][355] ([i915#1845] / [i915#4098]) -> [SKIP][356] ([fdo#109279] / [i915#3359]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][357] ([i915#1845] / [i915#4098]) -> [SKIP][358] ([i915#3359]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][359] ([i915#3359]) -> [SKIP][360] ([i915#1845] / [i915#4098]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-rkl: [SKIP][361] ([i915#1845] / [i915#4098]) -> [SKIP][362] ([i915#3555]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_crc@cursor-random-max-size.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][363] ([i915#1845] / [i915#4098]) -> [SKIP][364] ([i915#4103]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][365] ([fdo#111825]) -> [SKIP][366] ([i915#1845] / [i915#4098]) +2 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-rkl: [SKIP][367] ([i915#1845] / [i915#4098]) -> [SKIP][368] ([fdo#111825]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-rkl: [SKIP][369] ([i915#1845] / [i915#4098]) -> [SKIP][370] ([fdo#111767] / [fdo#111825]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: [SKIP][371] ([i915#4098]) -> [SKIP][372] ([i915#3840]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][373] ([fdo#111825] / [i915#1825]) -> [SKIP][374] ([i915#1849] / [i915#4098] / [i915#5354]) +39 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][375] ([fdo#111825]) -> [SKIP][376] ([i915#1849] / [i915#4098] / [i915#5354]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: [SKIP][377] ([i915#5439]) -> [SKIP][378] ([i915#1849] / [i915#4098] / [i915#5354]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][379] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][380] ([fdo#111825]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][381] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][382] ([fdo#111825] / [i915#1825]) +19 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: [SKIP][383] ([i915#3023]) -> [SKIP][384] ([i915#1849] / [i915#4098] / [i915#5354]) +31 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-rkl: [SKIP][385] ([i915#1849] / [i915#4098] / [i915#5354]) -> [SKIP][386] ([i915#3023]) +17 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_hdr@invalid-hdr: - shard-rkl: [SKIP][387] ([i915#3555] / [i915#8228]) -> [SKIP][388] ([i915#4098]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_hdr@invalid-hdr.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][389] ([i915#1845] / [i915#4098]) -> [SKIP][390] ([i915#3555] / [i915#8228]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][391] ([i915#6301]) -> [SKIP][392] ([i915#1845] / [i915#4098]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][393] ([i915#3555]) -> [SKIP][394] ([i915#1845] / [i915#4098]) +5 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-7/igt@kms_plane_lowres@tiling-yf.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-rkl: [SKIP][395] ([fdo#111825]) -> [SKIP][396] ([fdo#111825] / [i915#8152]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-dg2: [SKIP][397] ([i915#9673] / [i915#9732]) -> [SKIP][398] ([i915#9673]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_cpu.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-rkl: [SKIP][399] ([i915#9673] / [i915#9732]) -> [SKIP][400] ([i915#9673]) +1 other test skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_psr@psr2_cursor_plane_onoff.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_primary_blt: - shard-rkl: [SKIP][401] ([i915#9673]) -> [SKIP][402] ([i915#9673] / [i915#9732]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-1/igt@kms_psr@psr2_primary_blt.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-4/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: [SKIP][403] ([i915#9673] / [i915#9732]) -> [SKIP][404] ([i915#9673] / [i915#9736]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-10/igt@kms_psr@psr2_sprite_blt.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-11/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-dg2: [SKIP][405] ([i915#9673] / [i915#9736]) -> [SKIP][406] ([i915#9673]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@kms_psr@psr2_sprite_mmap_cpu.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: [SKIP][407] ([i915#9673] / [i915#9736]) -> [SKIP][408] ([i915#9673] / [i915#9732]) +2 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-11/igt@kms_psr@psr2_sprite_mmap_gtt.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-2/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][409] ([fdo#111615] / [i915#5289]) -> [SKIP][410] ([i915#1845] / [i915#4098]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][411] ([i915#9351]) -> [INCOMPLETE][412] ([i915#5493]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7613/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#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#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#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#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [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#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [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#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [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#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10313/index.html [-- Attachment #2: Type: text/html, Size: 124245 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4] tests/intel: Add Xe peer2peer test 2023-11-30 21:40 [igt-dev] [PATCH i-g-t v4] tests/intel: Add Xe peer2peer test David Kershner ` (2 preceding siblings ...) 2023-12-02 9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-04 14:06 ` Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Kamil Konieczny @ 2023-12-04 14:06 UTC (permalink / raw) To: igt-dev; +Cc: john.fleck, katarzyna.piecielska Hi David, On 2023-11-30 at 16:40:32 -0500, David Kershner wrote: > Add tests to read/write data between two different GPUs using DMABUF > and P2PDMA. The kernel must have P2PDMA and DMABUF enabled for the test > pass. > > Acked-by: Michael J. Ruhl <michael.j.ruhl@intel.com> - ^^ Please upgrade to r-b, Michael sent it for your v3. Also I added Francois to Cc as he is updating xe uAPI. > Signed-off-by: David Kershner <david.kershner@intel.com> > --- > Changes from v1 -- > - fixed whitespace issues > - fixed review comments > Changes from v2 -- > - fixed peer2peer test description > - updates due to rebase > Changes from v3 -- > - updaets due to rebase > --- > tests/intel/xe_peer2peer.c | 374 +++++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 375 insertions(+) > create mode 100644 tests/intel/xe_peer2peer.c > > diff --git a/tests/intel/xe_peer2peer.c b/tests/intel/xe_peer2peer.c > new file mode 100644 > index 000000000..e81c5bd7b > --- /dev/null > +++ b/tests/intel/xe_peer2peer.c > @@ -0,0 +1,374 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2023 Intel Corporation > + */ > + > +#include "drm.h" > +#include "igt.h" > +#include "igt_device.h" > +#include "intel_blt.h" > +#include "intel_mocs.h" > +#include "lib/igt_sysfs.h" > +#include "lib/intel_chipset.h" > +#include "lib/intel_pat.h" > +#include "xe/xe_ioctl.h" > +#include "xe/xe_query.h" > +#include "xe/xe_util.h" > + > +/** > + * TEST: xe_peer2peer > + * Category: Hardware building block ----- ^ This should be: "Test category:" > + * Sub-category: MultiGPU > + * Functionality: dma buf copy > + * Description: Peer2peer dma buf copy tests > + * Test category: xe ----- ^^^^^^^^^^^^^ Do you mean driver requirement? It is indirectly implied as "xe" from a test filename: xe_peer2peer.c Regards, Kamil > + * > + * SUBTEST: read > + * Description: > + * dma buf copy read > + * > + * SUBTEST: write > + * Description: > + * dma buf copy write > + */ > + > +IGT_TEST_DESCRIPTION("Exercise blitter read/writes between two Xe devices"); > + > +struct blt_fast_copy_data { > + int xe; > + struct blt_copy_object src; > + struct blt_copy_object mid; > + struct blt_copy_object dst; > + > + struct blt_copy_batch bb; > + enum blt_color_depth color_depth; > +}; > + > +struct gpu_info { > + uint32_t id; > + int fd; > + struct igt_collection *set; > +}; > + > +static bool has_prime(int fd) > +{ > + uint64_t value; > + uint64_t mask = DRM_PRIME_CAP_IMPORT | DRM_PRIME_CAP_EXPORT; > + > + if (drmGetCap(fd, DRM_CAP_PRIME, &value)) > + return false; > + > + return (value & mask) == mask; > +} > + > +static int get_device_info(struct gpu_info gpus[], int num_gpus) > +{ > + int cnt; > + int xe; > + int i; > + > + for (i = 0, cnt = 0 && i < 128; cnt < num_gpus; i++) { > + xe = __drm_open_driver_another(i, DRIVER_XE); > + if (xe < 0) > + break; > + > + /* dma-buf is required */ > + if (!has_prime(xe) || !blt_has_fast_copy(xe)) { > + close(xe); > + continue; > + } > + > + gpus[cnt].fd = xe; > + gpus[cnt].set = xe_get_memory_region_set(xe, > + DRM_XE_MEM_REGION_CLASS_SYSMEM, > + DRM_XE_MEM_REGION_CLASS_VRAM); > + cnt++; > + } > + > + return cnt; > +} > + > +/** > + * test_read - Read an imported buffer from an external GPU via dma-buf > + * @ex_gpu: device providing the original object > + * @im_gpu: device doing the read > + * @ex_reg: the source region to copy from > + * @im_reg: the destination region to copy to > + * > + */ > +static void test_read(struct gpu_info *ex_gpu, struct gpu_info *im_gpu, > + uint32_t ex_reg, uint32_t im_reg) > +{ > + struct blt_copy_data im_blt = {}; > + struct blt_copy_data ex_blt = {}; > + struct blt_copy_object *dst; > + struct blt_copy_object *im_src; > + struct blt_copy_object *src; > + const uint32_t bpp = 32; > + uint64_t im_bb_size = xe_get_default_alignment(im_gpu->fd); > + uint64_t ahnd; > + uint32_t bb; > + uint32_t width = 1024, height = 1024; > + int result; > + uint32_t vm, exec_queue; > + uint32_t ex_xe = ex_gpu->fd; > + uint32_t im_xe = im_gpu->fd; > + uint32_t ex_src, dmabuf; > + uint32_t stride; > + > + struct drm_xe_engine_class_instance inst = { > + .engine_class = DRM_XE_ENGINE_CLASS_COPY, > + }; > + intel_ctx_t *ctx; > + > + vm = xe_vm_create(im_xe, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0); > + exec_queue = xe_exec_queue_create(im_xe, vm, &inst, 0); > + ctx = intel_ctx_xe(im_xe, vm, exec_queue, 0, 0, 0); > + ahnd = intel_allocator_open_full(im_xe, ctx->vm, 0, 0, > + INTEL_ALLOCATOR_SIMPLE, > + ALLOC_STRATEGY_LOW_TO_HIGH, 0); > + > + blt_copy_init(ex_xe, &ex_blt); > + blt_copy_init(im_xe, &im_blt); > + > + src = blt_create_object(&ex_blt, ex_reg, width, height, bpp, 0, > + T_LINEAR, COMPRESSION_DISABLED, 0, true); > + dst = blt_create_object(&im_blt, im_reg, width, height, bpp, 0, > + T_LINEAR, COMPRESSION_DISABLED, 0, true); > + blt_surface_fill_rect(ex_xe, src, width, height); > + > + dmabuf = prime_handle_to_fd(ex_xe, src->handle); > + ex_src = prime_fd_to_handle(im_xe, dmabuf); > + im_src = calloc(1, sizeof(*im_src)); > + > + stride = width * 4; > + blt_set_object(im_src, ex_src, src->size, ex_reg, 0, DEFAULT_PAT_INDEX, > + T_LINEAR, COMPRESSION_DISABLED, 0); > + blt_set_geom(im_src, stride, 0, 0, width, height, 0, 0); > + igt_assert(im_src->size == dst->size); > + > + im_blt.color_depth = CD_32bit; > + blt_set_copy_object(&im_blt.src, im_src); > + blt_set_copy_object(&im_blt.dst, dst); > + > + bb = xe_bo_create_flags(im_xe, 0, im_bb_size, im_reg); > + blt_set_batch(&im_blt.bb, bb, im_bb_size, im_reg); > + > + blt_fast_copy(im_xe, ctx, NULL, ahnd, &im_blt); > + > + result = memcmp(src->ptr, im_blt.dst.ptr, src->size); > + > + put_offset(ahnd, im_src->handle); > + put_offset(ahnd, dst->handle); > + put_offset(ahnd, bb); > + intel_allocator_bind(ahnd, 0, 0); > + blt_destroy_object(im_xe, im_src); > + blt_destroy_object(im_xe, dst); > + blt_destroy_object(ex_xe, src); > + put_ahnd(ahnd); > + > + igt_assert_f(!result, "source and destination surfaces differs!\n"); > +} > + > +/** > + * test_write - Write an imported buffer to an external GPU via dma-buf > + * @ex_gpu: device providing the destination object > + * @im_gpu: device doing the write > + * @ex_reg: the source region to copy from > + * @im_reg: the destination region to copy to > + * > + */ > +static void test_write(struct gpu_info *ex_gpu, struct gpu_info *im_gpu, > + uint32_t ex_reg, uint32_t im_reg) > +{ > + struct blt_copy_data im_blt = {}; > + struct blt_copy_data ex_blt = {}; > + struct blt_copy_object *dst; > + struct blt_copy_object *im_dst; > + struct blt_copy_object *src; > + const uint32_t bpp = 32; > + uint64_t im_bb_size = xe_get_default_alignment(im_gpu->fd); > + uint64_t ahnd; > + uint32_t bb; > + uint32_t width = 1024, height = 1024; > + int result; > + uint32_t vm, exec_queue; > + uint32_t ex_xe = ex_gpu->fd; > + uint32_t im_xe = im_gpu->fd; > + uint32_t ex_dst, dmabuf; > + uint32_t stride; > + > + struct drm_xe_engine_class_instance inst = { > + .engine_class = DRM_XE_ENGINE_CLASS_COPY, > + }; > + intel_ctx_t *ctx; > + > + vm = xe_vm_create(im_xe, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0); > + exec_queue = xe_exec_queue_create(im_xe, vm, &inst, 0); > + ctx = intel_ctx_xe(im_xe, vm, exec_queue, 0, 0, 0); > + ahnd = intel_allocator_open_full(im_xe, ctx->vm, 0, 0, > + INTEL_ALLOCATOR_SIMPLE, > + ALLOC_STRATEGY_LOW_TO_HIGH, 0); > + > + blt_copy_init(ex_xe, &ex_blt); > + blt_copy_init(im_xe, &im_blt); > + > + dst = blt_create_object(&ex_blt, ex_reg, width, height, bpp, 0, > + T_LINEAR, COMPRESSION_DISABLED, 0, true); > + src = blt_create_object(&im_blt, im_reg, width, height, bpp, 0, > + T_LINEAR, COMPRESSION_DISABLED, 0, true); > + blt_surface_fill_rect(im_xe, src, width, height); > + > + dmabuf = prime_handle_to_fd(ex_xe, dst->handle); > + ex_dst = prime_fd_to_handle(im_xe, dmabuf); > + im_dst = calloc(1, sizeof(*im_dst)); > + > + stride = width * 4; > + blt_set_object(im_dst, ex_dst, src->size, ex_reg, 0, DEFAULT_PAT_INDEX, > + T_LINEAR, COMPRESSION_DISABLED, 0); > + blt_set_geom(im_dst, stride, 0, 0, width, height, 0, 0); > + igt_assert(im_dst->size == src->size); > + > + im_blt.color_depth = CD_32bit; > + blt_set_copy_object(&im_blt.src, src); > + blt_set_copy_object(&im_blt.dst, im_dst); > + > + bb = xe_bo_create_flags(im_xe, 0, im_bb_size, im_reg); > + blt_set_batch(&im_blt.bb, bb, im_bb_size, im_reg); > + > + blt_fast_copy(im_xe, ctx, NULL, ahnd, &im_blt); > + > + result = memcmp(dst->ptr, im_blt.src.ptr, src->size); > + > + put_offset(ahnd, im_dst->handle); > + put_offset(ahnd, dst->handle); > + put_offset(ahnd, bb); > + intel_allocator_bind(ahnd, 0, 0); > + blt_destroy_object(im_xe, src); > + blt_destroy_object(im_xe, im_dst); > + blt_destroy_object(ex_xe, dst); > + put_ahnd(ahnd); > + > + igt_assert_f(!result, "source and destination surfaces differs!\n"); > +} > + > +static const char *p2p_path(int ex_reg, struct gpu_info *ex_gpu, struct gpu_info *im_gpu) > +{ > + return "-p2p"; > +} > + > +static char *region_name(int xe, uint32_t region) > +{ > + char *name; > + struct drm_xe_query_mem_region *memreg; > + int r; > + int len = 7; > + > + /* enough for "name%d" * n */ > + name = malloc(len); > + igt_assert(name); > + > + memreg = xe_mem_region(xe, region); > + > + if (XE_IS_CLASS_VRAM(memreg)) > + r = snprintf(name, len, "%s%d", > + xe_region_name(region), > + memreg->instance); > + else > + r = snprintf(name, len, "%s", > + xe_region_name(region)); > + > + igt_assert(r > 0); > + > + return name; > +} > + > +/** > + * gpu_read - Set up a read from the exporting GPU to the importing GPU > + * @ex_gpu: GPU that is exporting a buffer for read > + * @im_gpu: GPU that is importing and reading the buffer > + */ > +static void gpu_read(struct gpu_info *ex_gpu, struct gpu_info *im_gpu) > +{ > + struct igt_collection *ex_regs, *im_regs; > + int ex_reg, im_reg; > + char *ex_name, *im_name; > + const char *path; > + > + for_each_variation_r(ex_regs, 1, ex_gpu->set) { > + ex_reg = igt_collection_get_value(ex_regs, 0); > + ex_name = region_name(ex_gpu->fd, ex_reg); > + > + for_each_variation_r(im_regs, 1, im_gpu->set) { > + im_reg = igt_collection_get_value(im_regs, 0); > + im_name = region_name(im_gpu->fd, im_reg); > + > + path = p2p_path(ex_reg, ex_gpu, im_gpu); > + igt_dynamic_f("read-gpuA-%s-gpuB-%s%s", ex_name, > + im_name, path) > + test_read(ex_gpu, im_gpu, ex_reg, im_reg); > + > + free(im_name); > + } > + free(ex_name); > + } > +} > + > +/** > + * gpu_write - Set up a write from the importing GPU to the exporting GPU > + * @ex_gpu: GPU that is exporting a buffer for read > + * @im_gpu: GPU that is importing and reading the buffer > + */ > +static void gpu_write(struct gpu_info *ex_gpu, struct gpu_info *im_gpu) > +{ > + struct igt_collection *ex_regs, *im_regs; > + int ex_reg, im_reg; > + char *ex_name, *im_name; > + const char *path; > + > + for_each_variation_r(ex_regs, 1, ex_gpu->set) { > + ex_reg = igt_collection_get_value(ex_regs, 0); > + ex_name = region_name(ex_gpu->fd, ex_reg); > + > + for_each_variation_r(im_regs, 1, im_gpu->set) { > + im_reg = igt_collection_get_value(im_regs, 0); > + im_name = region_name(im_gpu->fd, im_reg); > + > + path = p2p_path(ex_reg, ex_gpu, im_gpu); > + igt_dynamic_f("write-gpuA-%s-gpuB-%s%s", ex_name, > + im_name, path) > + test_write(ex_gpu, im_gpu, ex_reg, im_reg); > + > + free(im_name); > + } > + free(ex_name); > + } > +} > + > +#define DEFAULT_SIZE 0 > + > +igt_main_args("", NULL, NULL, NULL, NULL) > +{ > + struct gpu_info gpus[2]; > + int gpu_cnt; > + > + igt_fixture { > + gpu_cnt = get_device_info(gpus, ARRAY_SIZE(gpus)); > + igt_skip_on(gpu_cnt < 2); > + } > + > + igt_describe("dmabuf gpu-gpu read"); > + igt_subtest_with_dynamic_f("read") > + gpu_read(&gpus[0], &gpus[1]); > + > + igt_describe("dmabuf gpu-gpu write"); > + igt_subtest_with_dynamic_f("write") > + gpu_write(&gpus[0], &gpus[1]); > + > + igt_fixture { > + int cnt; > + > + for (cnt = 0; cnt < gpu_cnt; cnt++) > + drm_close_driver(gpus[cnt].fd); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index facf60ccf..514f8ac85 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -302,6 +302,7 @@ intel_xe_progs = [ > 'xe_module_load', > 'xe_noexec_ping_pong', > 'xe_pat', > + 'xe_peer2peer', > 'xe_pm', > 'xe_pm_residency', > 'xe_prime_self_import', > -- > 2.38.1 > ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-12-04 14:06 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-11-30 21:40 [igt-dev] [PATCH i-g-t v4] tests/intel: Add Xe peer2peer test David Kershner 2023-12-01 0:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/intel: Add Xe peer2peer test (rev4) Patchwork 2023-12-01 2:16 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-12-02 9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-04 14:06 ` [igt-dev] [PATCH i-g-t v4] tests/intel: Add Xe peer2peer test Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox