* [PATCH i-g-t v4] tests/kms_prime: Add XE support
@ 2024-01-29 5:07 Nidhi Gupta
2024-01-29 5:22 ` ✓ CI.xeBAT: success for tests/kms_prime: Add XE support (rev4) Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Nidhi Gupta @ 2024-01-29 5:07 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta
From: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Add XE driver support for kms tests.
V2: - Use rendercopy method for both i915 & xe
- Minor cleanup
V3: - New patch for cleanup & rendercopy
V4: - Fallback to blitter
V5: - Rebase
v7: - Rebase and patch cleanup
v8: - D3hot subtest is not required for xe
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
tests/kms_prime.c | 187 +++++++++++++++++++++++++++++++++++++---------
1 file changed, 153 insertions(+), 34 deletions(-)
diff --git a/tests/kms_prime.c b/tests/kms_prime.c
index 135c75168..687633048 100644
--- a/tests/kms_prime.c
+++ b/tests/kms_prime.c
@@ -36,10 +36,16 @@
#include "igt_debugfs.h"
#include "igt_sysfs.h"
#include <fcntl.h>
+#include <limits.h>
#include <sys/ioctl.h>
#include <sys/poll.h>
#include <time.h>
+#include "lib/intel_blt.h"
+#include "lib/intel_mocs.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+
/**
* SUBTEST: D3hot
@@ -120,10 +126,14 @@ static igt_output_t *setup_display(int importer_fd, igt_display_t *display,
igt_display_reset(display);
igt_output_set_pipe(output, *pipe);
- if (intel_pipe_output_combo_valid(display)) {
- found = true;
- break;
+ if ((is_i915_device(importer_fd) && gem_has_lmem(importer_fd)) ||
+ (is_xe_device(importer_fd) && xe_has_vram(importer_fd))) {
+ if (!intel_pipe_output_combo_valid(display))
+ continue;
}
+
+ found = true;
+ break;
}
igt_require_f(found, "No valid connector/pipe found\n");
@@ -131,6 +141,25 @@ static igt_output_t *setup_display(int importer_fd, igt_display_t *display,
return output;
}
+static igt_output_t *setup_hybrid_display(int importer_fd, igt_display_t *display,
+ enum pipe *pipe)
+{
+ igt_output_t *output;
+ bool found = false;
+
+ for_each_pipe_with_valid_output(display, *pipe, output) {
+ igt_display_reset(display);
+
+ igt_output_set_pipe(output, *pipe);
+
+ found = true;
+ break; /*Validation on single pipe is enough*/
+ }
+
+ igt_require_f(found, "No valid connector/pipe found\n");
+
+ return output;
+}
static void prepare_scratch(int exporter_fd, struct dumb_bo *scratch,
drmModeModeInfo *mode, uint32_t color)
{
@@ -140,7 +169,29 @@ static void prepare_scratch(int exporter_fd, struct dumb_bo *scratch,
scratch->height = mode->vdisplay;
scratch->bpp = 32;
- if (!is_i915_device(exporter_fd)) {
+ if (is_intel_device(exporter_fd)) {
+ igt_calc_fb_size(exporter_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, &scratch->size, &scratch->pitch);
+
+ if (is_i915_device(exporter_fd)) {
+ if (gem_has_lmem(exporter_fd))
+ scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size,
+ REGION_LMEM(0), REGION_SMEM);
+ else
+ scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size,
+ REGION_SMEM);
+
+ ptr = gem_mmap__device_coherent(exporter_fd, scratch->handle, 0,
+ scratch->size, PROT_WRITE | PROT_READ);
+ } else {
+ scratch->handle = xe_bo_create(exporter_fd, 0,
+ ALIGN(scratch->size, xe_get_default_alignment(exporter_fd)),
+ vram_if_possible(exporter_fd, 0), 0);
+
+ ptr = xe_bo_mmap_ext(exporter_fd, scratch->handle,
+ scratch->size, PROT_READ | PROT_WRITE);
+ }
+ } else {
scratch->handle = kmstest_dumb_create(exporter_fd,
ALIGN(scratch->width, 256),
scratch->height, scratch->bpp,
@@ -148,18 +199,6 @@ static void prepare_scratch(int exporter_fd, struct dumb_bo *scratch,
ptr = kmstest_dumb_map_buffer(exporter_fd, scratch->handle,
scratch->size, PROT_WRITE);
- } else {
- igt_calc_fb_size(exporter_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR, &scratch->size, &scratch->pitch);
- if (gem_has_lmem(exporter_fd))
- scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size,
- REGION_LMEM(0), REGION_SMEM);
- else
- scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size,
- REGION_SMEM);
-
- ptr = gem_mmap__device_coherent(exporter_fd, scratch->handle, 0, scratch->size,
- PROT_WRITE | PROT_READ);
}
for (size_t idx = 0; idx < scratch->size / sizeof(*ptr); ++idx)
@@ -178,23 +217,52 @@ static void prepare_fb(int importer_fd, struct dumb_bo *scratch, struct igt_fb *
color_encoding, color_range);
}
+static struct blt_copy_object *blt_fb_init(const struct igt_fb *fb,
+ uint32_t memregion, uint32_t pitch)
+{
+ uint32_t name, handle;
+ struct blt_copy_object *blt;
+
+ blt = malloc(sizeof(*blt));
+ igt_assert(blt);
+
+ name = gem_flink(fb->fd, fb->gem_handle);
+ handle = gem_open(fb->fd, name);
+
+ blt_set_object(blt, handle, fb->size, memregion,
+ intel_get_uc_mocs_index(fb->fd),
+ 0, 0, 0, 0);
+
+ blt_set_geom(blt, pitch, 0, 0, fb->width, fb->height, 0, 0);
+
+ blt->plane_offset = 0;
+
+ blt->ptr = xe_bo_mmap_ext(fb->fd, handle, fb->size,
+ PROT_READ | PROT_WRITE);
+ return blt;
+}
+
static void import_fb(int importer_fd, struct igt_fb *fb,
int dmabuf_fd, uint32_t pitch)
{
uint32_t offsets[4] = {}, pitches[4] = {}, handles[4] = {}, temp_buf_handle;
int ret;
+ struct igt_fb dst_fb;
- if (is_i915_device(importer_fd)) {
- if (gem_has_lmem(importer_fd)) {
- uint64_t ahnd = get_reloc_ahnd(importer_fd, 0);
- uint64_t fb_size = 0;
+ if ((is_i915_device(importer_fd) && gem_has_lmem(importer_fd)) ||
+ (is_xe_device(importer_fd) && xe_has_vram(importer_fd))) {
+ uint64_t fb_size = 0;
+ uint64_t ahnd = 0;
- igt_info("Importer is dGPU\n");
- temp_buf_handle = prime_fd_to_handle(importer_fd, dmabuf_fd);
- igt_assert(temp_buf_handle > 0);
- fb->gem_handle = igt_create_bo_with_dimensions(importer_fd, fb->width, fb->height,
- fb->drm_format, fb->modifier, pitch, &fb_size, NULL, NULL);
- igt_assert(fb->gem_handle > 0);
+ igt_info("Importer is dGPU\n");
+ temp_buf_handle = prime_fd_to_handle(importer_fd, dmabuf_fd);
+ igt_assert(temp_buf_handle > 0);
+ fb->gem_handle = igt_create_bo_with_dimensions(importer_fd, fb->width, fb->height,
+ fb->drm_format, fb->modifier, pitch, &fb_size, NULL, NULL);
+ igt_assert(fb->gem_handle > 0);
+
+ if (is_i915_device(importer_fd)) {
+ ahnd = get_reloc_ahnd(importer_fd, 0);
igt_blitter_src_copy(importer_fd, ahnd, 0, NULL, temp_buf_handle,
0, pitch, fb->modifier, 0, 0, fb_size, fb->width,
@@ -205,7 +273,62 @@ static void import_fb(int importer_fd, struct igt_fb *fb,
gem_close(importer_fd, temp_buf_handle);
put_ahnd(ahnd);
} else {
- fb->gem_handle = prime_fd_to_handle(importer_fd, dmabuf_fd);
+ uint32_t xe_bb;
+ uint64_t bb_size = 4096;
+ struct blt_copy_data blt = {};
+ struct blt_copy_object *src, *dst;
+ struct blt_block_copy_data_ext ext = {};
+ uint32_t mem_region;
+ intel_ctx_t *xe_ctx;
+ uint32_t vm, xe_exec;
+
+ struct drm_xe_engine_class_instance inst = {
+ .engine_class = DRM_XE_ENGINE_CLASS_COPY,
+ };
+ vm = xe_vm_create(importer_fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
+ xe_exec = xe_exec_queue_create(importer_fd, vm, &inst, 0);
+ xe_ctx = intel_ctx_xe(importer_fd, vm, xe_exec, 0, 0, 0);
+ mem_region = vram_if_possible(importer_fd, 0);
+
+ ahnd = intel_allocator_open_full(importer_fd, xe_ctx->vm, 0, 0,
+ INTEL_ALLOCATOR_SIMPLE,
+ ALLOC_STRATEGY_LOW_TO_HIGH, 0);
+
+ bb_size = ALIGN(bb_size + xe_cs_prefetch_size(importer_fd),
+ xe_get_default_alignment(importer_fd));
+ xe_bb = xe_bo_create(importer_fd, 0, bb_size, mem_region, 0);
+
+
+
+ igt_init_fb(&dst_fb, importer_fd, fb->width, fb->height,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE);
+ dst_fb.gem_handle = temp_buf_handle;
+
+ src = blt_fb_init(fb, mem_region, pitch);
+ dst = blt_fb_init(&dst_fb, mem_region, pitch);
+
+ blt_copy_init(importer_fd, &blt);
+ blt.color_depth = 32;
+ blt_set_copy_object(&blt.src, src);
+ blt_set_copy_object(&blt.dst, dst);
+
+ blt_set_object_ext(&ext.src, 0, fb->width, fb->height,
+ SURFACE_TYPE_2D);
+ blt_set_object_ext(&ext.dst, 0, fb->width, fb->height,
+ SURFACE_TYPE_2D);
+
+ blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region);
+
+ blt_block_copy(importer_fd, xe_ctx, NULL, ahnd, &blt, &ext);
+
+ blt_destroy_object(importer_fd, dst);
+
+ put_ahnd(ahnd);
+ gem_close(importer_fd, xe_bb);
+ xe_exec_queue_destroy(importer_fd, xe_exec);
+ xe_vm_destroy(importer_fd, vm);
+ free(xe_ctx);
}
} else {
fb->gem_handle = prime_fd_to_handle(importer_fd, dmabuf_fd);
@@ -332,7 +455,7 @@ static void test_basic_modeset(int drm_fd)
igt_device_set_master(drm_fd);
igt_display_require(&display, drm_fd);
- output = setup_display(drm_fd, &display, &pipe);
+ output = setup_hybrid_display(drm_fd, &display, &pipe);
mode = igt_output_get_mode(output);
igt_assert(mode);
@@ -470,6 +593,8 @@ igt_main
igt_require(second_fd_vgem >= 0);
if (is_i915_device(first_fd))
igt_require(!gem_has_lmem(first_fd));
+ if (is_xe_device(first_fd))
+ igt_require(!xe_has_vram(first_fd));
}
igt_describe("Make a dumb color buffer, export to another device and"
@@ -480,11 +605,5 @@ igt_main
igt_dynamic("second-to-first")
test_crc(second_fd_vgem, first_fd);
}
-
- igt_fixture
- drm_close_driver(second_fd_vgem);
}
-
- igt_fixture
- drm_close_driver(first_fd);
}
--
2.39.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ CI.xeBAT: success for tests/kms_prime: Add XE support (rev4) 2024-01-29 5:07 [PATCH i-g-t v4] tests/kms_prime: Add XE support Nidhi Gupta @ 2024-01-29 5:22 ` Patchwork 2024-01-29 5:24 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-01-29 5:22 UTC (permalink / raw) To: Nidhi Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 856 bytes --] == Series Details == Series: tests/kms_prime: Add XE support (rev4) URL : https://patchwork.freedesktop.org/series/128045/ State : success == Summary == CI Bug Log - changes from XEIGT_7694_BAT -> XEIGTPW_10596_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7694 -> IGTPW_10596 IGTPW_10596: 10596 IGT_7694: 814cd9883b94be1c61d830b2c1279dc2265476bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-685-38a58d4231067e1b548c12ee521b73ffc0ebb73a: 38a58d4231067e1b548c12ee521b73ffc0ebb73a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10596/index.html [-- Attachment #2: Type: text/html, Size: 1401 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Fi.CI.BAT: success for tests/kms_prime: Add XE support (rev4) 2024-01-29 5:07 [PATCH i-g-t v4] tests/kms_prime: Add XE support Nidhi Gupta 2024-01-29 5:22 ` ✓ CI.xeBAT: success for tests/kms_prime: Add XE support (rev4) Patchwork @ 2024-01-29 5:24 ` Patchwork 2024-01-29 6:47 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-01-29 10:22 ` [PATCH i-g-t v4] tests/kms_prime: Add XE support Matthew Auld 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-01-29 5:24 UTC (permalink / raw) To: Nidhi Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7189 bytes --] == Series Details == Series: tests/kms_prime: Add XE support (rev4) URL : https://patchwork.freedesktop.org/series/128045/ State : success == Summary == CI Bug Log - changes from CI_DRM_14187 -> IGTPW_10596 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/index.html Participating hosts (35 -> 31) ------------------------------ Missing (4): bat-rpls-2 bat-kbl-2 fi-snb-2520m fi-pnv-d510 Known issues ------------ Here are the changes found in IGTPW_10596 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_hangman@error-state-basic: - bat-mtlp-6: [PASS][1] -> [ABORT][2] ([i915#9414]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/bat-mtlp-6/igt@i915_hangman@error-state-basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/bat-mtlp-6/igt@i915_hangman@error-state-basic.html * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][3] -> [ABORT][4] ([i915#7911]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/fi-bsw-nick/igt@i915_selftest@live@execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/fi-bsw-nick/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@sanitycheck: - fi-kbl-7567u: [PASS][5] -> [DMESG-WARN][6] ([i915#9730]) +36 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html * igt@kms_addfb_basic@invalid-set-prop: - fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#8585]) +41 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/fi-kbl-7567u/igt@kms_addfb_basic@invalid-set-prop.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/fi-kbl-7567u/igt@kms_addfb_basic@invalid-set-prop.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [PASS][9] -> [DMESG-WARN][10] ([i915#180] / [i915#8585]) +45 other tests dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - fi-bsw-nick: [DMESG-FAIL][11] -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_lrc: - bat-adlm-1: [INCOMPLETE][13] ([i915#9413]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/bat-adlm-1/igt@i915_selftest@live@gt_lrc.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/bat-adlm-1/igt@i915_selftest@live@gt_lrc.html [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585 [i915#9413]: https://gitlab.freedesktop.org/drm/intel/issues/9413 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9730]: https://gitlab.freedesktop.org/drm/intel/issues/9730 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7694 -> IGTPW_10596 CI-20190529: 20190529 CI_DRM_14187: 0f1b42b9d395bd4097b2846230a13869dc638216 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10596: 10596 IGT_7694: 814cd9883b94be1c61d830b2c1279dc2265476bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@gem_mmap@basic-multigpu -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race -igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind -igt@xe_exec_basic@multigpu-no-exec-basic -igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind -igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap -igt@xe_exec_basic@multigpu-no-exec-bindexecqueue -igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind -igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr -igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate -igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race -igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind -igt@xe_exec_basic@multigpu-no-exec-null -igt@xe_exec_basic@multigpu-no-exec-null-defer-bind -igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap -igt@xe_exec_basic@multigpu-no-exec-null-rebind -igt@xe_exec_basic@multigpu-no-exec-rebind -igt@xe_exec_basic@multigpu-no-exec-userptr -igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate -igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race -igt@xe_exec_basic@multigpu-no-exec-userptr-rebind -igt@xe_exec_basic@multigpu-once-basic -igt@xe_exec_basic@multigpu-once-basic-defer-bind -igt@xe_exec_basic@multigpu-once-basic-defer-mmap -igt@xe_exec_basic@multigpu-once-bindexecqueue -igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind -igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr -igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate -igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race -igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind -igt@xe_exec_basic@multigpu-once-null -igt@xe_exec_basic@multigpu-once-null-defer-bind -igt@xe_exec_basic@multigpu-once-null-defer-mmap -igt@xe_exec_basic@multigpu-once-null-rebind -igt@xe_exec_basic@multigpu-once-rebind -igt@xe_exec_basic@multigpu-once-userptr -igt@xe_exec_basic@multigpu-once-userptr-invalidate -igt@xe_exec_basic@multigpu-once-userptr-invalidate-race -igt@xe_exec_basic@multigpu-once-userptr-rebind == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/index.html [-- Attachment #2: Type: text/html, Size: 8344 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/kms_prime: Add XE support (rev4) 2024-01-29 5:07 [PATCH i-g-t v4] tests/kms_prime: Add XE support Nidhi Gupta 2024-01-29 5:22 ` ✓ CI.xeBAT: success for tests/kms_prime: Add XE support (rev4) Patchwork 2024-01-29 5:24 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-01-29 6:47 ` Patchwork 2024-01-29 10:22 ` [PATCH i-g-t v4] tests/kms_prime: Add XE support Matthew Auld 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-01-29 6:47 UTC (permalink / raw) To: Nidhi Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100257 bytes --] == Series Details == Series: tests/kms_prime: Add XE support (rev4) URL : https://patchwork.freedesktop.org/series/128045/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14187_full -> IGTPW_10596_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10596_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10596_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_10596/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10596_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@flip-vs-modeset-vs-hang@b-hdmi-a2: - shard-rkl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-1/igt@kms_flip@flip-vs-modeset-vs-hang@b-hdmi-a2.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-3/igt@kms_flip@flip-vs-modeset-vs-hang@b-hdmi-a2.html Known issues ------------ Here are the changes found in IGTPW_10596_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-18/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#7701]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][6] ([i915#7701]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@device_reset@cold-reset-bound.html * igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit: - shard-glk: NOTRUN -> [DMESG-WARN][7] ([i915#10140]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk7/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit.html - shard-dg2: NOTRUN -> [DMESG-WARN][8] ([i915#10140]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit.html - shard-dg1: NOTRUN -> [DMESG-WARN][9] ([i915#10140]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +17 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-idle-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +31 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@drm_fdinfo@busy-idle-check-all@ccs3.html * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#7742]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@drm_fdinfo@idle@rcs0.html * igt@gem_bad_reloc@negative-reloc: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3281]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@gem_bad_reloc@negative-reloc.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#3936]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-12/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-inplace: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-3/igt@gem_ccs@block-multicopy-inplace.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_10596/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@gem_create@create-ext-set-pat.html * igt@gem_create@hog-create@smem0: - shard-mtlp: NOTRUN -> [FAIL][21] ([i915#8758]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@gem_create@hog-create@smem0.html * igt@gem_ctx_persistence@heartbeat-close: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#5882]) +9 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-12/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][28] ([i915#10030] / [i915#7975] / [i915#8213]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-5/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_capture@many-4k-incremental: - shard-dg2: NOTRUN -> [FAIL][30] ([i915#9606]) +1 other test fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-6/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-dg1: NOTRUN -> [FAIL][31] ([i915#9606]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-16/igt@gem_exec_capture@many-4k-zero.html - shard-glk: NOTRUN -> [FAIL][32] ([i915#9606]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk8/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][33] ([i915#2846]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [PASS][34] -> [FAIL][35] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-rkl: [PASS][36] -> [FAIL][37] ([i915#2842]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-3/igt@gem_exec_fair@basic-none-solo@rcs0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473] / [i915#4771]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][39] -> [FAIL][40] ([i915#2842]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-5/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][42] ([i915#2842]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +8 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#7697]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-3/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][47] ([fdo#112283]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +14 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#7276]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][53] -> [INCOMPLETE][54] ([i915#9275]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4860]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@massive: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#284]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][63] ([i915#284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@gem_media_vme.html * igt@gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-13/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) +8 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@gem_mmap_wc@bad-size.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-13/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +10 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-5/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [INCOMPLETE][70] ([i915#10042] / [i915#10137]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk8/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-18/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#4270]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4885]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@gem_softpin@evict-snoop.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_10596/shard-rkl-5/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_softpin@noreloc-s3: - shard-tglu: [PASS][82] -> [INCOMPLETE][83] ([i915#8797]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-4/igt@gem_softpin@noreloc-s3.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-7/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3282]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-3/igt@gem_tiled_partial_pwrite_pread@reads.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4077]) +14 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297]) +6 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-19/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_tiledx_blits: - shard-rkl: NOTRUN -> [SKIP][91] ([fdo#109289]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-4/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][92] ([fdo#109289]) +8 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@gen7_exec_parse@bitmasks.html - shard-mtlp: NOTRUN -> [SKIP][93] ([fdo#109289]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@gen7_exec_parse@bitmasks.html * igt@gen7_exec_parse@load-register-reg: - shard-dg1: NOTRUN -> [SKIP][94] ([fdo#109289]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-13/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-far: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-18/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#2856]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-3/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#6227]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@i915_module_load@load.html - shard-dg2: NOTRUN -> [SKIP][100] ([i915#6227]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-6/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][101] -> [INCOMPLETE][102] ([i915#10137] / [i915#9820] / [i915#9849]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: NOTRUN -> [INCOMPLETE][103] ([i915#10137] / [i915#9820] / [i915#9849]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][104] -> [INCOMPLETE][105] ([i915#10137] / [i915#9200]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][106] -> [ABORT][107] ([i915#10131] / [i915#9820]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#6412]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#8399]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#109293]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-dg2: NOTRUN -> [SKIP][111] ([fdo#109293] / [fdo#109506]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#8925]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][113] ([i915#8346]) +1 other test fail [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@i915_pm_rps@waitboost.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][114] ([i915#9311]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@i915_selftest@mock@memory_region.html - shard-mtlp: NOTRUN -> [DMESG-WARN][115] ([i915#9311]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [PASS][116] -> [INCOMPLETE][117] ([i915#10044]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-snb7/igt@i915_suspend@basic-s3-without-i915.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@forcewake: - shard-snb: [PASS][118] -> [DMESG-WARN][119] ([i915#10007]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-snb6/igt@i915_suspend@forcewake.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb2/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#4212]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4212]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#8709]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#8709]) +11 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#6228]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6228]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#9531]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][127] ([fdo#111614]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-mtlp: [PASS][128] -> [FAIL][129] ([i915#5138]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][130] ([fdo#111614]) +6 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111615] / [i915#5286]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][133] ([i915#5138]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5286]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][135] ([fdo#111614]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-2/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][136] ([fdo#111614] / [i915#3638]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][137] ([fdo#111615]) +9 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6187]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [PASS][139] -> [FAIL][140] ([i915#3743]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#5190]) +18 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][142] ([fdo#110723]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5190]) +7 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-12/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][145] ([fdo#111615]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][146] ([fdo#111615]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@basic: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#2705]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-2/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#2705]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#5354] / [i915#6095]) +12 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-3/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#5354] / [i915#6095]) +20 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-13/igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#5354]) +122 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#5354] / [i915#6095]) +31 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@pipe-c-bad-pixel-format-y-tiled-gen12-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#5354]) +18 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@kms_ccs@pipe-c-bad-pixel-format-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#5354] / [i915#6095]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-7/igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][155] ([fdo#109271]) +305 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk9/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#7828]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][157] ([fdo#111827]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg1: NOTRUN -> [SKIP][158] ([fdo#111827]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@degamma: - shard-mtlp: NOTRUN -> [SKIP][159] ([fdo#111827]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#7828]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#7828]) +9 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-5/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#7828]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-4/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#7828]) +15 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#7118]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#3299]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#7118]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#8814]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8814]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3555]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#3359]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-15/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555]) +9 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3359]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][174] ([fdo#111825]) +5 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-snb: [PASS][176] -> [SKIP][177] ([fdo#109271]) +10 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][178] ([fdo#109274] / [i915#5354]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/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][179] ([i915#4103] / [i915#4213]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#4213]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#9833]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#9833]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][183] ([fdo#110189] / [i915#9227]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3804]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#1257]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8812]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3840] / [i915#9688]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3840] / [i915#9053]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#3469]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-7/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3469]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#1839]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-5/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#9337]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#658]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-5/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][196] ([fdo#109274] / [fdo#111767]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][197] ([fdo#109274] / [fdo#111767] / [i915#3637]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][198] ([fdo#111767] / [i915#3637]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3637]) +4 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][200] ([fdo#109274] / [i915#3637]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][201] ([fdo#109274]) +10 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#8381]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#2672]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#2672]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#2587] / [i915#2672]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8810]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#2672]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#5274]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8708]) +12 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][212] ([fdo#111825] / [i915#1825]) +18 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][213] ([fdo#111767] / [i915#1825]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [PASS][214] -> [SKIP][215] ([fdo#109271] / [fdo#111767]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#1825]) +25 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#8708]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#10055]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3458]) +33 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][220] ([fdo#111825]) +15 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][221] ([fdo#111767] / [i915#5354]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#3458]) +6 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#5439]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][224] ([fdo#110189]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#8708]) +26 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][226] ([fdo#109280] / [fdo#111767]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][227] ([fdo#111767] / [fdo#111825]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][228] ([fdo#109280]) +4 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#3023]) +15 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#6118]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8228]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8228]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-4/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8228]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-13/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#4816]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][235] ([i915#1839]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#3555]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-7/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8821]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#9809]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][239] ([i915#8292]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][240] ([i915#8292]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#9423]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#9423]) +15 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#9423]) +5 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#5235]) +7 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#5235]) +11 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#5235]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#5235] / [i915#9423]) +19 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#5235]) +7 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#9812]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-7/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#9685]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#9293]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#10139]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#9685]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#9519]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-16/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][255] -> [SKIP][256] ([i915#9519]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-rkl: [PASS][257] -> [SKIP][258] ([i915#9519]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg2: NOTRUN -> [FAIL][259] ([i915#8717]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#9519]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#9519]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#6524] / [i915#6805]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#9683]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][264] ([fdo#111068] / [i915#9683]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#9683]) +5 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@kms_psr2_su@page_flip-p010.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#4348]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#5289]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-12/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#4235]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-2/igt@kms_rotation_crc@sprite-rotation-270.html - shard-dg2: NOTRUN -> [SKIP][269] ([i915#4235]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-glk: NOTRUN -> [FAIL][270] ([i915#10136]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html - shard-mtlp: NOTRUN -> [DMESG-FAIL][271] ([i915#10143]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html - shard-dg2: NOTRUN -> [DMESG-FAIL][272] ([i915#10143]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-dg2: NOTRUN -> [DMESG-WARN][273] ([i915#10143]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html - shard-dg1: [PASS][274] -> [DMESG-WARN][275] ([i915#10143]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html - shard-mtlp: NOTRUN -> [DMESG-WARN][276] ([i915#10143]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab: - shard-glk: NOTRUN -> [DMESG-WARN][277] ([i915#10143]) +1 other test dmesg-warn [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8809]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-3/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#8623]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#8623]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][281] ([fdo#109309]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@kms_tv_load_detect@load-detect.html - shard-dg2: NOTRUN -> [SKIP][282] ([fdo#109309]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][283] ([i915#9196]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][284] ([fdo#109271]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb7/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-b-vga-1.html * igt@kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#9906]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#2437]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-4/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#2437]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-3/igt@kms_writeback@writeback-fb-id.html - shard-glk: NOTRUN -> [SKIP][288] ([fdo#109271] / [i915#2437]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk5/igt@kms_writeback@writeback-fb-id.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#7387]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#2434]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: NOTRUN -> [FAIL][291] ([i915#4349]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@perf_pmu@busy-double-start@ccs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][292] -> [FAIL][293] ([i915#4349]) +3 other tests fail [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#8850]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#8516]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-5/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][296] ([i915#9351]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_udl: - shard-mtlp: NOTRUN -> [SKIP][297] ([fdo#109291]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-1/igt@prime_udl.html - shard-dg2: NOTRUN -> [SKIP][298] ([fdo#109291]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@prime_udl.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][299] ([fdo#109295] / [i915#3291] / [i915#3708]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#3708] / [i915#4077]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#3291] / [i915#3708]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-read-hang: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#3708]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-12/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][303] ([fdo#109295] / [i915#3708]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#9917]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-12/igt@sriov_basic@bind-unbind-vf.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-mtlp: NOTRUN -> [FAIL][305] ([i915#9779]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-6/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#4818]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-rkl: NOTRUN -> [SKIP][307] ([fdo#109315]) +6 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#2575]) +6 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-7/igt@v3d/v3d_perfmon@create-perfmon-exceed.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-tglu: NOTRUN -> [SKIP][309] ([fdo#109315] / [i915#2575]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-6/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_cl@bad-pad: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#2575]) +4 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-18/igt@v3d/v3d_submit_cl@bad-pad.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#2575]) +16 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-5/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#7711]) +6 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg1: NOTRUN -> [SKIP][313] ([i915#7711]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_tiling@set-get: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#7711]) +11 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-3/igt@vc4/vc4_tiling@set-get.html - shard-rkl: NOTRUN -> [SKIP][315] ([i915#7711]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@vc4/vc4_tiling@set-get.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#2575]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-7/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][317] ([i915#7742]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][319] ([i915#6268]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][321] ([i915#5784]) -> [PASS][322] +1 other test pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg1-17/igt@gem_eio@reset-stress.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [FAIL][323] ([i915#2842]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][325] ([i915#2842]) -> [PASS][326] +1 other test pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-4/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_whisper@basic-sync-all: - shard-dg1: [DMESG-WARN][327] ([i915#4423]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg1-19/igt@gem_exec_whisper@basic-sync-all.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-15/igt@gem_exec_whisper@basic-sync-all.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][329] ([i915#5493]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: [INCOMPLETE][331] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][333] ([i915#9820]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][335] ([i915#3591]) -> [PASS][336] +1 other test pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [FAIL][337] ([i915#3743]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-snb: [SKIP][339] ([fdo#109271] / [fdo#111767]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-tglu: [DMESG-WARN][341] ([i915#1982]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-2/igt@kms_cursor_legacy@torture-move@pipe-a.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-9/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - shard-rkl: [INCOMPLETE][343] -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-snb: [SKIP][345] ([fdo#109271]) -> [PASS][346] +9 other tests pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][347] ([i915#4281]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][349] ([i915#9519]) -> [PASS][350] +1 other test pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-10/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][351] ([i915#9519]) -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab: - shard-dg1: [DMESG-WARN][353] ([i915#10143]) -> [PASS][354] +1 other test pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888: - shard-tglu: [DMESG-WARN][355] ([i915#10143]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3: - shard-dg2: [FAIL][357] ([i915#9196]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg2-1/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg2-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3.html #### Warnings #### * igt@gem_pread@exhaustion: - shard-tglu: [INCOMPLETE][359] ([i915#10042] / [i915#10137]) -> [WARN][360] ([i915#2658]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-10/igt@gem_pread@exhaustion.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-7/igt@gem_pread@exhaustion.html - shard-glk: [INCOMPLETE][361] ([i915#10042] / [i915#10137]) -> [WARN][362] ([i915#2658]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-glk7/igt@gem_pread@exhaustion.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-glk5/igt@gem_pread@exhaustion.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-tglu: [WARN][363] ([i915#2681]) -> [FAIL][364] ([i915#3591]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][365] ([i915#9433]) -> [SKIP][366] ([i915#9424]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg1-12/igt@kms_content_protection@mei-interface.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-14/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-snb: [INCOMPLETE][367] ([i915#8816]) -> [SKIP][368] ([fdo#109271]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-snb7/igt@kms_content_protection@srm.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb5/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-snb: [SKIP][369] ([fdo#109271]) -> [INCOMPLETE][370] ([i915#8816]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-snb5/igt@kms_content_protection@type1.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb7/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][371] ([fdo#110189] / [i915#3955]) -> [SKIP][372] ([i915#3955]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-4/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][373] ([i915#3955]) -> [SKIP][374] ([fdo#110189] / [i915#3955]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [SKIP][375] ([fdo#109271]) -> [SKIP][376] ([fdo#109271] / [fdo#111767]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-snb: [SKIP][377] ([fdo#109271] / [fdo#111767]) -> [SKIP][378] ([fdo#109271]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][379] ([i915#4281]) -> [SKIP][380] ([i915#3361]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-dg1: [FAIL][381] ([i915#10136]) -> [DMESG-FAIL][382] ([i915#10143]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-dg1-17/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html - shard-tglu: [FAIL][383] ([i915#10136]) -> [DMESG-FAIL][384] ([i915#10143]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14187/shard-tglu-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/shard-tglu-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#10007]: https://gitlab.freedesktop.org/drm/intel/issues/10007 [i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042 [i915#10044]: https://gitlab.freedesktop.org/drm/intel/issues/10044 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139 [i915#10140]: https://gitlab.freedesktop.org/drm/intel/issues/10140 [i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [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#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [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#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#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#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#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10596/index.html [-- Attachment #2: Type: text/html, Size: 122946 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH i-g-t v4] tests/kms_prime: Add XE support 2024-01-29 5:07 [PATCH i-g-t v4] tests/kms_prime: Add XE support Nidhi Gupta ` (2 preceding siblings ...) 2024-01-29 6:47 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-01-29 10:22 ` Matthew Auld 3 siblings, 0 replies; 5+ messages in thread From: Matthew Auld @ 2024-01-29 10:22 UTC (permalink / raw) To: Nidhi Gupta, igt-dev On 29/01/2024 05:07, Nidhi Gupta wrote: > From: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > Add XE driver support for kms tests. > > V2: - Use rendercopy method for both i915 & xe > - Minor cleanup > V3: - New patch for cleanup & rendercopy > V4: - Fallback to blitter > V5: - Rebase > v7: - Rebase and patch cleanup > v8: - D3hot subtest is not required for xe > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com> > --- > tests/kms_prime.c | 187 +++++++++++++++++++++++++++++++++++++--------- > 1 file changed, 153 insertions(+), 34 deletions(-) > > diff --git a/tests/kms_prime.c b/tests/kms_prime.c > index 135c75168..687633048 100644 > --- a/tests/kms_prime.c > +++ b/tests/kms_prime.c > @@ -36,10 +36,16 @@ > #include "igt_debugfs.h" > #include "igt_sysfs.h" > #include <fcntl.h> > +#include <limits.h> > > #include <sys/ioctl.h> > #include <sys/poll.h> > #include <time.h> > +#include "lib/intel_blt.h" > +#include "lib/intel_mocs.h" > +#include "xe/xe_ioctl.h" > +#include "xe/xe_query.h" > + > > /** > * SUBTEST: D3hot > @@ -120,10 +126,14 @@ static igt_output_t *setup_display(int importer_fd, igt_display_t *display, > igt_display_reset(display); > > igt_output_set_pipe(output, *pipe); > - if (intel_pipe_output_combo_valid(display)) { > - found = true; > - break; > + if ((is_i915_device(importer_fd) && gem_has_lmem(importer_fd)) || > + (is_xe_device(importer_fd) && xe_has_vram(importer_fd))) { > + if (!intel_pipe_output_combo_valid(display)) > + continue; > } > + > + found = true; > + break; > } > > igt_require_f(found, "No valid connector/pipe found\n"); > @@ -131,6 +141,25 @@ static igt_output_t *setup_display(int importer_fd, igt_display_t *display, > return output; > } > > +static igt_output_t *setup_hybrid_display(int importer_fd, igt_display_t *display, > + enum pipe *pipe) > +{ > + igt_output_t *output; > + bool found = false; > + > + for_each_pipe_with_valid_output(display, *pipe, output) { > + igt_display_reset(display); > + > + igt_output_set_pipe(output, *pipe); > + > + found = true; > + break; /*Validation on single pipe is enough*/ > + } > + > + igt_require_f(found, "No valid connector/pipe found\n"); > + > + return output; > +} > static void prepare_scratch(int exporter_fd, struct dumb_bo *scratch, > drmModeModeInfo *mode, uint32_t color) > { > @@ -140,7 +169,29 @@ static void prepare_scratch(int exporter_fd, struct dumb_bo *scratch, > scratch->height = mode->vdisplay; > scratch->bpp = 32; > > - if (!is_i915_device(exporter_fd)) { > + if (is_intel_device(exporter_fd)) { > + igt_calc_fb_size(exporter_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, > + DRM_FORMAT_MOD_LINEAR, &scratch->size, &scratch->pitch); > + > + if (is_i915_device(exporter_fd)) { > + if (gem_has_lmem(exporter_fd)) > + scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size, > + REGION_LMEM(0), REGION_SMEM); > + else > + scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size, > + REGION_SMEM); > + > + ptr = gem_mmap__device_coherent(exporter_fd, scratch->handle, 0, > + scratch->size, PROT_WRITE | PROT_READ); > + } else { > + scratch->handle = xe_bo_create(exporter_fd, 0, > + ALIGN(scratch->size, xe_get_default_alignment(exporter_fd)), > + vram_if_possible(exporter_fd, 0), 0); Please also set DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM here. And anywhere else where you create VRAM and need CPU access. That way this also works on small-bar systems. > + > + ptr = xe_bo_mmap_ext(exporter_fd, scratch->handle, > + scratch->size, PROT_READ | PROT_WRITE); > + } > + } else { > scratch->handle = kmstest_dumb_create(exporter_fd, > ALIGN(scratch->width, 256), > scratch->height, scratch->bpp, > @@ -148,18 +199,6 @@ static void prepare_scratch(int exporter_fd, struct dumb_bo *scratch, > > ptr = kmstest_dumb_map_buffer(exporter_fd, scratch->handle, > scratch->size, PROT_WRITE); > - } else { > - igt_calc_fb_size(exporter_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, > - DRM_FORMAT_MOD_LINEAR, &scratch->size, &scratch->pitch); > - if (gem_has_lmem(exporter_fd)) > - scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size, > - REGION_LMEM(0), REGION_SMEM); > - else > - scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size, > - REGION_SMEM); > - > - ptr = gem_mmap__device_coherent(exporter_fd, scratch->handle, 0, scratch->size, > - PROT_WRITE | PROT_READ); > } > > for (size_t idx = 0; idx < scratch->size / sizeof(*ptr); ++idx) > @@ -178,23 +217,52 @@ static void prepare_fb(int importer_fd, struct dumb_bo *scratch, struct igt_fb * > color_encoding, color_range); > } > > +static struct blt_copy_object *blt_fb_init(const struct igt_fb *fb, > + uint32_t memregion, uint32_t pitch) > +{ > + uint32_t name, handle; > + struct blt_copy_object *blt; > + > + blt = malloc(sizeof(*blt)); > + igt_assert(blt); > + > + name = gem_flink(fb->fd, fb->gem_handle); > + handle = gem_open(fb->fd, name); > + > + blt_set_object(blt, handle, fb->size, memregion, > + intel_get_uc_mocs_index(fb->fd), > + 0, 0, 0, 0); > + > + blt_set_geom(blt, pitch, 0, 0, fb->width, fb->height, 0, 0); > + > + blt->plane_offset = 0; > + > + blt->ptr = xe_bo_mmap_ext(fb->fd, handle, fb->size, > + PROT_READ | PROT_WRITE); > + return blt; > +} > + > static void import_fb(int importer_fd, struct igt_fb *fb, > int dmabuf_fd, uint32_t pitch) > { > uint32_t offsets[4] = {}, pitches[4] = {}, handles[4] = {}, temp_buf_handle; > int ret; > + struct igt_fb dst_fb; > > - if (is_i915_device(importer_fd)) { > - if (gem_has_lmem(importer_fd)) { > - uint64_t ahnd = get_reloc_ahnd(importer_fd, 0); > - uint64_t fb_size = 0; > + if ((is_i915_device(importer_fd) && gem_has_lmem(importer_fd)) || > + (is_xe_device(importer_fd) && xe_has_vram(importer_fd))) { > + uint64_t fb_size = 0; > + uint64_t ahnd = 0; > > - igt_info("Importer is dGPU\n"); > - temp_buf_handle = prime_fd_to_handle(importer_fd, dmabuf_fd); > - igt_assert(temp_buf_handle > 0); > - fb->gem_handle = igt_create_bo_with_dimensions(importer_fd, fb->width, fb->height, > - fb->drm_format, fb->modifier, pitch, &fb_size, NULL, NULL); > - igt_assert(fb->gem_handle > 0); > + igt_info("Importer is dGPU\n"); > + temp_buf_handle = prime_fd_to_handle(importer_fd, dmabuf_fd); > + igt_assert(temp_buf_handle > 0); > + fb->gem_handle = igt_create_bo_with_dimensions(importer_fd, fb->width, fb->height, > + fb->drm_format, fb->modifier, pitch, &fb_size, NULL, NULL); > + igt_assert(fb->gem_handle > 0); > + > + if (is_i915_device(importer_fd)) { > + ahnd = get_reloc_ahnd(importer_fd, 0); > > igt_blitter_src_copy(importer_fd, ahnd, 0, NULL, temp_buf_handle, > 0, pitch, fb->modifier, 0, 0, fb_size, fb->width, > @@ -205,7 +273,62 @@ static void import_fb(int importer_fd, struct igt_fb *fb, > gem_close(importer_fd, temp_buf_handle); > put_ahnd(ahnd); > } else { > - fb->gem_handle = prime_fd_to_handle(importer_fd, dmabuf_fd); > + uint32_t xe_bb; > + uint64_t bb_size = 4096; > + struct blt_copy_data blt = {}; > + struct blt_copy_object *src, *dst; > + struct blt_block_copy_data_ext ext = {}; > + uint32_t mem_region; > + intel_ctx_t *xe_ctx; > + uint32_t vm, xe_exec; > + > + struct drm_xe_engine_class_instance inst = { > + .engine_class = DRM_XE_ENGINE_CLASS_COPY, > + }; > + vm = xe_vm_create(importer_fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0); > + xe_exec = xe_exec_queue_create(importer_fd, vm, &inst, 0); > + xe_ctx = intel_ctx_xe(importer_fd, vm, xe_exec, 0, 0, 0); > + mem_region = vram_if_possible(importer_fd, 0); > + > + ahnd = intel_allocator_open_full(importer_fd, xe_ctx->vm, 0, 0, > + INTEL_ALLOCATOR_SIMPLE, > + ALLOC_STRATEGY_LOW_TO_HIGH, 0); > + > + bb_size = ALIGN(bb_size + xe_cs_prefetch_size(importer_fd), > + xe_get_default_alignment(importer_fd)); You can now use xe_bb_size(importer_fd, bb_size) here. And anywhere else where you need a correctly sized batch buffer. > + xe_bb = xe_bo_create(importer_fd, 0, bb_size, mem_region, 0); > + > + > + > + igt_init_fb(&dst_fb, importer_fd, fb->width, fb->height, > + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, > + IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE); > + dst_fb.gem_handle = temp_buf_handle; > + > + src = blt_fb_init(fb, mem_region, pitch); > + dst = blt_fb_init(&dst_fb, mem_region, pitch); > + > + blt_copy_init(importer_fd, &blt); > + blt.color_depth = 32; > + blt_set_copy_object(&blt.src, src); > + blt_set_copy_object(&blt.dst, dst); > + > + blt_set_object_ext(&ext.src, 0, fb->width, fb->height, > + SURFACE_TYPE_2D); > + blt_set_object_ext(&ext.dst, 0, fb->width, fb->height, > + SURFACE_TYPE_2D); > + > + blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region); > + > + blt_block_copy(importer_fd, xe_ctx, NULL, ahnd, &blt, &ext); > + > + blt_destroy_object(importer_fd, dst); > + > + put_ahnd(ahnd); > + gem_close(importer_fd, xe_bb); > + xe_exec_queue_destroy(importer_fd, xe_exec); > + xe_vm_destroy(importer_fd, vm); > + free(xe_ctx); > } > } else { > fb->gem_handle = prime_fd_to_handle(importer_fd, dmabuf_fd); > @@ -332,7 +455,7 @@ static void test_basic_modeset(int drm_fd) > igt_device_set_master(drm_fd); > igt_display_require(&display, drm_fd); > > - output = setup_display(drm_fd, &display, &pipe); > + output = setup_hybrid_display(drm_fd, &display, &pipe); > mode = igt_output_get_mode(output); > igt_assert(mode); > > @@ -470,6 +593,8 @@ igt_main > igt_require(second_fd_vgem >= 0); > if (is_i915_device(first_fd)) > igt_require(!gem_has_lmem(first_fd)); > + if (is_xe_device(first_fd)) > + igt_require(!xe_has_vram(first_fd)); > } > > igt_describe("Make a dumb color buffer, export to another device and" > @@ -480,11 +605,5 @@ igt_main > igt_dynamic("second-to-first") > test_crc(second_fd_vgem, first_fd); > } > - > - igt_fixture > - drm_close_driver(second_fd_vgem); > } > - > - igt_fixture > - drm_close_driver(first_fd); > } ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-01-29 10:23 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-01-29 5:07 [PATCH i-g-t v4] tests/kms_prime: Add XE support Nidhi Gupta 2024-01-29 5:22 ` ✓ CI.xeBAT: success for tests/kms_prime: Add XE support (rev4) Patchwork 2024-01-29 5:24 ` ✓ Fi.CI.BAT: " Patchwork 2024-01-29 6:47 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-01-29 10:22 ` [PATCH i-g-t v4] tests/kms_prime: Add XE support Matthew Auld
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox