* [igt-dev] [PATCH i-g-t v4 0/4] lib/xe_spin: introduced fixed duration xe_spin
@ 2023-09-08 12:54 Marcin Bernatowicz
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 1/4] lib/xe_spin: xe_spin_opts for xe_spin initialization Marcin Bernatowicz
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2023-09-08 12:54 UTC (permalink / raw)
To: igt-dev
Introduced struct xe_spin_opts for xe_spin initialization,
adjusted tests to new xe_spin_init signature.
Extended spinner with fixed duration capability. It allows
to prepare fixed duration (ex. 10ms) workloads and take workloads/second
measurements, a handy utility for scheduling tests.
Basic test for xe_spin with fixed duration.
v2: - added asserts in div64_u64_round_up, duration_to_ctx_ticks,
simplified loop_addr (Zbyszek)
- added xe_spin_init_opts macro (Zbyszek)
- corrected patch title (Kamil)
- Added assert for expected spinner duration. (Zbyszek)
A median of 5x100ms spins duration is computed, which should
satisfy CI runs, although better accuracy is achieved with
disabled logging (echo 0 > /sys/module/drm/parameters/debug).
v3: - extracted xe_spin_opts to separate patch (Kamil)
- div64_u64_round_up assert on overflow (Kamil)
- enum indentation cleanup in xe_spin.c (Kamil)
v4: - checkpatch fixes (Kamil)
- corrected variables readability in xe_spin_fixed_duration (Zbyszek)
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Marcin Bernatowicz (4):
lib/xe_spin: xe_spin_opts for xe_spin initialization
lib/xe_spin: fixed duration xe_spin capability
tests/xe_spin_batch: spin-fixed-duration
lib/xe_spin.c: fixed checkpatch issue
lib/xe/xe_spin.c | 126 ++++++++++++++++++++++++++++-----
lib/xe/xe_spin.h | 27 ++++++-
tests/intel/xe_dma_buf_sync.c | 6 +-
tests/intel/xe_exec_balancer.c | 9 ++-
tests/intel/xe_exec_reset.c | 24 ++++---
tests/intel/xe_exec_threads.c | 7 +-
tests/intel/xe_spin_batch.c | 72 +++++++++++++++++++
tests/intel/xe_vm.c | 7 +-
8 files changed, 233 insertions(+), 45 deletions(-)
--
2.30.2
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v4 1/4] lib/xe_spin: xe_spin_opts for xe_spin initialization
2023-09-08 12:54 [igt-dev] [PATCH i-g-t v4 0/4] lib/xe_spin: introduced fixed duration xe_spin Marcin Bernatowicz
@ 2023-09-08 12:54 ` Marcin Bernatowicz
2023-09-11 11:50 ` Zbigniew Kempczyński
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 2/4] lib/xe_spin: fixed duration xe_spin capability Marcin Bernatowicz
` (5 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Marcin Bernatowicz @ 2023-09-08 12:54 UTC (permalink / raw)
To: igt-dev
Introduced struct xe_spin_opts for xe_spin initialization,
adjusted tests to new xe_spin_init signature.
Added xe_spin_init_opts macro (Zbyszek).
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
lib/xe/xe_spin.c | 28 ++++++++++------------------
lib/xe/xe_spin.h | 19 ++++++++++++++++++-
tests/intel/xe_dma_buf_sync.c | 6 +++---
tests/intel/xe_exec_balancer.c | 9 ++++-----
tests/intel/xe_exec_reset.c | 24 ++++++++++++++----------
tests/intel/xe_exec_threads.c | 7 ++++---
tests/intel/xe_vm.c | 7 ++++---
7 files changed, 57 insertions(+), 43 deletions(-)
diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c
index 7113972ee..27f837ef9 100644
--- a/lib/xe/xe_spin.c
+++ b/lib/xe/xe_spin.c
@@ -19,17 +19,13 @@
/**
* xe_spin_init:
* @spin: pointer to mapped bo in which spinner code will be written
- * @addr: offset of spinner within vm
- * @preempt: allow spinner to be preempted or not
+ * @opts: pointer to spinner initialization options
*/
-void xe_spin_init(struct xe_spin *spin, uint64_t addr, bool preempt)
+void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
{
- uint64_t batch_offset = (char *)&spin->batch - (char *)spin;
- uint64_t batch_addr = addr + batch_offset;
- uint64_t start_offset = (char *)&spin->start - (char *)spin;
- uint64_t start_addr = addr + start_offset;
- uint64_t end_offset = (char *)&spin->end - (char *)spin;
- uint64_t end_addr = addr + end_offset;
+ uint64_t loop_addr = opts->addr + offsetof(struct xe_spin, batch);
+ uint64_t start_addr = opts->addr + offsetof(struct xe_spin, start);
+ uint64_t end_addr = opts->addr + offsetof(struct xe_spin, end);
int b = 0;
spin->start = 0;
@@ -40,7 +36,7 @@ void xe_spin_init(struct xe_spin *spin, uint64_t addr, bool preempt)
spin->batch[b++] = start_addr >> 32;
spin->batch[b++] = 0xc0ffee;
- if (preempt)
+ if (opts->preempt)
spin->batch[b++] = (0x5 << 23);
spin->batch[b++] = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | 2;
@@ -49,8 +45,8 @@ void xe_spin_init(struct xe_spin *spin, uint64_t addr, bool preempt)
spin->batch[b++] = end_addr >> 32;
spin->batch[b++] = MI_BATCH_BUFFER_START | 1 << 8 | 1;
- spin->batch[b++] = batch_addr;
- spin->batch[b++] = batch_addr >> 32;
+ spin->batch[b++] = loop_addr;
+ spin->batch[b++] = loop_addr >> 32;
igt_assert(b <= ARRAY_SIZE(spin->batch));
}
@@ -133,11 +129,7 @@ xe_spin_create(int fd, const struct igt_spin_factory *opt)
addr = intel_allocator_alloc_with_strategy(ahnd, spin->handle, bo_size, 0, ALLOC_STRATEGY_LOW_TO_HIGH);
xe_vm_bind_sync(fd, spin->vm, spin->handle, 0, addr, bo_size);
- if (!(opt->flags & IGT_SPIN_NO_PREEMPTION))
- xe_spin_init(xe_spin, addr, true);
- else
- xe_spin_init(xe_spin, addr, false);
-
+ xe_spin_init_opts(xe_spin, .addr = addr, .preempt = !(opt->flags & IGT_SPIN_NO_PREEMPTION));
exec.exec_queue_id = spin->engine;
exec.address = addr;
sync.handle = spin->syncobj;
@@ -219,7 +211,7 @@ void xe_cork_init(int fd, struct drm_xe_engine_class_instance *hwe,
exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
syncobj = syncobj_create(fd, 0);
- xe_spin_init(spin, addr, true);
+ xe_spin_init_opts(spin, .addr = addr, .preempt = true);
exec.exec_queue_id = exec_queue;
exec.address = addr;
sync.handle = syncobj;
diff --git a/lib/xe/xe_spin.h b/lib/xe/xe_spin.h
index c84db175d..9f1d33294 100644
--- a/lib/xe/xe_spin.h
+++ b/lib/xe/xe_spin.h
@@ -15,6 +15,18 @@
#include "xe_query.h"
#include "lib/igt_dummyload.h"
+/** struct xe_spin_opts
+ *
+ * @addr: offset of spinner within vm
+ * @preempt: allow spinner to be preempted or not
+ *
+ * Used to initialize struct xe_spin spinner behavior.
+ */
+struct xe_spin_opts {
+ uint64_t addr;
+ bool preempt;
+};
+
/* Mapped GPU object */
struct xe_spin {
uint32_t batch[16];
@@ -22,8 +34,13 @@ struct xe_spin {
uint32_t start;
uint32_t end;
};
+
igt_spin_t *xe_spin_create(int fd, const struct igt_spin_factory *opt);
-void xe_spin_init(struct xe_spin *spin, uint64_t addr, bool preempt);
+void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts);
+
+#define xe_spin_init_opts(fd, ...) \
+ xe_spin_init(fd, &((struct xe_spin_opts){__VA_ARGS__}))
+
bool xe_spin_started(struct xe_spin *spin);
void xe_spin_sync_wait(int fd, struct igt_spin *spin);
void xe_spin_wait_started(struct xe_spin *spin);
diff --git a/tests/intel/xe_dma_buf_sync.c b/tests/intel/xe_dma_buf_sync.c
index 8c400c8fd..dd76f0b96 100644
--- a/tests/intel/xe_dma_buf_sync.c
+++ b/tests/intel/xe_dma_buf_sync.c
@@ -147,7 +147,6 @@ test_export_dma_buf(struct drm_xe_engine_class_instance *hwe0,
uint64_t sdi_offset = (char *)&data[i]->data - (char *)data[i];
uint64_t sdi_addr = addr + sdi_offset;
uint64_t spin_offset = (char *)&data[i]->spin - (char *)data[i];
- uint64_t spin_addr = addr + spin_offset;
struct drm_xe_sync sync[2] = {
{ .flags = DRM_XE_SYNC_SYNCOBJ, },
{ .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL, },
@@ -156,14 +155,15 @@ test_export_dma_buf(struct drm_xe_engine_class_instance *hwe0,
.num_batch_buffer = 1,
.syncs = to_user_pointer(sync),
};
+ struct xe_spin_opts spin_opts = { .addr = addr + spin_offset, .preempt = true };
uint32_t syncobj;
int b = 0;
int sync_fd;
/* Write spinner on FD[0] */
- xe_spin_init(&data[i]->spin, spin_addr, true);
+ xe_spin_init(&data[i]->spin, &spin_opts);
exec.exec_queue_id = exec_queue[0];
- exec.address = spin_addr;
+ exec.address = spin_opts.addr;
xe_exec(fd[0], &exec);
/* Export prime BO as sync file and veify business */
diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c
index f571f13d9..3fb59d75f 100644
--- a/tests/intel/xe_exec_balancer.c
+++ b/tests/intel/xe_exec_balancer.c
@@ -53,6 +53,7 @@ static void test_all_active(int fd, int gt, int class)
struct {
struct xe_spin spin;
} *data;
+ struct xe_spin_opts spin_opts = { .preempt = false };
struct drm_xe_engine_class_instance *hwe;
struct drm_xe_engine_class_instance eci[MAX_INSTANCE];
int i, num_placements = 0;
@@ -91,16 +92,14 @@ static void test_all_active(int fd, int gt, int class)
xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
for (i = 0; i < num_placements; i++) {
- uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
- uint64_t spin_addr = addr + spin_offset;
-
- xe_spin_init(&data[i].spin, spin_addr, false);
+ spin_opts.addr = addr + (char *)&data[i].spin - (char *)data;
+ xe_spin_init(&data[i].spin, &spin_opts);
sync[0].flags &= ~DRM_XE_SYNC_SIGNAL;
sync[1].flags |= DRM_XE_SYNC_SIGNAL;
sync[1].handle = syncobjs[i];
exec.exec_queue_id = exec_queues[i];
- exec.address = spin_addr;
+ exec.address = spin_opts.addr;
xe_exec(fd, &exec);
xe_spin_wait_started(&data[i].spin);
}
diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
index a2d33baf1..be6bbada6 100644
--- a/tests/intel/xe_exec_reset.c
+++ b/tests/intel/xe_exec_reset.c
@@ -44,6 +44,7 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci)
size_t bo_size;
uint32_t bo = 0;
struct xe_spin *spin;
+ struct xe_spin_opts spin_opts = { .addr = addr, .preempt = false };
vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
bo_size = sizeof(*spin);
@@ -60,7 +61,7 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci)
sync[0].handle = syncobj_create(fd, 0);
xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
- xe_spin_init(spin, addr, false);
+ xe_spin_init(spin, &spin_opts);
sync[0].flags &= ~DRM_XE_SYNC_SIGNAL;
sync[1].flags |= DRM_XE_SYNC_SIGNAL;
@@ -165,6 +166,7 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
uint64_t pad;
uint32_t data;
} *data;
+ struct xe_spin_opts spin_opts = { .preempt = false };
struct drm_xe_engine_class_instance *hwe;
struct drm_xe_engine_class_instance eci[MAX_INSTANCE];
int i, j, b, num_placements = 0, bad_batches = 1;
@@ -236,7 +238,6 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
uint64_t batch_addr = base_addr + batch_offset;
uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
- uint64_t spin_addr = base_addr + spin_offset;
uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
uint64_t sdi_addr = base_addr + sdi_offset;
uint64_t exec_addr;
@@ -247,8 +248,9 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
batches[j] = batch_addr;
if (i < bad_batches) {
- xe_spin_init(&data[i].spin, spin_addr, false);
- exec_addr = spin_addr;
+ spin_opts.addr = base_addr + spin_offset;
+ xe_spin_init(&data[i].spin, &spin_opts);
+ exec_addr = spin_opts.addr;
} else {
b = 0;
data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
@@ -368,6 +370,7 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
uint64_t pad;
uint32_t data;
} *data;
+ struct xe_spin_opts spin_opts = { .preempt = false };
int i, b;
igt_assert(n_exec_queues <= MAX_N_EXECQUEUES);
@@ -417,15 +420,15 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
uint64_t batch_addr = base_addr + batch_offset;
uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
- uint64_t spin_addr = base_addr + spin_offset;
uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
uint64_t sdi_addr = base_addr + sdi_offset;
uint64_t exec_addr;
int e = i % n_exec_queues;
if (!i) {
- xe_spin_init(&data[i].spin, spin_addr, false);
- exec_addr = spin_addr;
+ spin_opts.addr = base_addr + spin_offset;
+ xe_spin_init(&data[i].spin, &spin_opts);
+ exec_addr = spin_opts.addr;
} else {
b = 0;
data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
@@ -539,6 +542,7 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
uint64_t exec_sync;
uint32_t data;
} *data;
+ struct xe_spin_opts spin_opts = { .preempt = false };
int i, b;
igt_assert(n_exec_queues <= MAX_N_EXECQUEUES);
@@ -593,15 +597,15 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
uint64_t batch_addr = base_addr + batch_offset;
uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
- uint64_t spin_addr = base_addr + spin_offset;
uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
uint64_t sdi_addr = base_addr + sdi_offset;
uint64_t exec_addr;
int e = i % n_exec_queues;
if (!i) {
- xe_spin_init(&data[i].spin, spin_addr, false);
- exec_addr = spin_addr;
+ spin_opts.addr = base_addr + spin_offset;
+ xe_spin_init(&data[i].spin, &spin_opts);
+ exec_addr = spin_opts.addr;
} else {
b = 0;
data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index e64c1639a..ff4ebc280 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -486,6 +486,7 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
uint64_t pad;
uint32_t data;
} *data;
+ struct xe_spin_opts spin_opts = { .preempt = false };
int i, j, b, hang_exec_queue = n_exec_queues / 2;
bool owns_vm = false, owns_fd = false;
@@ -562,15 +563,15 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
uint64_t batch_addr = addr + batch_offset;
uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
- uint64_t spin_addr = addr + spin_offset;
uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
uint64_t sdi_addr = addr + sdi_offset;
uint64_t exec_addr;
int e = i % n_exec_queues;
if (flags & HANG && e == hang_exec_queue && i == e) {
- xe_spin_init(&data[i].spin, spin_addr, false);
- exec_addr = spin_addr;
+ spin_opts.addr = addr + spin_offset;
+ xe_spin_init(&data[i].spin, &spin_opts);
+ exec_addr = spin_opts.addr;
} else {
b = 0;
data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
index 5453f10c4..43d6dd1fa 100644
--- a/tests/intel/xe_vm.c
+++ b/tests/intel/xe_vm.c
@@ -737,6 +737,7 @@ test_bind_execqueues_independent(int fd, struct drm_xe_engine_class_instance *ec
uint64_t pad;
uint32_t data;
} *data;
+ struct xe_spin_opts spin_opts = { .preempt = true };
int i, b;
vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
@@ -765,14 +766,14 @@ test_bind_execqueues_independent(int fd, struct drm_xe_engine_class_instance *ec
uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
uint64_t sdi_addr = addr + sdi_offset;
uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
- uint64_t spin_addr = addr + spin_offset;
int e = i;
if (i == 0) {
/* Cork 1st exec_queue with a spinner */
- xe_spin_init(&data[i].spin, spin_addr, true);
+ spin_opts.addr = addr + spin_offset;
+ xe_spin_init(&data[i].spin, &spin_opts);
exec.exec_queue_id = exec_queues[e];
- exec.address = spin_addr;
+ exec.address = spin_opts.addr;
sync[0].flags &= ~DRM_XE_SYNC_SIGNAL;
sync[1].flags |= DRM_XE_SYNC_SIGNAL;
sync[1].handle = syncobjs[e];
--
2.30.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v4 2/4] lib/xe_spin: fixed duration xe_spin capability
2023-09-08 12:54 [igt-dev] [PATCH i-g-t v4 0/4] lib/xe_spin: introduced fixed duration xe_spin Marcin Bernatowicz
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 1/4] lib/xe_spin: xe_spin_opts for xe_spin initialization Marcin Bernatowicz
@ 2023-09-08 12:54 ` Marcin Bernatowicz
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 3/4] tests/xe_spin_batch: spin-fixed-duration Marcin Bernatowicz
` (4 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2023-09-08 12:54 UTC (permalink / raw)
To: igt-dev
Extended spinner with fixed duration capability. It allows
to prepare fixed duration (ex. 10ms) workloads and take workloads/second
measurements, a handy utility for scheduling tests.
v2: - added asserts in div64_u64_round_up, duration_to_ctx_ticks,
simplified loop_addr (Zbyszek)
- corrected patch title (Kamil)
v3: - div64_u64_round_up assert on overflow (Kamil)
- enum indentation cleanup in xe_spin.c (Kamil)
v4: - fixed checkpatch issues (Kamil)
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
lib/xe/xe_spin.c | 97 +++++++++++++++++++++++++++++++++++++++++++++++-
lib/xe/xe_spin.h | 8 +++-
2 files changed, 103 insertions(+), 2 deletions(-)
diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c
index 27f837ef9..d8e2c07aa 100644
--- a/lib/xe/xe_spin.c
+++ b/lib/xe/xe_spin.c
@@ -16,6 +16,50 @@
#include "xe_ioctl.h"
#include "xe_spin.h"
+static uint32_t read_timestamp_frequency(int fd, int gt_id)
+{
+ struct xe_device *dev = xe_device_get(fd);
+
+ igt_assert(dev && dev->gts && dev->gts->num_gt);
+ igt_assert(gt_id >= 0 && gt_id <= dev->gts->num_gt);
+
+ return dev->gts->gts[gt_id].clock_freq;
+}
+
+static uint64_t div64_u64_round_up(const uint64_t x, const uint64_t y)
+{
+ igt_assert(y > 0);
+ igt_assert_lte_u64(x, UINT64_MAX - (y - 1));
+
+ return (x + y - 1) / y;
+}
+
+/**
+ * duration_to_ctx_ticks:
+ * @fd: opened device
+ * @gt_id: tile id
+ * @duration_ns: duration in nanoseconds to be converted to context timestamp ticks
+ * @return: duration converted to context timestamp ticks.
+ */
+uint32_t duration_to_ctx_ticks(int fd, int gt_id, uint64_t duration_ns)
+{
+ uint32_t f = read_timestamp_frequency(fd, gt_id);
+ uint64_t ctx_ticks = div64_u64_round_up(duration_ns * f, NSEC_PER_SEC);
+
+ igt_assert_lt_u64(ctx_ticks, XE_SPIN_MAX_CTX_TICKS);
+
+ return ctx_ticks;
+}
+
+#define MI_SRM_CS_MMIO (1 << 19)
+#define MI_LRI_CS_MMIO (1 << 19)
+#define MI_LRR_DST_CS_MMIO (1 << 19)
+#define MI_LRR_SRC_CS_MMIO (1 << 18)
+#define CTX_TIMESTAMP 0x3a8
+#define CS_GPR(x) (0x600 + 8 * (x))
+
+enum { START_TS, NOW_TS };
+
/**
* xe_spin_init:
* @spin: pointer to mapped bo in which spinner code will be written
@@ -23,13 +67,28 @@
*/
void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
{
- uint64_t loop_addr = opts->addr + offsetof(struct xe_spin, batch);
+ uint64_t loop_addr;
uint64_t start_addr = opts->addr + offsetof(struct xe_spin, start);
uint64_t end_addr = opts->addr + offsetof(struct xe_spin, end);
+ uint64_t ticks_delta_addr = opts->addr + offsetof(struct xe_spin, ticks_delta);
+ uint64_t pad_addr = opts->addr + offsetof(struct xe_spin, pad);
int b = 0;
spin->start = 0;
spin->end = 0xffffffff;
+ spin->ticks_delta = 0;
+
+ if (opts->ctx_ticks) {
+ /* store start timestamp */
+ spin->batch[b++] = MI_LOAD_REGISTER_IMM(1) | MI_LRI_CS_MMIO;
+ spin->batch[b++] = CS_GPR(START_TS) + 4;
+ spin->batch[b++] = 0;
+ spin->batch[b++] = MI_LOAD_REGISTER_REG | MI_LRR_DST_CS_MMIO | MI_LRR_SRC_CS_MMIO;
+ spin->batch[b++] = CTX_TIMESTAMP;
+ spin->batch[b++] = CS_GPR(START_TS);
+ }
+
+ loop_addr = opts->addr + b * sizeof(uint32_t);
spin->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
spin->batch[b++] = start_addr;
@@ -39,6 +98,42 @@ void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
if (opts->preempt)
spin->batch[b++] = (0x5 << 23);
+ if (opts->ctx_ticks) {
+ spin->batch[b++] = MI_LOAD_REGISTER_IMM(1) | MI_LRI_CS_MMIO;
+ spin->batch[b++] = CS_GPR(NOW_TS) + 4;
+ spin->batch[b++] = 0;
+ spin->batch[b++] = MI_LOAD_REGISTER_REG | MI_LRR_DST_CS_MMIO | MI_LRR_SRC_CS_MMIO;
+ spin->batch[b++] = CTX_TIMESTAMP;
+ spin->batch[b++] = CS_GPR(NOW_TS);
+
+ /* delta = now - start; inverted to match COND_BBE */
+ spin->batch[b++] = MI_MATH(4);
+ spin->batch[b++] = MI_MATH_LOAD(MI_MATH_REG_SRCA, MI_MATH_REG(NOW_TS));
+ spin->batch[b++] = MI_MATH_LOAD(MI_MATH_REG_SRCB, MI_MATH_REG(START_TS));
+ spin->batch[b++] = MI_MATH_SUB;
+ spin->batch[b++] = MI_MATH_STOREINV(MI_MATH_REG(NOW_TS), MI_MATH_REG_ACCU);
+
+ /* Save delta for reading by COND_BBE */
+ spin->batch[b++] = MI_STORE_REGISTER_MEM | MI_SRM_CS_MMIO | 2;
+ spin->batch[b++] = CS_GPR(NOW_TS);
+ spin->batch[b++] = ticks_delta_addr;
+ spin->batch[b++] = ticks_delta_addr >> 32;
+
+ /* Delay between SRM and COND_BBE to post the writes */
+ for (int n = 0; n < 8; n++) {
+ spin->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+ spin->batch[b++] = pad_addr;
+ spin->batch[b++] = pad_addr >> 32;
+ spin->batch[b++] = 0xc0ffee;
+ }
+
+ /* Break if delta [time elapsed] > ns */
+ spin->batch[b++] = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | 2;
+ spin->batch[b++] = ~(opts->ctx_ticks);
+ spin->batch[b++] = ticks_delta_addr;
+ spin->batch[b++] = ticks_delta_addr >> 32;
+ }
+
spin->batch[b++] = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | 2;
spin->batch[b++] = 0;
spin->batch[b++] = end_addr;
diff --git a/lib/xe/xe_spin.h b/lib/xe/xe_spin.h
index 9f1d33294..5c8c45143 100644
--- a/lib/xe/xe_spin.h
+++ b/lib/xe/xe_spin.h
@@ -15,27 +15,33 @@
#include "xe_query.h"
#include "lib/igt_dummyload.h"
+#define XE_SPIN_MAX_CTX_TICKS (UINT32_MAX - 1000)
+
/** struct xe_spin_opts
*
* @addr: offset of spinner within vm
* @preempt: allow spinner to be preempted or not
+ * @ctx_ticks: number of ticks after which spinner is stopped, applied if > 0
*
* Used to initialize struct xe_spin spinner behavior.
*/
struct xe_spin_opts {
uint64_t addr;
bool preempt;
+ uint32_t ctx_ticks;
};
/* Mapped GPU object */
struct xe_spin {
- uint32_t batch[16];
+ uint32_t batch[128];
uint64_t pad;
uint32_t start;
uint32_t end;
+ uint32_t ticks_delta;
};
igt_spin_t *xe_spin_create(int fd, const struct igt_spin_factory *opt);
+uint32_t duration_to_ctx_ticks(int fd, int gt_id, uint64_t ns);
void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts);
#define xe_spin_init_opts(fd, ...) \
--
2.30.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v4 3/4] tests/xe_spin_batch: spin-fixed-duration
2023-09-08 12:54 [igt-dev] [PATCH i-g-t v4 0/4] lib/xe_spin: introduced fixed duration xe_spin Marcin Bernatowicz
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 1/4] lib/xe_spin: xe_spin_opts for xe_spin initialization Marcin Bernatowicz
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 2/4] lib/xe_spin: fixed duration xe_spin capability Marcin Bernatowicz
@ 2023-09-08 12:54 ` Marcin Bernatowicz
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 4/4] lib/xe_spin.c: fixed checkpatch issue Marcin Bernatowicz
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2023-09-08 12:54 UTC (permalink / raw)
To: igt-dev
Basic test for xe_spin with fixed duration.
v2: Added assert for expected spinner duration. (Zbyszek)
A median of 5x100ms spins duration is computed, which should
satisfy CI runs, although better accuracy is achieved with
disabled logging (echo 0 > /sys/module/drm/parameters/debug).
v3: Sorted variable declaration/definitions by length
for better readability (Zbyszek)
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
tests/intel/xe_spin_batch.c | 72 +++++++++++++++++++++++++++++++++++++
1 file changed, 72 insertions(+)
diff --git a/tests/intel/xe_spin_batch.c b/tests/intel/xe_spin_batch.c
index 9bd3dc349..47fcff641 100644
--- a/tests/intel/xe_spin_batch.c
+++ b/tests/intel/xe_spin_batch.c
@@ -1,8 +1,10 @@
#include "igt.h"
+#include "igt_syncobj.h"
#include "lib/intel_reg.h"
#include "xe_drm.h"
#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
+#include "xe/xe_spin.h"
/**
* TEST: Tests for spin batch submissons.
@@ -138,6 +140,73 @@ static void spin_all(int fd, int gt, int class)
xe_vm_destroy(fd, vm);
}
+/**
+ * SUBTEST: spin-fixed-duration
+ * Description: Basic test which validates the functionality of xe_spin with fixed duration.
+ * Run type: FULL
+ */
+static void xe_spin_fixed_duration(int fd)
+{
+ struct drm_xe_sync sync = {
+ .handle = syncobj_create(fd, 0),
+ .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ };
+ const uint64_t duration_ns = NSEC_PER_SEC / 10; /* 100ms */
+ uint64_t spin_addr;
+ uint64_t ahnd;
+ uint32_t exec_queue;
+ uint32_t vm;
+ uint32_t bo;
+ size_t bo_size;
+ struct xe_spin *spin;
+ struct timespec tv;
+ double elapsed_ms;
+ igt_stats_t stats;
+ int i;
+
+ vm = xe_vm_create(fd, 0, 0);
+ exec_queue = xe_exec_queue_create_class(fd, vm, DRM_XE_ENGINE_CLASS_COPY);
+ ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
+ bo_size = ALIGN(sizeof(*spin) + xe_cs_prefetch_size(fd), xe_get_default_alignment(fd));
+ bo = xe_bo_create(fd, 0, vm, bo_size);
+ spin = xe_bo_map(fd, bo, bo_size);
+ spin_addr = intel_allocator_alloc_with_strategy(ahnd, bo, bo_size, 0, ALLOC_STRATEGY_LOW_TO_HIGH);
+ xe_vm_bind_sync(fd, vm, bo, 0, spin_addr, bo_size);
+ xe_spin_init_opts(spin, .addr = spin_addr,
+ .preempt = true,
+ .ctx_ticks = duration_to_ctx_ticks(fd, 0, duration_ns));
+ exec.address = spin_addr;
+ exec.exec_queue_id = exec_queue;
+
+#define NSAMPLES 5
+ igt_stats_init_with_size(&stats, NSAMPLES);
+ for (i = 0; i < NSAMPLES; ++i) {
+ igt_gettime(&tv);
+ xe_exec(fd, &exec);
+ xe_spin_wait_started(spin);
+ igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL));
+ igt_stats_push_float(&stats, igt_nsec_elapsed(&tv) * 1e-6);
+ syncobj_reset(fd, &sync.handle, 1);
+ igt_debug("i=%d %.2fms\n", i, stats.values_f[i]);
+ }
+ elapsed_ms = igt_stats_get_median(&stats);
+ igt_info("%.0fms spin took %.2fms (median)\n", duration_ns * 1e-6, elapsed_ms);
+ igt_assert(elapsed_ms < duration_ns * 1.5e-6 && elapsed_ms > duration_ns * 0.5e-6);
+
+ xe_vm_unbind_sync(fd, vm, 0, spin_addr, bo_size);
+ syncobj_destroy(fd, sync.handle);
+ gem_munmap(spin, bo_size);
+ gem_close(fd, bo);
+ xe_exec_queue_destroy(fd, exec_queue);
+ xe_vm_destroy(fd, vm);
+ put_ahnd(ahnd);
+}
+
igt_main
{
struct drm_xe_engine_class_instance *hwe;
@@ -163,6 +232,9 @@ igt_main
spin_all(fd, gt, class);
}
+ igt_subtest("spin-fixed-duration")
+ xe_spin_fixed_duration(fd);
+
igt_fixture
drm_close_driver(fd);
}
--
2.30.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v4 4/4] lib/xe_spin.c: fixed checkpatch issue
2023-09-08 12:54 [igt-dev] [PATCH i-g-t v4 0/4] lib/xe_spin: introduced fixed duration xe_spin Marcin Bernatowicz
` (2 preceding siblings ...)
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 3/4] tests/xe_spin_batch: spin-fixed-duration Marcin Bernatowicz
@ 2023-09-08 12:54 ` Marcin Bernatowicz
2023-09-08 17:10 ` Kamil Konieczny
2023-09-08 15:22 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/xe_spin: introduced fixed duration xe_spin (rev3) Patchwork
` (2 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Marcin Bernatowicz @ 2023-09-08 12:54 UTC (permalink / raw)
To: igt-dev
fixed checkpatch reported error
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
lib/xe/xe_spin.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c
index d8e2c07aa..f0d77aed3 100644
--- a/lib/xe/xe_spin.c
+++ b/lib/xe/xe_spin.c
@@ -165,7 +165,8 @@ bool xe_spin_started(struct xe_spin *spin)
*/
void xe_spin_wait_started(struct xe_spin *spin)
{
- while(!xe_spin_started(spin));
+ while (!xe_spin_started(spin))
+ ;
}
void xe_spin_end(struct xe_spin *spin)
--
2.30.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/xe_spin: introduced fixed duration xe_spin (rev3)
2023-09-08 12:54 [igt-dev] [PATCH i-g-t v4 0/4] lib/xe_spin: introduced fixed duration xe_spin Marcin Bernatowicz
` (3 preceding siblings ...)
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 4/4] lib/xe_spin.c: fixed checkpatch issue Marcin Bernatowicz
@ 2023-09-08 15:22 ` Patchwork
2023-09-08 16:23 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-09-08 20:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-09-08 15:22 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4004 bytes --]
== Series Details ==
Series: lib/xe_spin: introduced fixed duration xe_spin (rev3)
URL : https://patchwork.freedesktop.org/series/122624/
State : success
== Summary ==
CI Bug Log - changes from IGT_7476 -> IGTPW_9755
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/index.html
Participating hosts (40 -> 39)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9755 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-kbl-soraka: [PASS][1] -> [DMESG-FAIL][2] ([i915#5334] / [i915#7872])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-6:
- bat-adlp-11: [PASS][3] -> [ABORT][4] ([i915#8668])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-6.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-6.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [DMESG-FAIL][5] ([i915#5334]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- {bat-dg2-13}: [DMESG-WARN][7] ([i915#7952]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_frontbuffer_tracking@basic:
- fi-bsw-nick: [FAIL][9] ([i915#9276]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-5:
- bat-adlp-11: [ABORT][11] ([i915#8668]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-5.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-5.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872
[i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7476 -> IGTPW_9755
CI-20190529: 20190529
CI_DRM_13613: 25ec37710fd81562fd25eccebaac156d9334ff0c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9755: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/index.html
IGT_7476: 848905faf8476f4e6d77f383af1c1d7396be5764 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@drm_buddy@drm_buddy_test
+igt@drm_mm@drm_mm_test
+igt@xe_spin_batch@spin-fixed-duration
-igt@drm_buddy@drm_buddy
-igt@drm_mm@drm_mm
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/index.html
[-- Attachment #2: Type: text/html, Size: 4907 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for lib/xe_spin: introduced fixed duration xe_spin (rev3)
2023-09-08 12:54 [igt-dev] [PATCH i-g-t v4 0/4] lib/xe_spin: introduced fixed duration xe_spin Marcin Bernatowicz
` (4 preceding siblings ...)
2023-09-08 15:22 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/xe_spin: introduced fixed duration xe_spin (rev3) Patchwork
@ 2023-09-08 16:23 ` Patchwork
2023-09-08 20:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-09-08 16:23 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6172 bytes --]
== Series Details ==
Series: lib/xe_spin: introduced fixed duration xe_spin (rev3)
URL : https://patchwork.freedesktop.org/series/122624/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7476_BAT -> XEIGTPW_9755_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_9755_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-pvc-2: NOTRUN -> [SKIP][1] ([Intel XE#538]) +32 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-pvc-2: NOTRUN -> [SKIP][2] ([Intel XE#539]) +6 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#541]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [PASS][4] -> [FAIL][5] ([Intel XE#480]) +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7476/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#540]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#537]) +6 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_prop_blob@basic:
- bat-pvc-2: NOTRUN -> [SKIP][8] ([Intel XE#536])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@kms_prop_blob@basic.html
* igt@kms_psr@primary_page_flip:
- bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#535]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@kms_psr@primary_page_flip.html
* igt@xe_guc_pc@freq_range_idle:
- bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#533]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@xe_guc_pc@freq_range_idle.html
* igt@xe_huc_copy@huc_copy:
- bat-pvc-2: NOTRUN -> [SKIP][11] ([Intel XE#255])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_intel_bb@render:
- bat-pvc-2: NOTRUN -> [SKIP][12] ([Intel XE#532])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@xe_intel_bb@render.html
* igt@xe_live_ktest@migrate:
- bat-pvc-2: NOTRUN -> [SKIP][13] ([Intel XE#483]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@xe_live_ktest@migrate.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#531])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html
#### Possible fixes ####
* {igt@xe_create@create-execqueues-noleak}:
- bat-atsm-2: [FAIL][15] ([Intel XE#524]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7476/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html
* igt@xe_exec_reset@virtual-close-fd-no-exec:
- bat-pvc-2: [INCOMPLETE][17] ([Intel XE#526]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7476/bat-pvc-2/igt@xe_exec_reset@virtual-close-fd-no-exec.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/bat-pvc-2/igt@xe_exec_reset@virtual-close-fd-no-exec.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/483
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[Intel XE#526]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/526
[Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531
[Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532
[Intel XE#533]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/533
[Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535
[Intel XE#536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/536
[Intel XE#537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/537
[Intel XE#538]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/538
[Intel XE#539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/539
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/541
Build changes
-------------
* IGT: IGT_7476 -> IGTPW_9755
IGTPW_9755: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/index.html
IGT_7476: 848905faf8476f4e6d77f383af1c1d7396be5764 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-363-92bbb05964b2237a76a8a68020896bdbe0cab459: 92bbb05964b2237a76a8a68020896bdbe0cab459
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9755/index.html
[-- Attachment #2: Type: text/html, Size: 7093 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 4/4] lib/xe_spin.c: fixed checkpatch issue
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 4/4] lib/xe_spin.c: fixed checkpatch issue Marcin Bernatowicz
@ 2023-09-08 17:10 ` Kamil Konieczny
2023-09-08 17:39 ` Bernatowicz, Marcin
0 siblings, 1 reply; 11+ messages in thread
From: Kamil Konieczny @ 2023-09-08 17:10 UTC (permalink / raw)
To: igt-dev
Hi Marcin,
now checkpatch complains about subject of your change:
WARNING: A patch subject line should describe the change not the tool that found it
#4:
Subject: [PATCH i-g-t 4/4] lib/xe_spin.c: fixed checkpatch issue
so I suggest other, like: fixed code style
with that:
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Regards,
Kamil
On 2023-09-08 at 12:54:54 +0000, Marcin Bernatowicz wrote:
> fixed checkpatch reported error
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> ---
> lib/xe/xe_spin.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c
> index d8e2c07aa..f0d77aed3 100644
> --- a/lib/xe/xe_spin.c
> +++ b/lib/xe/xe_spin.c
> @@ -165,7 +165,8 @@ bool xe_spin_started(struct xe_spin *spin)
> */
> void xe_spin_wait_started(struct xe_spin *spin)
> {
> - while(!xe_spin_started(spin));
> + while (!xe_spin_started(spin))
> + ;
> }
>
> void xe_spin_end(struct xe_spin *spin)
> --
> 2.30.2
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 4/4] lib/xe_spin.c: fixed checkpatch issue
2023-09-08 17:10 ` Kamil Konieczny
@ 2023-09-08 17:39 ` Bernatowicz, Marcin
0 siblings, 0 replies; 11+ messages in thread
From: Bernatowicz, Marcin @ 2023-09-08 17:39 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, zbigniew.kempczynski, lukasz.laguna
On 9/8/2023 7:10 PM, Kamil Konieczny wrote:
> Hi Marcin,
>
> now checkpatch complains about subject of your change:
> WARNING: A patch subject line should describe the change not the tool that found it
> #4:
> Subject: [PATCH i-g-t 4/4] lib/xe_spin.c: fixed checkpatch issue
>
> so I suggest other, like: fixed code style
>
> with that:
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
> Regards,
> Kamil
sorry for that, will send corrected v5 with added one missing r-b
--
marcin
>
> On 2023-09-08 at 12:54:54 +0000, Marcin Bernatowicz wrote:
>> fixed checkpatch reported error
>>
>> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
>> ---
>> lib/xe/xe_spin.c | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c
>> index d8e2c07aa..f0d77aed3 100644
>> --- a/lib/xe/xe_spin.c
>> +++ b/lib/xe/xe_spin.c
>> @@ -165,7 +165,8 @@ bool xe_spin_started(struct xe_spin *spin)
>> */
>> void xe_spin_wait_started(struct xe_spin *spin)
>> {
>> - while(!xe_spin_started(spin));
>> + while (!xe_spin_started(spin))
>> + ;
>> }
>>
>> void xe_spin_end(struct xe_spin *spin)
>> --
>> 2.30.2
>>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for lib/xe_spin: introduced fixed duration xe_spin (rev3)
2023-09-08 12:54 [igt-dev] [PATCH i-g-t v4 0/4] lib/xe_spin: introduced fixed duration xe_spin Marcin Bernatowicz
` (5 preceding siblings ...)
2023-09-08 16:23 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-09-08 20:14 ` Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-09-08 20:14 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 97508 bytes --]
== Series Details ==
Series: lib/xe_spin: introduced fixed duration xe_spin (rev3)
URL : https://patchwork.freedesktop.org/series/122624/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7476_full -> IGTPW_9755_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9755_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9755_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/index.html
Participating hosts (10 -> 11)
------------------------------
Additional (1): shard-tglu0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9755_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_module_load@reload-no-display:
- shard-snb: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-snb2/igt@i915_module_load@reload-no-display.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-snb5/igt@i915_module_load@reload-no-display.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_pm_backlight@fade-with-suspend}:
- shard-rkl: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-4/igt@kms_pm_backlight@fade-with-suspend.html
* {igt@kms_pm_dc@dc5-dpms-negative}:
- shard-mtlp: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html
* {igt@kms_pm_dc@dc6-dpms}:
- shard-dg2: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html
* {igt@kms_pm_lpsp@screens-disabled}:
- shard-dg1: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html
Known issues
------------
Here are the changes found in IGTPW_9755_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-3/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#7701])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#7701])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +25 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-15/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +21 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#1839])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@feature_discovery@display-2x.html
* igt@feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#1839])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@feature_discovery@display-3x.html
* igt@feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#658]) +5 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-6/igt@feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#658]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@feature_discovery@psr1.html
* igt@gem_busy@close-race:
- shard-apl: [PASS][17] -> [ABORT][18] ([i915#6016])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-apl2/igt@gem_busy@close-race.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-apl3/igt@gem_busy@close-race.html
* igt@gem_busy@semaphore:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3936])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#5325])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#5325])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][22] ([i915#7297])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][23] ([i915#7461])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#6335])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#1099]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-snb5/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-hang@bsd1:
- shard-mtlp: [PASS][27] -> [FAIL][28] ([i915#2410])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html
* igt@gem_ctx_persistence@legacy-engines-hang@bsd2:
- shard-mtlp: [PASS][29] -> [ABORT][30] ([i915#8865])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hang@bsd2.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hang@bsd2.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#5882]) +5 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#280])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#280]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][35] ([i915#7975] / [i915#8213])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][36] -> [FAIL][37] ([i915#5784])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg1-12/igt@gem_eio@unwedge-stress.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#6344])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fair@basic-flow:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4473] / [i915#4771])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: [PASS][41] -> [FAIL][42] ([i915#2842])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglu: NOTRUN -> [FAIL][43] ([i915#2842])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-10/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][44] -> [FAIL][45] ([i915#2842])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [PASS][46] -> [FAIL][47] ([i915#2842])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-17/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#7697]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@secure-non-master:
- shard-tglu: NOTRUN -> [SKIP][53] ([fdo#112283]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-6/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_params@secure-non-root:
- shard-mtlp: NOTRUN -> [SKIP][54] ([fdo#112283])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3281]) +17 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#3281]) +6 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281]) +15 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_schedule@preempt-hang@vcs0:
- shard-mtlp: NOTRUN -> [ABORT][58] ([i915#9262]) +5 other tests abort
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@gem_exec_schedule@preempt-hang@vcs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4860])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4860]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-apl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#4613])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-apl2/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#4613])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-glk9/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4565])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-12/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify:
- shard-tglu: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-7/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#8289])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +13 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-2/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-snb: [PASS][71] -> [INCOMPLETE][72] ([i915#5161])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-snb4/igt@gem_mmap_gtt@fault-concurrent-x.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-snb2/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_gtt@hang-busy:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4077]) +12 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4077]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4083]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4083]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-6/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3282]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +8 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4079]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4885])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-13/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc-s3:
- shard-dg2: NOTRUN -> [FAIL][87] ([fdo#103375])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4079]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@gem_tiled_pread_basic.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3297]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#3297])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg1: NOTRUN -> [FAIL][93] ([i915#3318])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-18/igt@gem_userptr_blits@vma-merge.html
- shard-snb: NOTRUN -> [FAIL][94] ([i915#2724])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-snb4/igt@gem_userptr_blits@vma-merge.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-mtlp: [PASS][95] -> [ABORT][96] ([i915#9262])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-2/igt@gem_workarounds@suspend-resume-fd.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][97] ([fdo#109289]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@gen7_exec_parse@basic-rejected.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][98] ([fdo#109289]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][99] ([fdo#109271]) +170 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-snb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#2527]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-13/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#2856]) +5 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-3/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#2856]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-2/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#7707])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@i915_hwmon@hwmon-write.html
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#7707])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-2/igt@i915_hwmon@hwmon-write.html
* igt@i915_pm_freq_api@freq-basic-api@gt0:
- shard-mtlp: NOTRUN -> [FAIL][106] ([i915#8670])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@i915_pm_freq_api@freq-basic-api@gt0.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-dg1: [PASS][107] -> [SKIP][108] ([i915#1397])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-15/igt@i915_pm_rpm@dpms-lpsp.html
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#1397])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-7/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][110] -> [SKIP][111] ([i915#1397])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#1397])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-16/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#1397])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#1397])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][115] ([fdo#109506])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-6/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#6621])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#8925]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_query@query-topology-unsupported:
- shard-mtlp: NOTRUN -> [SKIP][118] ([fdo#109302])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@i915_query@query-topology-unsupported.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: NOTRUN -> [INCOMPLETE][119] ([i915#4817])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6645])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-snb: NOTRUN -> [DMESG-WARN][121] ([i915#8841]) +5 other tests dmesg-warn
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-snb5/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#4212]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#8502]) +7 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#8502]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][126] ([i915#8247]) +3 other tests fail
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][127] ([i915#8247]) +3 other tests fail
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#5286]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][129] -> [FAIL][130] ([i915#5138])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5286])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [FAIL][132] ([i915#5138])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][133] ([fdo#111615] / [i915#5286])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][134] ([fdo#111614]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#3638])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][136] ([fdo#111614]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#5190]) +17 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#111615]) +18 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][139] ([fdo#110723]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][140] ([fdo#111615]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5190]) +5 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][142] ([fdo#111615])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-17/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_joiner@2x-modeset:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#2705])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-13/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-12/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#3734] / [i915#5354] / [i915#6095]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#3689] / [i915#3886] / [i915#5354]) +12 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3886] / [i915#6095]) +7 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#5354] / [i915#6095]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-6/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#5354] / [i915#6095]) +8 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][152] ([fdo#109271] / [i915#3886])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-apl2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-2/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#5354] / [i915#6095]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-16/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#5354]) +57 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#5354]) +12 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-1/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html
- shard-tglu: NOTRUN -> [SKIP][157] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-7/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][158] ([fdo#109271]) +23 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-apl7/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3689] / [i915#5354]) +32 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6095]) +36 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#3742])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#7213] / [i915#9010]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#7828]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][164] ([fdo#111827]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-rkl: NOTRUN -> [SKIP][165] ([fdo#111827])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-1/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_color@degamma:
- shard-mtlp: NOTRUN -> [SKIP][166] ([fdo#111827]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#7828]) +9 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#7828])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-10/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#7828]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#7828]) +13 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_color@deep-color@pipe-b-edp-1-degamma:
- shard-mtlp: NOTRUN -> [FAIL][171] ([i915#6892]) +3 other tests fail
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_color@deep-color@pipe-b-edp-1-degamma.html
* igt@kms_color@degamma@pipe-a:
- shard-mtlp: NOTRUN -> [FAIL][172] ([i915#9257]) +3 other tests fail
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@kms_color@degamma@pipe-a.html
* igt@kms_concurrent@pipe-d:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#4070] / [i915#533] / [i915#6768]) +4 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@kms_concurrent@pipe-d.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#7116])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3299])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#3116])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#6944])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-2/igt@kms_content_protection@lic.html
* igt@kms_content_protection@mei_interface:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8063])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#7118]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@kms_content_protection@srm.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#7118]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-10/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3359]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3359])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3359]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8814]) +5 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3359])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#3555])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][189] ([fdo#111825]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#4213])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#4103] / [i915#4213])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3546]) +4 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][193] ([fdo#111825]) +8 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
- shard-tglu: NOTRUN -> [SKIP][194] ([fdo#109274])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-dg2: NOTRUN -> [SKIP][195] ([fdo#109274] / [i915#5354]) +5 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][196] ([fdo#109274] / [fdo#111767] / [i915#5354])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@single-bo@all-pipes:
- shard-mtlp: [PASS][197] -> [DMESG-WARN][198] ([i915#2017])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-6/igt@kms_cursor_legacy@single-bo@all-pipes.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#9226] / [i915#9261]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#9226] / [i915#9261]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#9227])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9227])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#9227])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#9226] / [i915#9261]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8588])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555]) +6 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8812])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3469])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@kms_fbcon_fbt@psr.html
- shard-rkl: NOTRUN -> [SKIP][209] ([fdo#110189] / [i915#3955])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-tglu: NOTRUN -> [SKIP][210] ([fdo#109274] / [fdo#111767] / [i915#3637])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#8381])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][212] ([fdo#111767] / [i915#3637]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][213] ([fdo#109274] / [fdo#111767])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3637]) +11 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][215] ([fdo#109274]) +4 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-tglu: NOTRUN -> [SKIP][216] ([fdo#109274] / [i915#3637]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-10/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-dg1: NOTRUN -> [FAIL][217] ([fdo#103375])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-12/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2672]) +4 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#8810])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#2672]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-dg2: NOTRUN -> [SKIP][224] ([fdo#109285])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [FAIL][225] ([i915#6880])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#8708]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3023]) +9 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#8708]) +16 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3458]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][230] ([fdo#109271]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][231] ([fdo#111825] / [i915#1825]) +17 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#1825]) +41 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][233] ([fdo#110189]) +9 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#3458]) +22 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][235] ([fdo#109280]) +10 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#8708]) +16 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-2/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-10/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-13/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#6301])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu: NOTRUN -> [SKIP][242] ([fdo#109289]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-2/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][243] ([fdo#109289]) +7 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-WARN][244] ([i915#9262]) +2 other tests dmesg-warn
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8821])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8806])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#6953])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][248] ([i915#8292])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][249] ([i915#8292])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#5176]) +5 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#5176]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#5176]) +15 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#5176]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#5235]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#5235]) +19 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#5235]) +7 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#5235]) +7 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#5235]) +11 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#658])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr@psr2_no_drrs:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#1072]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-4/igt@kms_psr@psr2_no_drrs.html
* igt@kms_psr@sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#1072]) +4 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@kms_psr@sprite_plane_move.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#5289])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-17/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#5289])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#4235]) +3 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#4235] / [i915#5190])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#5289])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#4235]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_selftest@drm_damage:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#8661]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-7/igt@kms_selftest@drm_damage.html
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#8661]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@kms_selftest@drm_damage.html
* igt@kms_selftest@drm_dp_mst:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#8661]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@kms_selftest@drm_dp_mst.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#4098])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#8623])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#8623])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-rkl: NOTRUN -> [SKIP][274] ([fdo#109309])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-4/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
- shard-dg2: [PASS][275] -> [FAIL][276] ([fdo#103375])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg2-11/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-c-ts-continuation-idle:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#4070] / [i915#6768]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@kms_vblank@pipe-c-ts-continuation-idle.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8808])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@kms_vrr@flip-suspend.html
* igt@perf@blocking@1-vcs0:
- shard-mtlp: NOTRUN -> [FAIL][279] ([i915#9259])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@perf@blocking@1-vcs0.html
* igt@perf@enable-disable@0-rcs0:
- shard-dg2: [PASS][280] -> [FAIL][281] ([i915#8724])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg2-1/igt@perf@enable-disable@0-rcs0.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#7387])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#2434])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@perf@mi-rpc.html
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#2434])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@perf@mi-rpc.html
* igt@perf@polling@0-rcs0:
- shard-mtlp: [PASS][285] -> [FAIL][286] ([i915#9259]) +1 other test fail
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-4/igt@perf@polling@0-rcs0.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@perf@polling@0-rcs0.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#2433])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [FAIL][288] ([i915#5234]) +1 other test fail
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-hang@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][289] ([i915#4349]) +8 other tests fail
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-7/igt@perf_pmu@busy-hang@ccs0.html
* igt@perf_pmu@busy-idle-check-all@bcs0:
- shard-mtlp: NOTRUN -> [FAIL][290] ([i915#4521]) +2 other tests fail
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@bcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#8850])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][292] ([fdo#112283])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-3/igt@perf_pmu@event-wait@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8807])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@faulting-read@gtt:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#8440])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@perf_pmu@faulting-read@gtt.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-dg1: NOTRUN -> [FAIL][295] ([i915#5234])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@multi-client@rcs0:
- shard-rkl: NOTRUN -> [INCOMPLETE][296] ([i915#8875])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@perf_pmu@multi-client@rcs0.html
* igt@perf_pmu@rc6@gt0:
- shard-mtlp: NOTRUN -> [INCOMPLETE][297] ([i915#9268])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-3/igt@perf_pmu@rc6@gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][298] ([i915#7331])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_udl:
- shard-mtlp: NOTRUN -> [SKIP][299] ([fdo#109291])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@prime_udl.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#3708] / [i915#4077]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-4/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#3708]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#3291] / [i915#3708])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#3708] / [i915#4077]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#3708])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@prime_vgem@fence-read-hang.html
* igt@sysfs_timeslice_duration@duration@vecs0:
- shard-mtlp: NOTRUN -> [FAIL][305] ([i915#9258]) +2 other tests fail
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@sysfs_timeslice_duration@duration@vecs0.html
* igt@tools_test@sysfs_l3_parity:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#4818])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-6/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_perfmon@create-perfmon-exceed:
- shard-rkl: NOTRUN -> [SKIP][307] ([fdo#109315]) +5 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-7/igt@v3d/v3d_perfmon@create-perfmon-exceed.html
* igt@v3d/v3d_perfmon@get-values-valid-perfmon:
- shard-tglu: NOTRUN -> [SKIP][308] ([fdo#109315] / [i915#2575]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-2/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html
* igt@v3d/v3d_submit_cl@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#2575]) +16 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-bo.html
* igt@v3d/v3d_submit_cl@valid-submission:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#2575])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-18/igt@v3d/v3d_submit_cl@valid-submission.html
* igt@v3d/v3d_wait_bo@map-bo-0ns:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#2575]) +15 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@v3d/v3d_wait_bo@map-bo-0ns.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#2575]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-2/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#7711]) +9 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_perfmon@create-two-perfmon:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#7711]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-4/igt@vc4/vc4_perfmon@create-two-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#7711]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-13/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#7711]) +8 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-3/igt@vc4/vc4_wait_bo@used-bo-0ns.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][317] ([i915#6268]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
- shard-tglu: [FAIL][319] ([i915#6268]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-mtlp: [DMESG-WARN][321] ([i915#9260] / [i915#9262]) -> [PASS][322] +2 other tests pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-4/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_ctx_persistence@legacy-engines-hostile@vebox:
- shard-mtlp: [FAIL][323] ([i915#2410]) -> [PASS][324] +2 other tests pass
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-8/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-8/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][325] ([i915#5784]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg1-13/igt@gem_eio@reset-stress.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-17/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [FAIL][327] ([i915#2842]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-rkl-2/igt@gem_exec_fair@basic-pace@bcs0.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: [ABORT][329] ([i915#7975] / [i915#8213]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [INCOMPLETE][331] ([i915#5566]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-glk3/igt@gen9_exec_parse@allowed-single.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-glk7/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: [SKIP][333] ([i915#1397]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg1-16/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-rkl: [SKIP][335] ([i915#1397]) -> [PASS][336] +1 other test pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-6/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@i2c:
- shard-dg2: [FAIL][337] ([i915#8717]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg2-2/igt@i915_pm_rpm@i2c.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@i915_pm_rpm@i2c.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][339] ([i915#5138]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][341] ([i915#2346]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-edp1:
- shard-mtlp: [ABORT][343] ([i915#9262]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-2/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-dg2: [FAIL][345] ([fdo#103375]) -> [PASS][346] +1 other test pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg2-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-dg2: [INCOMPLETE][347] -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg2-5/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-1/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1:
- shard-glk: [FAIL][349] ([i915#2122]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-glk8/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-glk9/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-badstride:
- shard-dg2: [FAIL][351] ([i915#6880]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-badstride.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-badstride.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1:
- shard-apl: [INCOMPLETE][353] ([i915#180]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-apl4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][355] ([i915#4349]) -> [PASS][356] +2 other tests pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg1-15/igt@perf_pmu@busy-double-start@vcs1.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-19/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@gem_ctx_isolation@preservation-s3@vcs1:
- shard-mtlp: [DMESG-WARN][357] ([i915#9260] / [i915#9262]) -> [DMESG-WARN][358] ([i915#9262]) +1 other test dmesg-warn
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-4/igt@gem_ctx_isolation@preservation-s3@vcs1.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-5/igt@gem_ctx_isolation@preservation-s3@vcs1.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-mtlp: [SKIP][359] ([i915#8403]) -> [SKIP][360] ([fdo#109289])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-mtlp-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][361] ([i915#3955]) -> [SKIP][362] ([fdo#110189] / [i915#3955])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][363] ([i915#1072]) -> [SKIP][364] ([i915#1072] / [i915#4078]) +3 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7476/shard-dg1-19/igt@kms_psr@cursor_plane_move.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/shard-dg1-18/igt@kms_psr@cursor_plane_move.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[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#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[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#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[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#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6016]: https://gitlab.freedesktop.org/drm/intel/issues/6016
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6892]: https://gitlab.freedesktop.org/drm/intel/issues/6892
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[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#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403
[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#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8670]: https://gitlab.freedesktop.org/drm/intel/issues/8670
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9257]: https://gitlab.freedesktop.org/drm/intel/issues/9257
[i915#9258]: https://gitlab.freedesktop.org/drm/intel/issues/9258
[i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259
[i915#9260]: https://gitlab.freedesktop.org/drm/intel/issues/9260
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7476 -> IGTPW_9755
CI-20190529: 20190529
CI_DRM_13613: 25ec37710fd81562fd25eccebaac156d9334ff0c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9755: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/index.html
IGT_7476: 848905faf8476f4e6d77f383af1c1d7396be5764 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9755/index.html
[-- Attachment #2: Type: text/html, Size: 120458 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 1/4] lib/xe_spin: xe_spin_opts for xe_spin initialization
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 1/4] lib/xe_spin: xe_spin_opts for xe_spin initialization Marcin Bernatowicz
@ 2023-09-11 11:50 ` Zbigniew Kempczyński
0 siblings, 0 replies; 11+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 11:50 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
On Fri, Sep 08, 2023 at 12:54:51PM +0000, Marcin Bernatowicz wrote:
> Introduced struct xe_spin_opts for xe_spin initialization,
> adjusted tests to new xe_spin_init signature.
> Added xe_spin_init_opts macro (Zbyszek).
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> ---
> lib/xe/xe_spin.c | 28 ++++++++++------------------
> lib/xe/xe_spin.h | 19 ++++++++++++++++++-
> tests/intel/xe_dma_buf_sync.c | 6 +++---
> tests/intel/xe_exec_balancer.c | 9 ++++-----
> tests/intel/xe_exec_reset.c | 24 ++++++++++++++----------
> tests/intel/xe_exec_threads.c | 7 ++++---
> tests/intel/xe_vm.c | 7 ++++---
> 7 files changed, 57 insertions(+), 43 deletions(-)
>
> diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c
> index 7113972ee..27f837ef9 100644
> --- a/lib/xe/xe_spin.c
> +++ b/lib/xe/xe_spin.c
> @@ -19,17 +19,13 @@
> /**
> * xe_spin_init:
> * @spin: pointer to mapped bo in which spinner code will be written
> - * @addr: offset of spinner within vm
> - * @preempt: allow spinner to be preempted or not
> + * @opts: pointer to spinner initialization options
> */
> -void xe_spin_init(struct xe_spin *spin, uint64_t addr, bool preempt)
> +void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
> {
> - uint64_t batch_offset = (char *)&spin->batch - (char *)spin;
> - uint64_t batch_addr = addr + batch_offset;
> - uint64_t start_offset = (char *)&spin->start - (char *)spin;
> - uint64_t start_addr = addr + start_offset;
> - uint64_t end_offset = (char *)&spin->end - (char *)spin;
> - uint64_t end_addr = addr + end_offset;
> + uint64_t loop_addr = opts->addr + offsetof(struct xe_spin, batch);
> + uint64_t start_addr = opts->addr + offsetof(struct xe_spin, start);
> + uint64_t end_addr = opts->addr + offsetof(struct xe_spin, end);
> int b = 0;
>
> spin->start = 0;
> @@ -40,7 +36,7 @@ void xe_spin_init(struct xe_spin *spin, uint64_t addr, bool preempt)
> spin->batch[b++] = start_addr >> 32;
> spin->batch[b++] = 0xc0ffee;
>
> - if (preempt)
> + if (opts->preempt)
> spin->batch[b++] = (0x5 << 23);
>
> spin->batch[b++] = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | 2;
> @@ -49,8 +45,8 @@ void xe_spin_init(struct xe_spin *spin, uint64_t addr, bool preempt)
> spin->batch[b++] = end_addr >> 32;
>
> spin->batch[b++] = MI_BATCH_BUFFER_START | 1 << 8 | 1;
> - spin->batch[b++] = batch_addr;
> - spin->batch[b++] = batch_addr >> 32;
> + spin->batch[b++] = loop_addr;
> + spin->batch[b++] = loop_addr >> 32;
>
> igt_assert(b <= ARRAY_SIZE(spin->batch));
> }
> @@ -133,11 +129,7 @@ xe_spin_create(int fd, const struct igt_spin_factory *opt)
> addr = intel_allocator_alloc_with_strategy(ahnd, spin->handle, bo_size, 0, ALLOC_STRATEGY_LOW_TO_HIGH);
> xe_vm_bind_sync(fd, spin->vm, spin->handle, 0, addr, bo_size);
>
> - if (!(opt->flags & IGT_SPIN_NO_PREEMPTION))
> - xe_spin_init(xe_spin, addr, true);
> - else
> - xe_spin_init(xe_spin, addr, false);
> -
> + xe_spin_init_opts(xe_spin, .addr = addr, .preempt = !(opt->flags & IGT_SPIN_NO_PREEMPTION));
> exec.exec_queue_id = spin->engine;
> exec.address = addr;
> sync.handle = spin->syncobj;
> @@ -219,7 +211,7 @@ void xe_cork_init(int fd, struct drm_xe_engine_class_instance *hwe,
> exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
> syncobj = syncobj_create(fd, 0);
>
> - xe_spin_init(spin, addr, true);
> + xe_spin_init_opts(spin, .addr = addr, .preempt = true);
> exec.exec_queue_id = exec_queue;
> exec.address = addr;
> sync.handle = syncobj;
> diff --git a/lib/xe/xe_spin.h b/lib/xe/xe_spin.h
> index c84db175d..9f1d33294 100644
> --- a/lib/xe/xe_spin.h
> +++ b/lib/xe/xe_spin.h
> @@ -15,6 +15,18 @@
> #include "xe_query.h"
> #include "lib/igt_dummyload.h"
>
> +/** struct xe_spin_opts
> + *
> + * @addr: offset of spinner within vm
> + * @preempt: allow spinner to be preempted or not
> + *
> + * Used to initialize struct xe_spin spinner behavior.
> + */
> +struct xe_spin_opts {
> + uint64_t addr;
> + bool preempt;
> +};
> +
> /* Mapped GPU object */
> struct xe_spin {
> uint32_t batch[16];
> @@ -22,8 +34,13 @@ struct xe_spin {
> uint32_t start;
> uint32_t end;
> };
> +
> igt_spin_t *xe_spin_create(int fd, const struct igt_spin_factory *opt);
> -void xe_spin_init(struct xe_spin *spin, uint64_t addr, bool preempt);
> +void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts);
> +
> +#define xe_spin_init_opts(fd, ...) \
> + xe_spin_init(fd, &((struct xe_spin_opts){__VA_ARGS__}))
> +
> bool xe_spin_started(struct xe_spin *spin);
> void xe_spin_sync_wait(int fd, struct igt_spin *spin);
> void xe_spin_wait_started(struct xe_spin *spin);
> diff --git a/tests/intel/xe_dma_buf_sync.c b/tests/intel/xe_dma_buf_sync.c
> index 8c400c8fd..dd76f0b96 100644
> --- a/tests/intel/xe_dma_buf_sync.c
> +++ b/tests/intel/xe_dma_buf_sync.c
> @@ -147,7 +147,6 @@ test_export_dma_buf(struct drm_xe_engine_class_instance *hwe0,
> uint64_t sdi_offset = (char *)&data[i]->data - (char *)data[i];
> uint64_t sdi_addr = addr + sdi_offset;
> uint64_t spin_offset = (char *)&data[i]->spin - (char *)data[i];
> - uint64_t spin_addr = addr + spin_offset;
> struct drm_xe_sync sync[2] = {
> { .flags = DRM_XE_SYNC_SYNCOBJ, },
> { .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL, },
> @@ -156,14 +155,15 @@ test_export_dma_buf(struct drm_xe_engine_class_instance *hwe0,
> .num_batch_buffer = 1,
> .syncs = to_user_pointer(sync),
> };
> + struct xe_spin_opts spin_opts = { .addr = addr + spin_offset, .preempt = true };
> uint32_t syncobj;
> int b = 0;
> int sync_fd;
>
> /* Write spinner on FD[0] */
> - xe_spin_init(&data[i]->spin, spin_addr, true);
> + xe_spin_init(&data[i]->spin, &spin_opts);
> exec.exec_queue_id = exec_queue[0];
> - exec.address = spin_addr;
> + exec.address = spin_opts.addr;
> xe_exec(fd[0], &exec);
>
> /* Export prime BO as sync file and veify business */
> diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c
> index f571f13d9..3fb59d75f 100644
> --- a/tests/intel/xe_exec_balancer.c
> +++ b/tests/intel/xe_exec_balancer.c
> @@ -53,6 +53,7 @@ static void test_all_active(int fd, int gt, int class)
> struct {
> struct xe_spin spin;
> } *data;
> + struct xe_spin_opts spin_opts = { .preempt = false };
> struct drm_xe_engine_class_instance *hwe;
> struct drm_xe_engine_class_instance eci[MAX_INSTANCE];
> int i, num_placements = 0;
> @@ -91,16 +92,14 @@ static void test_all_active(int fd, int gt, int class)
> xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
>
> for (i = 0; i < num_placements; i++) {
> - uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
> - uint64_t spin_addr = addr + spin_offset;
> -
> - xe_spin_init(&data[i].spin, spin_addr, false);
> + spin_opts.addr = addr + (char *)&data[i].spin - (char *)data;
> + xe_spin_init(&data[i].spin, &spin_opts);
> sync[0].flags &= ~DRM_XE_SYNC_SIGNAL;
> sync[1].flags |= DRM_XE_SYNC_SIGNAL;
> sync[1].handle = syncobjs[i];
>
> exec.exec_queue_id = exec_queues[i];
> - exec.address = spin_addr;
> + exec.address = spin_opts.addr;
> xe_exec(fd, &exec);
> xe_spin_wait_started(&data[i].spin);
> }
> diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
> index a2d33baf1..be6bbada6 100644
> --- a/tests/intel/xe_exec_reset.c
> +++ b/tests/intel/xe_exec_reset.c
> @@ -44,6 +44,7 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci)
> size_t bo_size;
> uint32_t bo = 0;
> struct xe_spin *spin;
> + struct xe_spin_opts spin_opts = { .addr = addr, .preempt = false };
>
> vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
> bo_size = sizeof(*spin);
> @@ -60,7 +61,7 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci)
> sync[0].handle = syncobj_create(fd, 0);
> xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
>
> - xe_spin_init(spin, addr, false);
> + xe_spin_init(spin, &spin_opts);
>
> sync[0].flags &= ~DRM_XE_SYNC_SIGNAL;
> sync[1].flags |= DRM_XE_SYNC_SIGNAL;
> @@ -165,6 +166,7 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> uint64_t pad;
> uint32_t data;
> } *data;
> + struct xe_spin_opts spin_opts = { .preempt = false };
> struct drm_xe_engine_class_instance *hwe;
> struct drm_xe_engine_class_instance eci[MAX_INSTANCE];
> int i, j, b, num_placements = 0, bad_batches = 1;
> @@ -236,7 +238,6 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
> uint64_t batch_addr = base_addr + batch_offset;
> uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
> - uint64_t spin_addr = base_addr + spin_offset;
> uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
> uint64_t sdi_addr = base_addr + sdi_offset;
> uint64_t exec_addr;
> @@ -247,8 +248,9 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> batches[j] = batch_addr;
>
> if (i < bad_batches) {
> - xe_spin_init(&data[i].spin, spin_addr, false);
> - exec_addr = spin_addr;
> + spin_opts.addr = base_addr + spin_offset;
> + xe_spin_init(&data[i].spin, &spin_opts);
> + exec_addr = spin_opts.addr;
> } else {
> b = 0;
> data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> @@ -368,6 +370,7 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
> uint64_t pad;
> uint32_t data;
> } *data;
> + struct xe_spin_opts spin_opts = { .preempt = false };
> int i, b;
>
> igt_assert(n_exec_queues <= MAX_N_EXECQUEUES);
> @@ -417,15 +420,15 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
> uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
> uint64_t batch_addr = base_addr + batch_offset;
> uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
> - uint64_t spin_addr = base_addr + spin_offset;
> uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
> uint64_t sdi_addr = base_addr + sdi_offset;
> uint64_t exec_addr;
> int e = i % n_exec_queues;
>
> if (!i) {
> - xe_spin_init(&data[i].spin, spin_addr, false);
> - exec_addr = spin_addr;
> + spin_opts.addr = base_addr + spin_offset;
> + xe_spin_init(&data[i].spin, &spin_opts);
> + exec_addr = spin_opts.addr;
> } else {
> b = 0;
> data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> @@ -539,6 +542,7 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
> uint64_t exec_sync;
> uint32_t data;
> } *data;
> + struct xe_spin_opts spin_opts = { .preempt = false };
> int i, b;
>
> igt_assert(n_exec_queues <= MAX_N_EXECQUEUES);
> @@ -593,15 +597,15 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
> uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
> uint64_t batch_addr = base_addr + batch_offset;
> uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
> - uint64_t spin_addr = base_addr + spin_offset;
> uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
> uint64_t sdi_addr = base_addr + sdi_offset;
> uint64_t exec_addr;
> int e = i % n_exec_queues;
>
> if (!i) {
> - xe_spin_init(&data[i].spin, spin_addr, false);
> - exec_addr = spin_addr;
> + spin_opts.addr = base_addr + spin_offset;
> + xe_spin_init(&data[i].spin, &spin_opts);
> + exec_addr = spin_opts.addr;
> } else {
> b = 0;
> data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
> index e64c1639a..ff4ebc280 100644
> --- a/tests/intel/xe_exec_threads.c
> +++ b/tests/intel/xe_exec_threads.c
> @@ -486,6 +486,7 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> uint64_t pad;
> uint32_t data;
> } *data;
> + struct xe_spin_opts spin_opts = { .preempt = false };
> int i, j, b, hang_exec_queue = n_exec_queues / 2;
> bool owns_vm = false, owns_fd = false;
>
> @@ -562,15 +563,15 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
> uint64_t batch_addr = addr + batch_offset;
> uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
> - uint64_t spin_addr = addr + spin_offset;
> uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
> uint64_t sdi_addr = addr + sdi_offset;
> uint64_t exec_addr;
> int e = i % n_exec_queues;
>
> if (flags & HANG && e == hang_exec_queue && i == e) {
> - xe_spin_init(&data[i].spin, spin_addr, false);
> - exec_addr = spin_addr;
> + spin_opts.addr = addr + spin_offset;
> + xe_spin_init(&data[i].spin, &spin_opts);
> + exec_addr = spin_opts.addr;
> } else {
> b = 0;
> data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
> index 5453f10c4..43d6dd1fa 100644
> --- a/tests/intel/xe_vm.c
> +++ b/tests/intel/xe_vm.c
> @@ -737,6 +737,7 @@ test_bind_execqueues_independent(int fd, struct drm_xe_engine_class_instance *ec
> uint64_t pad;
> uint32_t data;
> } *data;
> + struct xe_spin_opts spin_opts = { .preempt = true };
> int i, b;
>
> vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
> @@ -765,14 +766,14 @@ test_bind_execqueues_independent(int fd, struct drm_xe_engine_class_instance *ec
> uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
> uint64_t sdi_addr = addr + sdi_offset;
> uint64_t spin_offset = (char *)&data[i].spin - (char *)data;
> - uint64_t spin_addr = addr + spin_offset;
> int e = i;
>
> if (i == 0) {
> /* Cork 1st exec_queue with a spinner */
> - xe_spin_init(&data[i].spin, spin_addr, true);
> + spin_opts.addr = addr + spin_offset;
> + xe_spin_init(&data[i].spin, &spin_opts);
> exec.exec_queue_id = exec_queues[e];
> - exec.address = spin_addr;
> + exec.address = spin_opts.addr;
> sync[0].flags &= ~DRM_XE_SYNC_SIGNAL;
> sync[1].flags |= DRM_XE_SYNC_SIGNAL;
> sync[1].handle = syncobjs[e];
> --
> 2.30.2
>
LGTM:
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
--
Zbigniew
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-09-11 11:51 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-08 12:54 [igt-dev] [PATCH i-g-t v4 0/4] lib/xe_spin: introduced fixed duration xe_spin Marcin Bernatowicz
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 1/4] lib/xe_spin: xe_spin_opts for xe_spin initialization Marcin Bernatowicz
2023-09-11 11:50 ` Zbigniew Kempczyński
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 2/4] lib/xe_spin: fixed duration xe_spin capability Marcin Bernatowicz
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 3/4] tests/xe_spin_batch: spin-fixed-duration Marcin Bernatowicz
2023-09-08 12:54 ` [igt-dev] [PATCH i-g-t v4 4/4] lib/xe_spin.c: fixed checkpatch issue Marcin Bernatowicz
2023-09-08 17:10 ` Kamil Konieczny
2023-09-08 17:39 ` Bernatowicz, Marcin
2023-09-08 15:22 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/xe_spin: introduced fixed duration xe_spin (rev3) Patchwork
2023-09-08 16:23 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-09-08 20:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox