* [PATCH i-g-t] drm-uapi/xe: Remove unused flags
@ 2024-02-16 14:18 Francois Dugast
2024-02-16 15:19 ` ✓ Fi.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Francois Dugast @ 2024-02-16 14:18 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast
This aligns with kernel commit ("drm/xe/uapi: Remove unused flags"). As
a consequence, some tests which dependend on the removed flags are also
removed. Also, ensure that the removed flag values are no longer
accepted to prevent mismatch.
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
---
include/drm-uapi/xe_drm.h | 20 -----
tests/intel/xe_access_counter.c | 81 --------------------
tests/intel/xe_exec_fault_mode.c | 60 ++-------------
tests/intel/xe_exec_queue_property.c | 55 +++++++++++---
tests/intel/xe_exec_reset.c | 110 +++------------------------
tests/intel/xe_exec_threads.c | 13 +---
tests/intel/xe_vm.c | 69 +++++++++++++++++
tests/meson.build | 1 -
8 files changed, 132 insertions(+), 277 deletions(-)
delete mode 100644 tests/intel/xe_access_counter.c
diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
index bacdca787..7394aae92 100644
--- a/include/drm-uapi/xe_drm.h
+++ b/include/drm-uapi/xe_drm.h
@@ -831,11 +831,6 @@ struct drm_xe_vm_destroy {
* - %DRM_XE_VM_BIND_OP_PREFETCH
*
* and the @flags can be:
- * - %DRM_XE_VM_BIND_FLAG_READONLY
- * - %DRM_XE_VM_BIND_FLAG_ASYNC
- * - %DRM_XE_VM_BIND_FLAG_IMMEDIATE - Valid on a faulting VM only, do the
- * MAP operation immediately rather than deferring the MAP to the page
- * fault handler.
* - %DRM_XE_VM_BIND_FLAG_NULL - When the NULL flag is set, the page
* tables are setup with a special bit which indicates writes are
* dropped and all reads return zero. In the future, the NULL flags
@@ -928,8 +923,6 @@ struct drm_xe_vm_bind_op {
/** @op: Bind operation to perform */
__u32 op;
-#define DRM_XE_VM_BIND_FLAG_READONLY (1 << 0)
-#define DRM_XE_VM_BIND_FLAG_IMMEDIATE (1 << 1)
#define DRM_XE_VM_BIND_FLAG_NULL (1 << 2)
/** @flags: Bind flags */
__u32 flags;
@@ -1045,20 +1038,7 @@ struct drm_xe_exec_queue_create {
#define DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY 0
#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY 0
#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE 1
-#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT 2
#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PERSISTENCE 3
-#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT 4
-#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_TRIGGER 5
-#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_NOTIFY 6
-#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_GRANULARITY 7
-/* Monitor 128KB contiguous region with 4K sub-granularity */
-#define DRM_XE_ACC_GRANULARITY_128K 0
-/* Monitor 2MB contiguous region with 64KB sub-granularity */
-#define DRM_XE_ACC_GRANULARITY_2M 1
-/* Monitor 16MB contiguous region with 512KB sub-granularity */
-#define DRM_XE_ACC_GRANULARITY_16M 2
-/* Monitor 64MB contiguous region with 2M sub-granularity */
-#define DRM_XE_ACC_GRANULARITY_64M 3
/** @extensions: Pointer to the first extension struct, if any */
__u64 extensions;
diff --git a/tests/intel/xe_access_counter.c b/tests/intel/xe_access_counter.c
deleted file mode 100644
index 91367f560..000000000
--- a/tests/intel/xe_access_counter.c
+++ /dev/null
@@ -1,81 +0,0 @@
-// SPDX-License-Identifier: MIT
-/*
- * Copyright © 2023 Intel Corporation
- */
-
-/**
- * TEST: Basic tests for access counter functionality
- * Category: Software building block
- * Run type: FULL
- * Sub-category: access counter
- * Functionality: access counter
- * Test category: functionality test
- * SUBTEST: invalid-param
- * Description: Giving invalid granularity size parameter and checks for invalid error.
- */
-
-#include "igt.h"
-#include "lib/igt_syncobj.h"
-#include "lib/intel_reg.h"
-#include "xe_drm.h"
-
-#include "xe/xe_ioctl.h"
-#include "xe/xe_query.h"
-#include <string.h>
-
-#define SIZE_64M 3
-igt_main
-{
- int fd;
-
- igt_fixture {
- uint16_t devid;
-
- fd = drm_open_driver(DRIVER_XE);
- devid = intel_get_drm_devid(fd);
- igt_require(xe_supports_faults(fd));
- igt_require(IS_PONTEVECCHIO(devid));
- }
-
- igt_subtest("invalid-param") {
- struct drm_xe_engine_class_instance instance = {
- .engine_class = DRM_XE_ENGINE_CLASS_VM_BIND,
- };
-
- int ret;
- const int expected = -EINVAL;
-
- struct drm_xe_ext_set_property ext = {
- .base.next_extension = 0,
- .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
- .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_GRANULARITY,
- .value = SIZE_64M + 1,
- };
-
- struct drm_xe_exec_queue_create create = {
- .extensions = to_user_pointer(&ext),
- .vm_id = xe_vm_create(fd, 0, 0),
- .width = 1,
- .num_placements = 1,
- .instances = to_user_pointer(&instance),
- };
-
- if (igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create)) {
- ret = -errno;
- errno = 0;
- }
-
- igt_assert_eq(ret, expected);
- ext.value = -1;
-
- if (igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create)) {
- ret = -errno;
- errno = 0;
- }
-
- igt_assert_eq(ret, expected);
- }
-
- igt_fixture
- drm_close_driver(fd);
-}
diff --git a/tests/intel/xe_exec_fault_mode.c b/tests/intel/xe_exec_fault_mode.c
index dae0e8ac3..20a7cf8fe 100644
--- a/tests/intel/xe_exec_fault_mode.c
+++ b/tests/intel/xe_exec_fault_mode.c
@@ -29,9 +29,8 @@
#define INVALIDATE (0x1 << 2)
#define RACE (0x1 << 3)
#define BIND_EXEC_QUEUE (0x1 << 4)
-#define IMMEDIATE (0x1 << 5)
-#define PREFETCH (0x1 << 6)
-#define INVALID_FAULT (0x1 << 7)
+#define PREFETCH (0x1 << 5)
+#define INVALID_FAULT (0x1 << 6)
/**
* SUBTEST: once-%s
@@ -66,21 +65,6 @@
* bindexecqueue userptr invalidate
* @bindexecqueue-userptr-invalidate-race:
* bindexecqueue userptr invalidate race
- * @basic-imm: basic imm
- * @userptr-imm: userptr imm
- * @rebind-imm: rebind imm
- * @userptr-rebind-imm: userptr rebind imm
- * @userptr-invalidate-imm: userptr invalidate imm
- * @userptr-invalidate-race-imm: userptr invalidate race imm
- * @bindexecqueue-imm: bindexecqueue imm
- * @bindexecqueue-userptr-imm: bindexecqueue userptr imm
- * @bindexecqueue-rebind-imm: bindexecqueue rebind imm
- * @bindexecqueue-userptr-rebind-imm:
- * bindexecqueue userptr rebind imm
- * @bindexecqueue-userptr-invalidate-imm:
- * bindexecqueue userptr invalidate imm
- * @bindexecqueue-userptr-invalidate-race-imm:
- * bindexecqueue userptr invalidate race imm
* @basic-prefetch: basic prefetch
* @userptr-prefetch: userptr prefetch
* @rebind-prefetch: rebind prefetch
@@ -172,25 +156,13 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
};
sync[0].addr = to_user_pointer(&data[0].vm_sync);
- if (flags & IMMEDIATE) {
- if (bo)
- xe_vm_bind_async_flags(fd, vm, bind_exec_queues[0], bo, 0,
- addr, bo_size, sync, 1,
- DRM_XE_VM_BIND_FLAG_IMMEDIATE);
- else
- xe_vm_bind_userptr_async_flags(fd, vm, bind_exec_queues[0],
- to_user_pointer(data),
- addr, bo_size, sync, 1,
- DRM_XE_VM_BIND_FLAG_IMMEDIATE);
- } else {
- if (bo)
- xe_vm_bind_async(fd, vm, bind_exec_queues[0], bo, 0, addr,
+ if (bo)
+ xe_vm_bind_async(fd, vm, bind_exec_queues[0], bo, 0, addr,
+ bo_size, sync, 1);
+ else
+ xe_vm_bind_userptr_async(fd, vm, bind_exec_queues[0],
+ to_user_pointer(data), addr,
bo_size, sync, 1);
- else
- xe_vm_bind_userptr_async(fd, vm, bind_exec_queues[0],
- to_user_pointer(data), addr,
- bo_size, sync, 1);
- }
#define ONE_SEC MS_TO_NS(1000)
xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
@@ -343,22 +315,6 @@ igt_main
INVALIDATE },
{ "bindexecqueue-userptr-invalidate-race", BIND_EXEC_QUEUE | USERPTR |
INVALIDATE | RACE },
- { "basic-imm", IMMEDIATE },
- { "userptr-imm", IMMEDIATE | USERPTR },
- { "rebind-imm", IMMEDIATE | REBIND },
- { "userptr-rebind-imm", IMMEDIATE | USERPTR | REBIND },
- { "userptr-invalidate-imm", IMMEDIATE | USERPTR | INVALIDATE },
- { "userptr-invalidate-race-imm", IMMEDIATE | USERPTR |
- INVALIDATE | RACE },
- { "bindexecqueue-imm", IMMEDIATE | BIND_EXEC_QUEUE },
- { "bindexecqueue-userptr-imm", IMMEDIATE | BIND_EXEC_QUEUE | USERPTR },
- { "bindexecqueue-rebind-imm", IMMEDIATE | BIND_EXEC_QUEUE | REBIND },
- { "bindexecqueue-userptr-rebind-imm", IMMEDIATE | BIND_EXEC_QUEUE |
- USERPTR | REBIND },
- { "bindexecqueue-userptr-invalidate-imm", IMMEDIATE | BIND_EXEC_QUEUE |
- USERPTR | INVALIDATE },
- { "bindexecqueue-userptr-invalidate-race-imm", IMMEDIATE |
- BIND_EXEC_QUEUE | USERPTR | INVALIDATE | RACE },
{ "basic-prefetch", PREFETCH },
{ "userptr-prefetch", PREFETCH | USERPTR },
{ "rebind-prefetch", PREFETCH | REBIND },
diff --git a/tests/intel/xe_exec_queue_property.c b/tests/intel/xe_exec_queue_property.c
index 53e08fb0e..bc30e8803 100644
--- a/tests/intel/xe_exec_queue_property.c
+++ b/tests/intel/xe_exec_queue_property.c
@@ -18,9 +18,7 @@
*
* arg[1]:
*
- * @preempt_timeout_us: preempt timeout us
* @timeslice_duration_us: timeslice duration us
- * @job_timeout_ms: job timeout ms
*/
#include <dirent.h>
@@ -42,11 +40,7 @@
static int get_property_name(const char *property)
{
- if (strstr(property, "preempt"))
- return DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT;
- else if (strstr(property, "job_timeout"))
- return DRM_XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT;
- else if (strstr(property, "timeslice"))
+ if (strstr(property, "timeslice"))
return DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE;
else
return -1;
@@ -174,6 +168,46 @@ static void basic_get_property(int xe)
xe_vm_destroy(xe, vm);
}
+/**
+ * SUBTEST: invalid-property
+ * Description: Ensure only valid values for property are accepted.
+ * Test category: functionality test
+ */
+static void invalid_property(int xe)
+{
+ uint32_t valid_property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY;
+ struct drm_xe_engine_class_instance instance = {
+ .engine_class = DRM_XE_ENGINE_CLASS_VM_BIND,
+ };
+ struct drm_xe_ext_set_property ext = {
+ .base.next_extension = 0,
+ .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
+ .property = valid_property,
+ .value = 1,
+ };
+
+ struct drm_xe_exec_queue_create create = {
+ .extensions = to_user_pointer(&ext),
+ .width = 1,
+ .num_placements = 1,
+ .instances = to_user_pointer(&instance),
+ .vm_id = xe_vm_create(xe, 0, 0),
+ };
+ /* Correct value should pass */
+ igt_assert_eq(igt_ioctl(xe, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create), 0);
+
+ for (int i = 2; i < 16; i++ ) {
+ if (i == 3)
+ continue;
+ ext.property = i;
+ do_ioctl_err(xe, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL);
+ }
+
+ /* Correct value should still pass */
+ ext.property = valid_property;
+ igt_assert_eq(igt_ioctl(xe, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create), 0);
+}
+
igt_main
{
static const struct {
@@ -181,9 +215,7 @@ igt_main
void (*fn)(int, int, const char **);
} tests[] = {{"property-min-max", test_property_min_max}, {} };
- const char *property[][3] = { {"preempt_timeout_us", "preempt_timeout_min", "preempt_timeout_max"},
- {"timeslice_duration_us", "timeslice_duration_min", "timeslice_duration_max"},
- {"job_timeout_ms", "job_timeout_min", "job_timeout_max"},
+ const char *property[][3] = { {"timeslice_duration_us", "timeslice_duration_min", "timeslice_duration_max"},
};
int count = sizeof(property) / sizeof(property[0]);
int sys_fd;
@@ -257,6 +289,9 @@ igt_main
igt_subtest("basic-get-property")
basic_get_property(xe);
+ igt_subtest("invalid-property")
+ invalid_property(xe);
+
igt_fixture {
xe_device_put(xe);
drm_close_driver(xe);
diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
index a9206d7d2..a39e5860e 100644
--- a/tests/intel/xe_exec_reset.c
+++ b/tests/intel/xe_exec_reset.c
@@ -93,22 +93,14 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci)
#define MAX_N_EXECQUEUES 16
#define MAX_INSTANCE 9
-#define CANCEL (0x1 << 0)
-#define EXEC_QUEUE_RESET (0x1 << 1)
-#define GT_RESET (0x1 << 2)
-#define CLOSE_FD (0x1 << 3)
-#define CLOSE_EXEC_QUEUES (0x1 << 4)
-#define VIRTUAL (0x1 << 5)
-#define PARALLEL (0x1 << 6)
-#define CAT_ERROR (0x1 << 7)
+#define GT_RESET (0x1 << 0)
+#define CLOSE_FD (0x1 << 1)
+#define CLOSE_EXEC_QUEUES (0x1 << 2)
+#define VIRTUAL (0x1 << 3)
+#define PARALLEL (0x1 << 4)
+#define CAT_ERROR (0x1 << 5)
/**
- * SUBTEST: %s-cancel
- * Description: Test %arg[1] cancel
- *
- * SUBTEST: %s-execqueue-reset
- * Description: Test %arg[1] exec_queue reset
- *
* SUBTEST: %s-cat-error
* Description: Test %arg[1] cat error
*
@@ -185,18 +177,6 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
data = xe_bo_map(fd, bo, bo_size);
for (i = 0; i < n_exec_queues; i++) {
- struct drm_xe_ext_set_property job_timeout = {
- .base.next_extension = 0,
- .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
- .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT,
- .value = 50,
- };
- struct drm_xe_ext_set_property preempt_timeout = {
- .base.next_extension = 0,
- .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
- .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT,
- .value = 1000,
- };
struct drm_xe_exec_queue_create create = {
.vm_id = vm,
.width = flags & PARALLEL ? num_placements : 1,
@@ -204,11 +184,6 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
.instances = to_user_pointer(eci),
};
- if (flags & CANCEL)
- create.extensions = to_user_pointer(&job_timeout);
- else if (flags & EXEC_QUEUE_RESET)
- create.extensions = to_user_pointer(&preempt_timeout);
-
igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE,
&create), 0);
exec_queues[i] = create.exec_queue_id;
@@ -219,8 +194,7 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
sync[0].handle = syncobj_create(fd, 0);
xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
- if (flags & VIRTUAL && (flags & CAT_ERROR || flags & EXEC_QUEUE_RESET ||
- flags & GT_RESET))
+ if (flags & VIRTUAL && (flags & CAT_ERROR || flags & GT_RESET))
bad_batches = num_placements;
for (i = 0; i < n_execs; i++) {
@@ -309,12 +283,6 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
}
/**
- * SUBTEST: cancel
- * Description: Test cancel
- *
- * SUBTEST: execqueue-reset
- * Description: Test exec_queue reset
- *
* SUBTEST: cat-error
* Description: Test cat error
*
@@ -374,26 +342,7 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
data = xe_bo_map(fd, bo, bo_size);
for (i = 0; i < n_exec_queues; i++) {
- struct drm_xe_ext_set_property job_timeout = {
- .base.next_extension = 0,
- .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
- .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT,
- .value = 50,
- };
- struct drm_xe_ext_set_property preempt_timeout = {
- .base.next_extension = 0,
- .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
- .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT,
- .value = 1000,
- };
- uint64_t ext = 0;
-
- if (flags & CANCEL)
- ext = to_user_pointer(&job_timeout);
- else if (flags & EXEC_QUEUE_RESET)
- ext = to_user_pointer(&preempt_timeout);
-
- exec_queues[i] = xe_exec_queue_create(fd, vm, eci, ext);
+ exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
syncobjs[i] = syncobj_create(fd, 0);
};
@@ -478,9 +427,6 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
}
/**
- * SUBTEST: cm-execqueue-reset
- * Description: Test compute mode exec_queue reset
- *
* SUBTEST: cm-cat-error
* Description: Test compute mode cat-error
*
@@ -543,20 +489,7 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
memset(data, 0, bo_size);
for (i = 0; i < n_exec_queues; i++) {
- struct drm_xe_ext_set_property preempt_timeout = {
- .base.next_extension = 0,
- .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
- .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT,
- .value = 1000,
- };
- uint64_t ext = 0;
-
- if (flags & EXEC_QUEUE_RESET)
- ext = to_user_pointer(&preempt_timeout);
- else
- ext = 0;
-
- exec_queues[i] = xe_exec_queue_create(fd, vm, eci, ext);
+ exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
};
sync[0].addr = to_user_pointer(&data[0].vm_sync);
@@ -803,14 +736,6 @@ igt_main
xe_for_each_engine(fd, hwe)
test_spin(fd, hwe);
- igt_subtest("cancel")
- xe_for_each_engine(fd, hwe)
- test_legacy_mode(fd, hwe, 1, 1, CANCEL);
-
- igt_subtest("execqueue-reset")
- xe_for_each_engine(fd, hwe)
- test_legacy_mode(fd, hwe, 2, 2, EXEC_QUEUE_RESET);
-
igt_subtest("cat-error")
xe_for_each_engine(fd, hwe)
test_legacy_mode(fd, hwe, 2, 2, CAT_ERROR);
@@ -832,10 +757,6 @@ igt_main
test_legacy_mode(-1, hwe, 16, 256, CLOSE_FD |
CLOSE_EXEC_QUEUES);
- igt_subtest("cm-execqueue-reset")
- xe_for_each_engine(fd, hwe)
- test_compute_mode(fd, hwe, 2, 2, EXEC_QUEUE_RESET);
-
igt_subtest("cm-cat-error")
xe_for_each_engine(fd, hwe)
test_compute_mode(fd, hwe, 2, 2, CAT_ERROR);
@@ -858,19 +779,6 @@ igt_main
CLOSE_EXEC_QUEUES);
for (const struct section *s = sections; s->name; s++) {
- igt_subtest_f("%s-cancel", s->name)
- xe_for_each_gt(fd, gt)
- xe_for_each_engine_class(class)
- test_balancer(fd, gt, class, 1, 1,
- CANCEL | s->flags);
-
- igt_subtest_f("%s-execqueue-reset", s->name)
- xe_for_each_gt(fd, gt)
- xe_for_each_engine_class(class)
- test_balancer(fd, gt, class, MAX_INSTANCE + 1,
- MAX_INSTANCE + 1,
- EXEC_QUEUE_RESET | s->flags);
-
igt_subtest_f("%s-cat-error", s->name)
xe_for_each_gt(fd, gt)
xe_for_each_engine_class(class)
diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index 1b2623045..55907e2b3 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -518,18 +518,7 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
memset(sync_all, 0, sizeof(sync_all));
for (i = 0; i < n_exec_queues; i++) {
- struct drm_xe_ext_set_property preempt_timeout = {
- .base.next_extension = 0,
- .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
- .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT,
- .value = 1000,
- };
- uint64_t ext = to_user_pointer(&preempt_timeout);
-
- if (flags & HANG && i == hang_exec_queue)
- exec_queues[i] = xe_exec_queue_create(fd, vm, eci, ext);
- else
- exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
+ exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
if (flags & BIND_EXEC_QUEUE)
bind_exec_queues[i] = xe_bind_exec_queue_create(fd, vm,
0);
diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
index fe667e64d..7c061c497 100644
--- a/tests/intel/xe_vm.c
+++ b/tests/intel/xe_vm.c
@@ -1761,6 +1761,72 @@ test_mmap_style_bind(int fd, struct drm_xe_engine_class_instance *eci,
xe_vm_destroy(fd, vm);
}
+/**
+ * SUBTEST: bind-flag-invalid
+ * Description:
+ * Ensure invalid bind flags are rejected.
+ * Functionality: bind
+ * Test category: negative test
+ */
+static void bind_flag_invalid(int fd)
+{
+ uint32_t bo, bo_size = xe_get_default_alignment(fd);
+ uint64_t addr = 0x1a0000;
+ uint32_t vm;
+ struct drm_xe_vm_bind bind;
+ struct drm_xe_sync sync[1] = {
+ { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
+ };
+
+ vm = xe_vm_create(fd, 0, 0);
+ bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, 0), 0);
+ sync[0].handle = syncobj_create(fd, 0);
+
+ memset(&bind, 0, sizeof(bind));
+ bind.vm_id = vm;
+ bind.num_binds = 1;
+ bind.bind.obj = bo;
+ bind.bind.range = bo_size;
+ bind.bind.addr = addr;
+ bind.bind.op = DRM_XE_VM_BIND_OP_MAP;
+ bind.num_syncs = 1;
+ bind.syncs = (uintptr_t)sync;
+
+ /* Using valid flags should work */
+ bind.bind.flags = 0;
+ igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+ syncobj_reset(fd, &sync[0].handle, 1);
+
+ bind.bind.flags = DRM_XE_VM_BIND_FLAG_NULL;
+ bind.bind.obj = 0;
+ igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+ syncobj_reset(fd, &sync[0].handle, 1);
+ bind.bind.obj = bo;
+
+ /* Using invalid flags should not work */
+ bind.bind.flags = 1 << 0;
+ igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
+ do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL);
+
+ bind.bind.flags = 1 << 1;
+ igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
+ do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL);
+
+ bind.bind.flags = 1 << 3;
+ igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
+ do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL);
+
+ /* Using valid flags should still work */
+ bind.bind.flags = 0;
+ igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+
+ syncobj_destroy(fd, sync[0].handle);
+ xe_vm_destroy(fd, vm);
+}
+
igt_main
{
struct drm_xe_engine_class_instance *hwe, *hwe_non_copy = NULL;
@@ -1892,6 +1958,9 @@ igt_main
igt_subtest("userptr-invalid")
userptr_invalid(fd);
+ igt_subtest("bind-flag-invalid")
+ bind_flag_invalid(fd);
+
igt_subtest("shared-pte-page")
xe_for_each_engine(fd, hwe)
shared_pte_page(fd, hwe, 4,
diff --git a/tests/meson.build b/tests/meson.build
index d107d16fa..02cbc3780 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -274,7 +274,6 @@ intel_kms_progs = [
]
intel_xe_progs = [
- 'xe_access_counter',
'xe_ccs',
'xe_create',
'xe_compute',
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Fi.CI.BAT: success for drm-uapi/xe: Remove unused flags
2024-02-16 14:18 [PATCH i-g-t] drm-uapi/xe: Remove unused flags Francois Dugast
@ 2024-02-16 15:19 ` Patchwork
2024-02-16 15:21 ` ✗ CI.xeBAT: failure " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-02-16 15:19 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7215 bytes --]
== Series Details ==
Series: drm-uapi/xe: Remove unused flags
URL : https://patchwork.freedesktop.org/series/130005/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14284 -> IGTPW_10686
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/index.html
Participating hosts (36 -> 34)
------------------------------
Additional (1): bat-mtlp-8
Missing (3): bat-kbl-2 bat-jsl-1 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10686 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#5190])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4212]) +8 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4213]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840] / [i915#9159])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][11] ([fdo#109285])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#5274])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#8809])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#3708] / [i915#4077]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#3708]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@gem_exec_create@basic@smem:
- {bat-arls-1}: [DMESG-WARN][16] ([i915#10194]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/bat-arls-1/igt@gem_exec_create@basic@smem.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-arls-1/igt@gem_exec_create@basic@smem.html
* igt@i915_pm_rpm@module-reload:
- fi-kbl-7567u: [CRASH][18] ([i915#9947]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1:
- bat-dg2-8: [FAIL][20] ([i915#10164]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#10164]: https://gitlab.freedesktop.org/drm/intel/issues/10164
[i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9947]: https://gitlab.freedesktop.org/drm/intel/issues/9947
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7716 -> IGTPW_10686
CI-20190529: 20190529
CI_DRM_14284: 2b0582c5f6c84859252ce7da41fc8829c88e17a7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10686: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/index.html
IGT_7716: 7716
Testlist changes
----------------
+++ 1522 lines
--- 153 lines
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/index.html
[-- Attachment #2: Type: text/html, Size: 8410 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ CI.xeBAT: failure for drm-uapi/xe: Remove unused flags
2024-02-16 14:18 [PATCH i-g-t] drm-uapi/xe: Remove unused flags Francois Dugast
2024-02-16 15:19 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2024-02-16 15:21 ` Patchwork
2024-02-17 3:06 ` ✗ Fi.CI.IGT: " Patchwork
2024-02-20 21:34 ` [PATCH i-g-t] " Rodrigo Vivi
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-02-16 15:21 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1876 bytes --]
== Series Details ==
Series: drm-uapi/xe: Remove unused flags
URL : https://patchwork.freedesktop.org/series/130005/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7716_BAT -> XEIGTPW_10686_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10686_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10686_BAT, 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.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_10686_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- bat-pvc-2: [PASS][1] -> [SKIP][2] +9 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7716/bat-pvc-2/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10686/bat-pvc-2/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
Build changes
-------------
* IGT: IGT_7716 -> IGTPW_10686
* Linux: xe-789-55724f2a1075fcace79fd49ea0c2b7b5600d7ba8 -> xe-791-2b0582c5f6c84859252ce7da41fc8829c88e17a7
IGTPW_10686: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/index.html
IGT_7716: 7716
xe-789-55724f2a1075fcace79fd49ea0c2b7b5600d7ba8: 55724f2a1075fcace79fd49ea0c2b7b5600d7ba8
xe-791-2b0582c5f6c84859252ce7da41fc8829c88e17a7: 2b0582c5f6c84859252ce7da41fc8829c88e17a7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10686/index.html
[-- Attachment #2: Type: text/html, Size: 2472 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Fi.CI.IGT: failure for drm-uapi/xe: Remove unused flags
2024-02-16 14:18 [PATCH i-g-t] drm-uapi/xe: Remove unused flags Francois Dugast
2024-02-16 15:19 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-02-16 15:21 ` ✗ CI.xeBAT: failure " Patchwork
@ 2024-02-17 3:06 ` Patchwork
2024-02-20 21:34 ` [PATCH i-g-t] " Rodrigo Vivi
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-02-17 3:06 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 82678 bytes --]
== Series Details ==
Series: drm-uapi/xe: Remove unused flags
URL : https://patchwork.freedesktop.org/series/130005/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14284_full -> IGTPW_10686_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10686_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10686_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_10686/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_10686_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_edge_walk@64x64-top-edge@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-rkl-1/igt@kms_cursor_edge_walk@64x64-top-edge@pipe-b-hdmi-a-2.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-3/igt@kms_cursor_edge_walk@64x64-top-edge@pipe-b-hdmi-a-2.html
Known issues
------------
Here are the changes found in IGTPW_10686_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][4] ([i915#6230])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-7/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#7701])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-5/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@busy-idle-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +22 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-10/igt@drm_fdinfo@busy-idle-check-all@ccs3.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-17/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-17/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][11] ([i915#10183])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#6335])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#8562])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-19/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][15] ([fdo#109314])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-3/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#5882]) +5 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-7/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-9/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][21] ([i915#10030] / [i915#7975] / [i915#8213])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][25] ([i915#9606])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-glk4/igt@gem_exec_capture@many-4k-incremental.html
- shard-dg1: NOTRUN -> [FAIL][26] ([i915#9606])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-17/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-tglu: NOTRUN -> [FAIL][27] ([i915#9606])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-6/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-18/igt@gem_exec_fair@basic-none.html
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4473] / [i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-4/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-rkl: [PASS][31] -> [FAIL][32] ([i915#2842]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-rkl-6/igt@gem_exec_fair@basic-none@rcs0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-7/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [PASS][33] -> [FAIL][34] ([i915#2842])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-tglu-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-19/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +10 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-16/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-5/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#4613]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-glk3/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-2/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4077])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-13/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4083]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@write-read:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-2/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3282])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-4/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3282]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@gem_pread@snoop.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4270])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4270])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-2/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4270])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#4270])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#5190]) +10 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4079])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-3/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop:
- shard-tglu: NOTRUN -> [SKIP][60] ([fdo#109312])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-8/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4885])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-2/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-5/igt@gem_tiling_max_stride.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4879])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-6/igt@gem_unfence_active_buffers.html
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4879])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-12/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3323])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3297]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282] / [i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][73] ([fdo#109289]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-tglu: NOTRUN -> [SKIP][74] ([fdo#109289]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-7/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-5/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-large:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#2856])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-5/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#2527]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-15/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][80] ([i915#9820])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [PASS][81] -> [INCOMPLETE][82] ([i915#10137] / [i915#9820] / [i915#9849])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#8399])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-dg1: NOTRUN -> [SKIP][84] ([fdo#109289])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-13/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4387])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock@memory_region:
- shard-glk: NOTRUN -> [DMESG-WARN][86] ([i915#9311])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-glk8/igt@i915_selftest@mock@memory_region.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#8709]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/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-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#8709]) +11 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#6228])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][90] ([fdo#111614]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-dg2: NOTRUN -> [SKIP][91] ([fdo#111614]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#5286]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#5286])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-7/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#4538] / [i915#5286])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][95] ([fdo#111615] / [i915#5286])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#3638])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-19/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][97] ([fdo#111614] / [i915#3638]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][98] -> [FAIL][99] ([i915#3743]) +3 other tests fail
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][100] ([fdo#111614]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][101] ([fdo#111615]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5190]) +8 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][103] ([fdo#110723]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][104] ([fdo#111615]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#5354] / [i915#6095]) +10 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-yf-tiled-ccs:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#5354] / [i915#6095]) +32 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-6/igt@kms_ccs@pipe-a-bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@pipe-b-random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#5354] / [i915#6095]) +12 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-19/igt@kms_ccs@pipe-b-random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-crc-primary-basic-y-tiled-gen12-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) +11 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-5/igt@kms_ccs@pipe-c-crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#5354]) +75 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@kms_ccs@pipe-d-missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#5354]) +15 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#3742])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-12/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3742])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4087]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2: NOTRUN -> [SKIP][115] ([fdo#111827]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-rkl: NOTRUN -> [SKIP][116] ([fdo#111827])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111827])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-3/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#7828]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-4/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#7828]) +8 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#7828])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-19/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#7828]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-2/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#7828]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-7/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#6944] / [i915#9424])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#9433])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#7118] / [i915#9424])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#3555]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#3359]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#3359])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#3555]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-4/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#3359]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#3359])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#3555]) +6 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-tglu: NOTRUN -> [SKIP][133] ([fdo#109274])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-10/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][134] ([fdo#109274] / [i915#5354]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-10/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-rkl: NOTRUN -> [SKIP][135] ([fdo#111825]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#9809]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#4103] / [i915#4213]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/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][138] ([i915#4213])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#4103])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-tglu: [PASS][140] -> [DMESG-WARN][141] ([i915#10166] / [i915#1982])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-tglu-7/igt@kms_cursor_legacy@torture-move@pipe-a.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-5/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][142] ([fdo#110189] / [i915#9723])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-15/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#3804])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#3804])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#1257])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-8/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#3840])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#3840]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#3840] / [i915#9053])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#3469])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-17/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#3469])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#1839])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#658])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-7/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109274] / [i915#3637])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-10/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-dg1: NOTRUN -> [SKIP][154] ([fdo#111825] / [i915#9934])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-15/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-tglu: NOTRUN -> [SKIP][155] ([fdo#109274] / [fdo#111767] / [i915#3637]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu: NOTRUN -> [SKIP][156] ([fdo#109274] / [i915#3637] / [i915#3966])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3637]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-1/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#8381])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][159] ([fdo#109274]) +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#2672]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8810]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#2587] / [i915#2672]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#2587] / [i915#2672])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-17/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-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#2672]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-snb: [PASS][165] -> [SKIP][166] ([fdo#109271]) +8 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-snb1/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][167] ([fdo#111767] / [i915#1825])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][168] ([fdo#109280]) +19 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][169] ([fdo#109280] / [fdo#111767]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#8708]) +16 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][171] ([fdo#111825]) +5 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#1825]) +8 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#10070])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#10070])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3458]) +16 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8708]) +4 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3023]) +12 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8708]) +6 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825] / [i915#1825]) +15 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][180] ([fdo#111767] / [fdo#111825]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][181] ([fdo#111767] / [i915#5354]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][182] ([fdo#110189]) +17 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3458]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8228])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-10/igt@kms_hdr@invalid-hdr.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8228])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-rkl: NOTRUN -> [SKIP][187] ([fdo#109289]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-7/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane_lowres@tiling-4@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3582]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-4/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8821])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][190] ([i915#8292])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][191] ([i915#8292])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][192] ([fdo#109271]) +196 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-glk3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#9423]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#5176]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#9423]) +23 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9423]) +11 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#9423]) +7 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#5235]) +7 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#5235]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#5235] / [i915#9423]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#9812])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-7/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9685]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#5978])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@kms_pm_dc@dc6-dpms.html
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#3361])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#9685]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#9340])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#9340])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#9519])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#9519])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#9519]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][211] -> [SKIP][212] ([i915#9519])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@pc8-residency:
- shard-dg1: NOTRUN -> [SKIP][213] ([fdo#109293] / [fdo#109506])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-15/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#6524])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#6524] / [i915#6805])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#9683]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][217] ([fdo#111068] / [i915#9683])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#9683]) +4 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#4235]) +3 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#5289])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-rkl: [PASS][221] -> [INCOMPLETE][222] ([i915#9569])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][223] ([fdo#111615] / [i915#5289])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#4235] / [i915#5190])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg1: NOTRUN -> [SKIP][225] ([fdo#111615] / [i915#5289])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#4235])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-rkl: [PASS][227] -> [INCOMPLETE][228] ([i915#8875] / [i915#9569])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-rkl-7/igt@kms_rotation_crc@sprite-rotation-90.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3555])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-18/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][230] ([IGT#2])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#8623])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#9906])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-4/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#2437])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#2437] / [i915#9412])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#2434])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#2434])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@perf@mi-rpc.html
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2434])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-5/igt@perf@mi-rpc.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][238] ([i915#5793])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#8516])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-tglu: NOTRUN -> [SKIP][240] ([fdo#109291])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-10/igt@prime_udl.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3708] / [i915#4077])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#3708] / [i915#4077])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-1/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#3708] / [i915#4077])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-12/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#3291] / [i915#3708])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-2/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][245] ([fdo#109295] / [i915#3291] / [i915#3708])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-7/igt@prime_vgem@basic-write.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#9917])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@sriov_basic@bind-unbind-vf.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-dg1: NOTRUN -> [FAIL][247] ([i915#9781])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-12/igt@syncobj_timeline@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][248] ([i915#9781])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-glk3/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#2575]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-1/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html
* igt@v3d/v3d_submit_cl@single-in-sync:
- shard-rkl: NOTRUN -> [SKIP][250] ([fdo#109315]) +6 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@v3d/v3d_submit_cl@single-in-sync.html
* igt@v3d/v3d_submit_cl@valid-submission:
- shard-tglu: NOTRUN -> [SKIP][251] ([fdo#109315] / [i915#2575]) +6 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-4/igt@v3d/v3d_submit_cl@valid-submission.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#2575]) +13 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#2575]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-19/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#7711]) +4 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-5/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#7711]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-17/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_perfmon@create-two-perfmon:
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#2575]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-4/igt@vc4/vc4_perfmon@create-two-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#7711]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html
* igt@vc4/vc4_tiling@set-get:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#7711]) +8 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-5/igt@vc4/vc4_tiling@set-get.html
#### Possible fixes ####
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][259] ([i915#5784]) -> [PASS][260] +1 other test pass
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-dg1-19/igt@gem_eio@unwedge-stress.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-rkl: [FAIL][261] ([i915#2842]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-rkl-4/igt@gem_exec_fair@basic-none-solo@rcs0.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_whisper@basic-fds-priority-all:
- shard-tglu: [INCOMPLETE][263] ([i915#6755] / [i915#7392] / [i915#9857]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-tglu-3/igt@gem_exec_whisper@basic-fds-priority-all.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-9/igt@gem_exec_whisper@basic-fds-priority-all.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: [ABORT][265] ([i915#9849]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-glk2/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][267] ([i915#2346]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@single-bo@pipe-a:
- shard-rkl: [DMESG-WARN][269] -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-rkl-4/igt@kms_cursor_legacy@single-bo@pipe-a.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_cursor_legacy@single-bo@pipe-a.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-snb: [DMESG-WARN][271] ([i915#10166]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-snb5/igt@kms_cursor_legacy@torture-move@pipe-a.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-snb6/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [SKIP][273] ([fdo#109271]) -> [PASS][274] +15 other tests pass
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [FAIL][275] ([i915#9196]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [FAIL][277] ([i915#9196]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4:
- shard-dg1: [FAIL][279] ([i915#9196]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][281] ([i915#7484]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [INCOMPLETE][283] ([i915#10137] / [i915#9618]) -> [INCOMPLETE][284] ([i915#10137] / [i915#9408] / [i915#9618])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][285] ([i915#10131] / [i915#9820]) -> [ABORT][286] ([i915#10131] / [i915#9697])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@atomic:
- shard-snb: [SKIP][287] ([fdo#109271]) -> [INCOMPLETE][288] ([i915#8816])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-snb6/igt@kms_content_protection@atomic.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-snb7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][289] ([i915#8063]) -> [SKIP][290] ([i915#9424])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-rkl-4/igt@kms_content_protection@mei-interface.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-7/igt@kms_content_protection@mei-interface.html
- shard-tglu: [SKIP][291] ([i915#8063]) -> [SKIP][292] ([i915#6944] / [i915#9424])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-tglu-9/igt@kms_content_protection@mei-interface.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-tglu-5/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][293] ([i915#3955]) -> [SKIP][294] ([fdo#110189] / [i915#3955])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-snb: [SKIP][295] ([fdo#109271] / [fdo#111767]) -> [SKIP][296] ([fdo#109271])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][297] ([i915#4070] / [i915#4816]) -> [SKIP][298] ([i915#4816])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14284/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#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#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#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
[i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#10183]: https://gitlab.freedesktop.org/drm/intel/issues/10183
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[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#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#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#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[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#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
[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#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#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[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#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7716 -> IGTPW_10686
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14284: 2b0582c5f6c84859252ce7da41fc8829c88e17a7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10686: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/index.html
IGT_7716: 7716
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10686/index.html
[-- Attachment #2: Type: text/html, Size: 101649 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH i-g-t] drm-uapi/xe: Remove unused flags
2024-02-16 14:18 [PATCH i-g-t] drm-uapi/xe: Remove unused flags Francois Dugast
` (2 preceding siblings ...)
2024-02-17 3:06 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-02-20 21:34 ` Rodrigo Vivi
3 siblings, 0 replies; 5+ messages in thread
From: Rodrigo Vivi @ 2024-02-20 21:34 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
On Fri, Feb 16, 2024 at 02:18:47PM +0000, Francois Dugast wrote:
> This aligns with kernel commit ("drm/xe/uapi: Remove unused flags"). As
> a consequence, some tests which dependend on the removed flags are also
> removed. Also, ensure that the removed flag values are no longer
> accepted to prevent mismatch.
>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> ---
> include/drm-uapi/xe_drm.h | 20 -----
> tests/intel/xe_access_counter.c | 81 --------------------
> tests/intel/xe_exec_fault_mode.c | 60 ++-------------
> tests/intel/xe_exec_queue_property.c | 55 +++++++++++---
> tests/intel/xe_exec_reset.c | 110 +++------------------------
> tests/intel/xe_exec_threads.c | 13 +---
> tests/intel/xe_vm.c | 69 +++++++++++++++++
> tests/meson.build | 1 -
> 8 files changed, 132 insertions(+), 277 deletions(-)
> delete mode 100644 tests/intel/xe_access_counter.c
>
> diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
> index bacdca787..7394aae92 100644
> --- a/include/drm-uapi/xe_drm.h
> +++ b/include/drm-uapi/xe_drm.h
> @@ -831,11 +831,6 @@ struct drm_xe_vm_destroy {
> * - %DRM_XE_VM_BIND_OP_PREFETCH
> *
> * and the @flags can be:
> - * - %DRM_XE_VM_BIND_FLAG_READONLY
> - * - %DRM_XE_VM_BIND_FLAG_ASYNC
> - * - %DRM_XE_VM_BIND_FLAG_IMMEDIATE - Valid on a faulting VM only, do the
> - * MAP operation immediately rather than deferring the MAP to the page
> - * fault handler.
> * - %DRM_XE_VM_BIND_FLAG_NULL - When the NULL flag is set, the page
> * tables are setup with a special bit which indicates writes are
> * dropped and all reads return zero. In the future, the NULL flags
> @@ -928,8 +923,6 @@ struct drm_xe_vm_bind_op {
> /** @op: Bind operation to perform */
> __u32 op;
>
> -#define DRM_XE_VM_BIND_FLAG_READONLY (1 << 0)
> -#define DRM_XE_VM_BIND_FLAG_IMMEDIATE (1 << 1)
> #define DRM_XE_VM_BIND_FLAG_NULL (1 << 2)
> /** @flags: Bind flags */
> __u32 flags;
> @@ -1045,20 +1038,7 @@ struct drm_xe_exec_queue_create {
> #define DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY 0
> #define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY 0
> #define DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE 1
> -#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT 2
> #define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PERSISTENCE 3
> -#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT 4
> -#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_TRIGGER 5
> -#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_NOTIFY 6
> -#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_GRANULARITY 7
> -/* Monitor 128KB contiguous region with 4K sub-granularity */
> -#define DRM_XE_ACC_GRANULARITY_128K 0
> -/* Monitor 2MB contiguous region with 64KB sub-granularity */
> -#define DRM_XE_ACC_GRANULARITY_2M 1
> -/* Monitor 16MB contiguous region with 512KB sub-granularity */
> -#define DRM_XE_ACC_GRANULARITY_16M 2
> -/* Monitor 64MB contiguous region with 2M sub-granularity */
> -#define DRM_XE_ACC_GRANULARITY_64M 3
>
> /** @extensions: Pointer to the first extension struct, if any */
> __u64 extensions;
> diff --git a/tests/intel/xe_access_counter.c b/tests/intel/xe_access_counter.c
> deleted file mode 100644
> index 91367f560..000000000
> --- a/tests/intel/xe_access_counter.c
> +++ /dev/null
> @@ -1,81 +0,0 @@
> -// SPDX-License-Identifier: MIT
> -/*
> - * Copyright © 2023 Intel Corporation
> - */
> -
> -/**
> - * TEST: Basic tests for access counter functionality
> - * Category: Software building block
> - * Run type: FULL
> - * Sub-category: access counter
> - * Functionality: access counter
> - * Test category: functionality test
> - * SUBTEST: invalid-param
> - * Description: Giving invalid granularity size parameter and checks for invalid error.
> - */
> -
> -#include "igt.h"
> -#include "lib/igt_syncobj.h"
> -#include "lib/intel_reg.h"
> -#include "xe_drm.h"
> -
> -#include "xe/xe_ioctl.h"
> -#include "xe/xe_query.h"
> -#include <string.h>
> -
> -#define SIZE_64M 3
> -igt_main
> -{
> - int fd;
> -
> - igt_fixture {
> - uint16_t devid;
> -
> - fd = drm_open_driver(DRIVER_XE);
> - devid = intel_get_drm_devid(fd);
> - igt_require(xe_supports_faults(fd));
> - igt_require(IS_PONTEVECCHIO(devid));
> - }
> -
> - igt_subtest("invalid-param") {
> - struct drm_xe_engine_class_instance instance = {
> - .engine_class = DRM_XE_ENGINE_CLASS_VM_BIND,
> - };
> -
> - int ret;
> - const int expected = -EINVAL;
> -
> - struct drm_xe_ext_set_property ext = {
> - .base.next_extension = 0,
> - .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> - .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_GRANULARITY,
> - .value = SIZE_64M + 1,
> - };
> -
> - struct drm_xe_exec_queue_create create = {
> - .extensions = to_user_pointer(&ext),
> - .vm_id = xe_vm_create(fd, 0, 0),
> - .width = 1,
> - .num_placements = 1,
> - .instances = to_user_pointer(&instance),
> - };
> -
> - if (igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create)) {
> - ret = -errno;
> - errno = 0;
> - }
> -
> - igt_assert_eq(ret, expected);
> - ext.value = -1;
> -
> - if (igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create)) {
> - ret = -errno;
> - errno = 0;
> - }
> -
> - igt_assert_eq(ret, expected);
> - }
> -
> - igt_fixture
> - drm_close_driver(fd);
> -}
> diff --git a/tests/intel/xe_exec_fault_mode.c b/tests/intel/xe_exec_fault_mode.c
> index dae0e8ac3..20a7cf8fe 100644
> --- a/tests/intel/xe_exec_fault_mode.c
> +++ b/tests/intel/xe_exec_fault_mode.c
> @@ -29,9 +29,8 @@
> #define INVALIDATE (0x1 << 2)
> #define RACE (0x1 << 3)
> #define BIND_EXEC_QUEUE (0x1 << 4)
> -#define IMMEDIATE (0x1 << 5)
> -#define PREFETCH (0x1 << 6)
> -#define INVALID_FAULT (0x1 << 7)
> +#define PREFETCH (0x1 << 5)
> +#define INVALID_FAULT (0x1 << 6)
>
> /**
> * SUBTEST: once-%s
> @@ -66,21 +65,6 @@
> * bindexecqueue userptr invalidate
> * @bindexecqueue-userptr-invalidate-race:
> * bindexecqueue userptr invalidate race
> - * @basic-imm: basic imm
> - * @userptr-imm: userptr imm
> - * @rebind-imm: rebind imm
> - * @userptr-rebind-imm: userptr rebind imm
> - * @userptr-invalidate-imm: userptr invalidate imm
> - * @userptr-invalidate-race-imm: userptr invalidate race imm
> - * @bindexecqueue-imm: bindexecqueue imm
> - * @bindexecqueue-userptr-imm: bindexecqueue userptr imm
> - * @bindexecqueue-rebind-imm: bindexecqueue rebind imm
> - * @bindexecqueue-userptr-rebind-imm:
> - * bindexecqueue userptr rebind imm
> - * @bindexecqueue-userptr-invalidate-imm:
> - * bindexecqueue userptr invalidate imm
> - * @bindexecqueue-userptr-invalidate-race-imm:
> - * bindexecqueue userptr invalidate race imm
Please update ./tests/intel-ci/xe-fast-feedback.testlist to remove the tests that
are now gone.
> * @basic-prefetch: basic prefetch
> * @userptr-prefetch: userptr prefetch
> * @rebind-prefetch: rebind prefetch
> @@ -172,25 +156,13 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
> };
>
> sync[0].addr = to_user_pointer(&data[0].vm_sync);
> - if (flags & IMMEDIATE) {
> - if (bo)
> - xe_vm_bind_async_flags(fd, vm, bind_exec_queues[0], bo, 0,
> - addr, bo_size, sync, 1,
> - DRM_XE_VM_BIND_FLAG_IMMEDIATE);
> - else
> - xe_vm_bind_userptr_async_flags(fd, vm, bind_exec_queues[0],
> - to_user_pointer(data),
> - addr, bo_size, sync, 1,
> - DRM_XE_VM_BIND_FLAG_IMMEDIATE);
> - } else {
> - if (bo)
> - xe_vm_bind_async(fd, vm, bind_exec_queues[0], bo, 0, addr,
> + if (bo)
> + xe_vm_bind_async(fd, vm, bind_exec_queues[0], bo, 0, addr,
> + bo_size, sync, 1);
> + else
> + xe_vm_bind_userptr_async(fd, vm, bind_exec_queues[0],
> + to_user_pointer(data), addr,
> bo_size, sync, 1);
> - else
> - xe_vm_bind_userptr_async(fd, vm, bind_exec_queues[0],
> - to_user_pointer(data), addr,
> - bo_size, sync, 1);
> - }
>
> #define ONE_SEC MS_TO_NS(1000)
> xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
> @@ -343,22 +315,6 @@ igt_main
> INVALIDATE },
> { "bindexecqueue-userptr-invalidate-race", BIND_EXEC_QUEUE | USERPTR |
> INVALIDATE | RACE },
> - { "basic-imm", IMMEDIATE },
> - { "userptr-imm", IMMEDIATE | USERPTR },
> - { "rebind-imm", IMMEDIATE | REBIND },
> - { "userptr-rebind-imm", IMMEDIATE | USERPTR | REBIND },
> - { "userptr-invalidate-imm", IMMEDIATE | USERPTR | INVALIDATE },
> - { "userptr-invalidate-race-imm", IMMEDIATE | USERPTR |
> - INVALIDATE | RACE },
> - { "bindexecqueue-imm", IMMEDIATE | BIND_EXEC_QUEUE },
> - { "bindexecqueue-userptr-imm", IMMEDIATE | BIND_EXEC_QUEUE | USERPTR },
> - { "bindexecqueue-rebind-imm", IMMEDIATE | BIND_EXEC_QUEUE | REBIND },
> - { "bindexecqueue-userptr-rebind-imm", IMMEDIATE | BIND_EXEC_QUEUE |
> - USERPTR | REBIND },
> - { "bindexecqueue-userptr-invalidate-imm", IMMEDIATE | BIND_EXEC_QUEUE |
> - USERPTR | INVALIDATE },
> - { "bindexecqueue-userptr-invalidate-race-imm", IMMEDIATE |
> - BIND_EXEC_QUEUE | USERPTR | INVALIDATE | RACE },
> { "basic-prefetch", PREFETCH },
> { "userptr-prefetch", PREFETCH | USERPTR },
> { "rebind-prefetch", PREFETCH | REBIND },
> diff --git a/tests/intel/xe_exec_queue_property.c b/tests/intel/xe_exec_queue_property.c
> index 53e08fb0e..bc30e8803 100644
> --- a/tests/intel/xe_exec_queue_property.c
> +++ b/tests/intel/xe_exec_queue_property.c
> @@ -18,9 +18,7 @@
> *
> * arg[1]:
> *
> - * @preempt_timeout_us: preempt timeout us
> * @timeslice_duration_us: timeslice duration us
> - * @job_timeout_ms: job timeout ms
> */
>
> #include <dirent.h>
> @@ -42,11 +40,7 @@
>
> static int get_property_name(const char *property)
> {
> - if (strstr(property, "preempt"))
> - return DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT;
> - else if (strstr(property, "job_timeout"))
> - return DRM_XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT;
> - else if (strstr(property, "timeslice"))
> + if (strstr(property, "timeslice"))
> return DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE;
> else
> return -1;
> @@ -174,6 +168,46 @@ static void basic_get_property(int xe)
> xe_vm_destroy(xe, vm);
> }
>
> +/**
> + * SUBTEST: invalid-property
> + * Description: Ensure only valid values for property are accepted.
> + * Test category: functionality test
> + */
> +static void invalid_property(int xe)
> +{
> + uint32_t valid_property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY;
> + struct drm_xe_engine_class_instance instance = {
> + .engine_class = DRM_XE_ENGINE_CLASS_VM_BIND,
> + };
> + struct drm_xe_ext_set_property ext = {
> + .base.next_extension = 0,
> + .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> + .property = valid_property,
> + .value = 1,
> + };
> +
> + struct drm_xe_exec_queue_create create = {
> + .extensions = to_user_pointer(&ext),
> + .width = 1,
> + .num_placements = 1,
> + .instances = to_user_pointer(&instance),
> + .vm_id = xe_vm_create(xe, 0, 0),
> + };
> + /* Correct value should pass */
> + igt_assert_eq(igt_ioctl(xe, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create), 0);
> +
> + for (int i = 2; i < 16; i++ ) {
> + if (i == 3)
hmm... this is tricky because it will break on the first property we re-introduce.
what about making this test part of
./tests/intel-ci/xe-fast-feedback.testlist as well so we can catch this soon.
Probably also good a comment about this around here or in the doc above.
With the modifications to the fast-feedback, feel free to use
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> + continue;
> + ext.property = i;
> + do_ioctl_err(xe, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create, EINVAL);
> + }
> +
> + /* Correct value should still pass */
> + ext.property = valid_property;
> + igt_assert_eq(igt_ioctl(xe, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create), 0);
> +}
> +
> igt_main
> {
> static const struct {
> @@ -181,9 +215,7 @@ igt_main
> void (*fn)(int, int, const char **);
> } tests[] = {{"property-min-max", test_property_min_max}, {} };
>
> - const char *property[][3] = { {"preempt_timeout_us", "preempt_timeout_min", "preempt_timeout_max"},
> - {"timeslice_duration_us", "timeslice_duration_min", "timeslice_duration_max"},
> - {"job_timeout_ms", "job_timeout_min", "job_timeout_max"},
> + const char *property[][3] = { {"timeslice_duration_us", "timeslice_duration_min", "timeslice_duration_max"},
> };
> int count = sizeof(property) / sizeof(property[0]);
> int sys_fd;
> @@ -257,6 +289,9 @@ igt_main
> igt_subtest("basic-get-property")
> basic_get_property(xe);
>
> + igt_subtest("invalid-property")
> + invalid_property(xe);
> +
> igt_fixture {
> xe_device_put(xe);
> drm_close_driver(xe);
> diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
> index a9206d7d2..a39e5860e 100644
> --- a/tests/intel/xe_exec_reset.c
> +++ b/tests/intel/xe_exec_reset.c
> @@ -93,22 +93,14 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci)
>
> #define MAX_N_EXECQUEUES 16
> #define MAX_INSTANCE 9
> -#define CANCEL (0x1 << 0)
> -#define EXEC_QUEUE_RESET (0x1 << 1)
> -#define GT_RESET (0x1 << 2)
> -#define CLOSE_FD (0x1 << 3)
> -#define CLOSE_EXEC_QUEUES (0x1 << 4)
> -#define VIRTUAL (0x1 << 5)
> -#define PARALLEL (0x1 << 6)
> -#define CAT_ERROR (0x1 << 7)
> +#define GT_RESET (0x1 << 0)
> +#define CLOSE_FD (0x1 << 1)
> +#define CLOSE_EXEC_QUEUES (0x1 << 2)
> +#define VIRTUAL (0x1 << 3)
> +#define PARALLEL (0x1 << 4)
> +#define CAT_ERROR (0x1 << 5)
>
> /**
> - * SUBTEST: %s-cancel
> - * Description: Test %arg[1] cancel
> - *
> - * SUBTEST: %s-execqueue-reset
> - * Description: Test %arg[1] exec_queue reset
> - *
> * SUBTEST: %s-cat-error
> * Description: Test %arg[1] cat error
> *
> @@ -185,18 +177,6 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> data = xe_bo_map(fd, bo, bo_size);
>
> for (i = 0; i < n_exec_queues; i++) {
> - struct drm_xe_ext_set_property job_timeout = {
> - .base.next_extension = 0,
> - .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> - .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT,
> - .value = 50,
> - };
> - struct drm_xe_ext_set_property preempt_timeout = {
> - .base.next_extension = 0,
> - .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> - .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT,
> - .value = 1000,
> - };
> struct drm_xe_exec_queue_create create = {
> .vm_id = vm,
> .width = flags & PARALLEL ? num_placements : 1,
> @@ -204,11 +184,6 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> .instances = to_user_pointer(eci),
> };
>
> - if (flags & CANCEL)
> - create.extensions = to_user_pointer(&job_timeout);
> - else if (flags & EXEC_QUEUE_RESET)
> - create.extensions = to_user_pointer(&preempt_timeout);
> -
> igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE,
> &create), 0);
> exec_queues[i] = create.exec_queue_id;
> @@ -219,8 +194,7 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> sync[0].handle = syncobj_create(fd, 0);
> xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
>
> - if (flags & VIRTUAL && (flags & CAT_ERROR || flags & EXEC_QUEUE_RESET ||
> - flags & GT_RESET))
> + if (flags & VIRTUAL && (flags & CAT_ERROR || flags & GT_RESET))
> bad_batches = num_placements;
>
> for (i = 0; i < n_execs; i++) {
> @@ -309,12 +283,6 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> }
>
> /**
> - * SUBTEST: cancel
> - * Description: Test cancel
> - *
> - * SUBTEST: execqueue-reset
> - * Description: Test exec_queue reset
> - *
> * SUBTEST: cat-error
> * Description: Test cat error
> *
> @@ -374,26 +342,7 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
> data = xe_bo_map(fd, bo, bo_size);
>
> for (i = 0; i < n_exec_queues; i++) {
> - struct drm_xe_ext_set_property job_timeout = {
> - .base.next_extension = 0,
> - .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> - .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT,
> - .value = 50,
> - };
> - struct drm_xe_ext_set_property preempt_timeout = {
> - .base.next_extension = 0,
> - .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> - .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT,
> - .value = 1000,
> - };
> - uint64_t ext = 0;
> -
> - if (flags & CANCEL)
> - ext = to_user_pointer(&job_timeout);
> - else if (flags & EXEC_QUEUE_RESET)
> - ext = to_user_pointer(&preempt_timeout);
> -
> - exec_queues[i] = xe_exec_queue_create(fd, vm, eci, ext);
> + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
> syncobjs[i] = syncobj_create(fd, 0);
> };
>
> @@ -478,9 +427,6 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
> }
>
> /**
> - * SUBTEST: cm-execqueue-reset
> - * Description: Test compute mode exec_queue reset
> - *
> * SUBTEST: cm-cat-error
> * Description: Test compute mode cat-error
> *
> @@ -543,20 +489,7 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
> memset(data, 0, bo_size);
>
> for (i = 0; i < n_exec_queues; i++) {
> - struct drm_xe_ext_set_property preempt_timeout = {
> - .base.next_extension = 0,
> - .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> - .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT,
> - .value = 1000,
> - };
> - uint64_t ext = 0;
> -
> - if (flags & EXEC_QUEUE_RESET)
> - ext = to_user_pointer(&preempt_timeout);
> - else
> - ext = 0;
> -
> - exec_queues[i] = xe_exec_queue_create(fd, vm, eci, ext);
> + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
> };
>
> sync[0].addr = to_user_pointer(&data[0].vm_sync);
> @@ -803,14 +736,6 @@ igt_main
> xe_for_each_engine(fd, hwe)
> test_spin(fd, hwe);
>
> - igt_subtest("cancel")
> - xe_for_each_engine(fd, hwe)
> - test_legacy_mode(fd, hwe, 1, 1, CANCEL);
> -
> - igt_subtest("execqueue-reset")
> - xe_for_each_engine(fd, hwe)
> - test_legacy_mode(fd, hwe, 2, 2, EXEC_QUEUE_RESET);
> -
> igt_subtest("cat-error")
> xe_for_each_engine(fd, hwe)
> test_legacy_mode(fd, hwe, 2, 2, CAT_ERROR);
> @@ -832,10 +757,6 @@ igt_main
> test_legacy_mode(-1, hwe, 16, 256, CLOSE_FD |
> CLOSE_EXEC_QUEUES);
>
> - igt_subtest("cm-execqueue-reset")
> - xe_for_each_engine(fd, hwe)
> - test_compute_mode(fd, hwe, 2, 2, EXEC_QUEUE_RESET);
> -
> igt_subtest("cm-cat-error")
> xe_for_each_engine(fd, hwe)
> test_compute_mode(fd, hwe, 2, 2, CAT_ERROR);
> @@ -858,19 +779,6 @@ igt_main
> CLOSE_EXEC_QUEUES);
>
> for (const struct section *s = sections; s->name; s++) {
> - igt_subtest_f("%s-cancel", s->name)
> - xe_for_each_gt(fd, gt)
> - xe_for_each_engine_class(class)
> - test_balancer(fd, gt, class, 1, 1,
> - CANCEL | s->flags);
> -
> - igt_subtest_f("%s-execqueue-reset", s->name)
> - xe_for_each_gt(fd, gt)
> - xe_for_each_engine_class(class)
> - test_balancer(fd, gt, class, MAX_INSTANCE + 1,
> - MAX_INSTANCE + 1,
> - EXEC_QUEUE_RESET | s->flags);
> -
> igt_subtest_f("%s-cat-error", s->name)
> xe_for_each_gt(fd, gt)
> xe_for_each_engine_class(class)
> diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
> index 1b2623045..55907e2b3 100644
> --- a/tests/intel/xe_exec_threads.c
> +++ b/tests/intel/xe_exec_threads.c
> @@ -518,18 +518,7 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
>
> memset(sync_all, 0, sizeof(sync_all));
> for (i = 0; i < n_exec_queues; i++) {
> - struct drm_xe_ext_set_property preempt_timeout = {
> - .base.next_extension = 0,
> - .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> - .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT,
> - .value = 1000,
> - };
> - uint64_t ext = to_user_pointer(&preempt_timeout);
> -
> - if (flags & HANG && i == hang_exec_queue)
> - exec_queues[i] = xe_exec_queue_create(fd, vm, eci, ext);
> - else
> - exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
> + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
> if (flags & BIND_EXEC_QUEUE)
> bind_exec_queues[i] = xe_bind_exec_queue_create(fd, vm,
> 0);
> diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
> index fe667e64d..7c061c497 100644
> --- a/tests/intel/xe_vm.c
> +++ b/tests/intel/xe_vm.c
> @@ -1761,6 +1761,72 @@ test_mmap_style_bind(int fd, struct drm_xe_engine_class_instance *eci,
> xe_vm_destroy(fd, vm);
> }
>
> +/**
> + * SUBTEST: bind-flag-invalid
> + * Description:
> + * Ensure invalid bind flags are rejected.
> + * Functionality: bind
> + * Test category: negative test
> + */
> +static void bind_flag_invalid(int fd)
> +{
> + uint32_t bo, bo_size = xe_get_default_alignment(fd);
> + uint64_t addr = 0x1a0000;
> + uint32_t vm;
> + struct drm_xe_vm_bind bind;
> + struct drm_xe_sync sync[1] = {
> + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
> + };
> +
> + vm = xe_vm_create(fd, 0, 0);
> + bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, 0), 0);
> + sync[0].handle = syncobj_create(fd, 0);
> +
> + memset(&bind, 0, sizeof(bind));
> + bind.vm_id = vm;
> + bind.num_binds = 1;
> + bind.bind.obj = bo;
> + bind.bind.range = bo_size;
> + bind.bind.addr = addr;
> + bind.bind.op = DRM_XE_VM_BIND_OP_MAP;
> + bind.num_syncs = 1;
> + bind.syncs = (uintptr_t)sync;
> +
> + /* Using valid flags should work */
> + bind.bind.flags = 0;
> + igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + syncobj_reset(fd, &sync[0].handle, 1);
> +
> + bind.bind.flags = DRM_XE_VM_BIND_FLAG_NULL;
> + bind.bind.obj = 0;
> + igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + syncobj_reset(fd, &sync[0].handle, 1);
> + bind.bind.obj = bo;
> +
> + /* Using invalid flags should not work */
> + bind.bind.flags = 1 << 0;
> + igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
> + do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL);
> +
> + bind.bind.flags = 1 << 1;
> + igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
> + do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL);
> +
> + bind.bind.flags = 1 << 3;
> + igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
> + do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL);
> +
> + /* Using valid flags should still work */
> + bind.bind.flags = 0;
> + igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> +
> + syncobj_destroy(fd, sync[0].handle);
> + xe_vm_destroy(fd, vm);
> +}
> +
> igt_main
> {
> struct drm_xe_engine_class_instance *hwe, *hwe_non_copy = NULL;
> @@ -1892,6 +1958,9 @@ igt_main
> igt_subtest("userptr-invalid")
> userptr_invalid(fd);
>
> + igt_subtest("bind-flag-invalid")
> + bind_flag_invalid(fd);
> +
> igt_subtest("shared-pte-page")
> xe_for_each_engine(fd, hwe)
> shared_pte_page(fd, hwe, 4,
> diff --git a/tests/meson.build b/tests/meson.build
> index d107d16fa..02cbc3780 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -274,7 +274,6 @@ intel_kms_progs = [
> ]
>
> intel_xe_progs = [
> - 'xe_access_counter',
> 'xe_ccs',
> 'xe_create',
> 'xe_compute',
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-02-20 21:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-16 14:18 [PATCH i-g-t] drm-uapi/xe: Remove unused flags Francois Dugast
2024-02-16 15:19 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-02-16 15:21 ` ✗ CI.xeBAT: failure " Patchwork
2024-02-17 3:06 ` ✗ Fi.CI.IGT: " Patchwork
2024-02-20 21:34 ` [PATCH i-g-t] " Rodrigo Vivi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox