* [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind
@ 2024-03-25 20:10 sai.gowtham.ch
2024-03-25 20:10 ` [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume sai.gowtham.ch
` (5 more replies)
0 siblings, 6 replies; 15+ messages in thread
From: sai.gowtham.ch @ 2024-03-25 20:10 UTC (permalink / raw)
To: igt-dev, sai.gowtham.ch, rodrigo.vivi
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
This patch series has following changes:
1. Validate functionality of VM_BIND USERPTR/PREFETCH op with S&R
2. Test vm_unbind op by binding multiple va's to a vm and check the
functionality with S&R.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Sai Gowtham Ch (3):
tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend
and resume
tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and
resume
tests/intel/xe_pm: Tests vm-unbind all flag functionality with s&R
tests/intel/xe_pm.c | 125 +++++++++++++++++++++++++++++++++++++-------
1 file changed, 106 insertions(+), 19 deletions(-)
--
2.39.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume 2024-03-25 20:10 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind sai.gowtham.ch @ 2024-03-25 20:10 ` sai.gowtham.ch 2024-03-28 18:00 ` Rodrigo Vivi 2024-03-25 20:10 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch " sai.gowtham.ch ` (4 subsequent siblings) 5 siblings, 1 reply; 15+ messages in thread From: sai.gowtham.ch @ 2024-03-25 20:10 UTC (permalink / raw) To: igt-dev, sai.gowtham.ch, rodrigo.vivi From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Test validates vm bind usertpr functionality, by suspend and resuming the device after binding VM to a VA. Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_pm.c | 78 ++++++++++++++++++++++++++++++++++----------- 1 file changed, 60 insertions(+), 18 deletions(-) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index 3aa247353..8659e87cc 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -33,6 +33,8 @@ #define MAGIC_1 0xc0ffee #define MAGIC_2 0xdeadbeef +#define USERPTR (0x1 << 0) + typedef struct { int fd_xe; struct pci_device *pci_xe; @@ -272,11 +274,26 @@ static void close_fw_handle(int sig) * @d3hot: d3hot * @d3cold: d3cold */ - +/** + * SUBTEST: %s-vm-bind-%s + * DESCRIPTION: Test to check suspend/autoresume on %arg[1] state + * with vm bind %arg[2] combination + * Functionality: pm - %arg[1] + * + * arg[1]: + * + * @s2idle: s2idle + * @s3: s3 + * @s4: s4 + * + * arg[2]: + * + * @usrptr: usrptr + */ static void test_exec(device_t device, struct drm_xe_engine_class_instance *eci, int n_exec_queues, int n_execs, enum igt_suspend_state s_state, - enum igt_acpi_d_state d_state) + enum igt_acpi_d_state d_state, unsigned int flags) { uint32_t vm; uint64_t addr = 0x1a0000; @@ -320,10 +337,15 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, if (check_rpm && runtime_usage_available(device.pci_xe)) rpm_usage = igt_pm_get_runtime_usage(device.pci_xe); - bo = xe_bo_create(device.fd_xe, vm, bo_size, - vram_if_possible(device.fd_xe, eci->gt_id), - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); - data = xe_bo_map(device.fd_xe, bo, bo_size); + if (flags & USERPTR) { + data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); + } else { + bo = xe_bo_create(device.fd_xe, vm, bo_size, + vram_if_possible(device.fd_xe, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + data = xe_bo_map(device.fd_xe, bo, bo_size); + } + memset(data, 0, bo_size); for (i = 0; i < n_exec_queues; i++) { exec_queues[i] = xe_exec_queue_create(device.fd_xe, vm, eci, 0); @@ -333,8 +355,12 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, sync[0].handle = syncobj_create(device.fd_xe, 0); - xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, - bo_size, sync, 1); + if (bo) + xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, + bo_size, sync, 1); + else + xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], + to_user_pointer(data), addr, bo_size, sync, 1); if (check_rpm && runtime_usage_available(device.pci_xe)) igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); @@ -398,9 +424,10 @@ NULL)); xe_exec_queue_destroy(device.fd_xe, bind_exec_queues[i]); } - munmap(data, bo_size); - - gem_close(device.fd_xe, bo); + if (bo) { + munmap(data, bo_size); + gem_close(device.fd_xe, bo); + } if (check_rpm && runtime_usage_available(device.pci_xe)) igt_assert(igt_pm_get_runtime_usage(device.pci_xe) < rpm_usage); @@ -583,6 +610,13 @@ igt_main { "d3cold", IGT_ACPI_D3Cold }, { NULL }, }; + const struct vm_op { + const char *name; + unsigned int flags; + } vm_op[] = { + { "usrptr", USERPTR }, + { NULL }, + }; igt_fixture { memset(&device, 0, sizeof(device)); @@ -593,7 +627,7 @@ igt_main /* Always perform initial once-basic exec checking for health */ xe_for_each_engine(device.fd_xe, hwe) - test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM); + test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM, 0); igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed); igt_assert(igt_setup_runtime_pm(device.fd_xe)); @@ -610,7 +644,7 @@ igt_main igt_subtest_f("%s-basic-exec", s->name) { xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, s->state, - NO_RPM); + NO_RPM, 0); } igt_subtest_f("%s-exec-after", s->name) { @@ -618,13 +652,21 @@ igt_main SUSPEND_TEST_NONE); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, NO_SUSPEND, - NO_RPM); + NO_RPM, 0); } igt_subtest_f("%s-multiple-execs", s->name) { xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 16, 32, s->state, - NO_RPM); + NO_RPM, 0); + } + + for (const struct vm_op *op = vm_op; op->name; op++) { + igt_subtest_f("%s-vm-bind-%s", s->name, op->name) { + xe_for_each_engine(device.fd_xe, hwe) + test_exec(device, hwe, 16, 32, s->state, + NO_RPM, op->flags); + } } for (const struct d_state *d = d_states; d->name; d++) { @@ -632,7 +674,7 @@ igt_main igt_assert(setup_d3(device, d->state)); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, s->state, - NO_RPM); + NO_RPM, 0); cleanup_d3(device); } } @@ -649,7 +691,7 @@ igt_main igt_assert(setup_d3(device, d->state)); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 1, - NO_SUSPEND, d->state); + NO_SUSPEND, d->state, 0); cleanup_d3(device); } @@ -657,7 +699,7 @@ igt_main igt_assert(setup_d3(device, d->state)); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 16, 32, - NO_SUSPEND, d->state); + NO_SUSPEND, d->state, 0); cleanup_d3(device); } } -- 2.39.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume 2024-03-25 20:10 ` [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume sai.gowtham.ch @ 2024-03-28 18:00 ` Rodrigo Vivi 0 siblings, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2024-03-28 18:00 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Tue, Mar 26, 2024 at 01:40:43AM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test validates vm bind usertpr functionality, by suspend and resuming the device > after binding VM to a VA. > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 78 ++++++++++++++++++++++++++++++++++----------- > 1 file changed, 60 insertions(+), 18 deletions(-) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index 3aa247353..8659e87cc 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -33,6 +33,8 @@ > #define MAGIC_1 0xc0ffee > #define MAGIC_2 0xdeadbeef > > +#define USERPTR (0x1 << 0) > + > typedef struct { > int fd_xe; > struct pci_device *pci_xe; > @@ -272,11 +274,26 @@ static void close_fw_handle(int sig) > * @d3hot: d3hot > * @d3cold: d3cold > */ > - > +/** > + * SUBTEST: %s-vm-bind-%s > + * DESCRIPTION: Test to check suspend/autoresume on %arg[1] state > + * with vm bind %arg[2] combination > + * Functionality: pm - %arg[1] > + * > + * arg[1]: > + * > + * @s2idle: s2idle > + * @s3: s3 > + * @s4: s4 > + * > + * arg[2]: > + * > + * @usrptr: usrptr > + */ > static void > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > int n_exec_queues, int n_execs, enum igt_suspend_state s_state, > - enum igt_acpi_d_state d_state) > + enum igt_acpi_d_state d_state, unsigned int flags) > { > uint32_t vm; > uint64_t addr = 0x1a0000; > @@ -320,10 +337,15 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > if (check_rpm && runtime_usage_available(device.pci_xe)) > rpm_usage = igt_pm_get_runtime_usage(device.pci_xe); > > - bo = xe_bo_create(device.fd_xe, vm, bo_size, > - vram_if_possible(device.fd_xe, eci->gt_id), > - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > - data = xe_bo_map(device.fd_xe, bo, bo_size); > + if (flags & USERPTR) { > + data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); > + } else { > + bo = xe_bo_create(device.fd_xe, vm, bo_size, > + vram_if_possible(device.fd_xe, eci->gt_id), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + data = xe_bo_map(device.fd_xe, bo, bo_size); > + } > + memset(data, 0, bo_size); move memset to inside the USERPTR if block. > > for (i = 0; i < n_exec_queues; i++) { > exec_queues[i] = xe_exec_queue_create(device.fd_xe, vm, eci, 0); > @@ -333,8 +355,12 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > > sync[0].handle = syncobj_create(device.fd_xe, 0); > > - xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, > - bo_size, sync, 1); > + if (bo) > + xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, > + bo_size, sync, 1); > + else > + xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > + to_user_pointer(data), addr, bo_size, sync, 1); > > if (check_rpm && runtime_usage_available(device.pci_xe)) > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); > @@ -398,9 +424,10 @@ NULL)); > xe_exec_queue_destroy(device.fd_xe, bind_exec_queues[i]); > } > > - munmap(data, bo_size); > - > - gem_close(device.fd_xe, bo); > + if (bo) { > + munmap(data, bo_size); > + gem_close(device.fd_xe, bo); > + } else { free(map); } > > if (check_rpm && runtime_usage_available(device.pci_xe)) > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) < rpm_usage); > @@ -583,6 +610,13 @@ igt_main > { "d3cold", IGT_ACPI_D3Cold }, > { NULL }, > }; > + const struct vm_op { > + const char *name; > + unsigned int flags; > + } vm_op[] = { > + { "usrptr", USERPTR }, > + { NULL }, > + }; > > igt_fixture { > memset(&device, 0, sizeof(device)); > @@ -593,7 +627,7 @@ igt_main > > /* Always perform initial once-basic exec checking for health */ > xe_for_each_engine(device.fd_xe, hwe) > - test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM); > + test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM, 0); > > igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed); > igt_assert(igt_setup_runtime_pm(device.fd_xe)); > @@ -610,7 +644,7 @@ igt_main > igt_subtest_f("%s-basic-exec", s->name) { > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, s->state, > - NO_RPM); > + NO_RPM, 0); > } > > igt_subtest_f("%s-exec-after", s->name) { > @@ -618,13 +652,21 @@ igt_main > SUSPEND_TEST_NONE); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, NO_SUSPEND, > - NO_RPM); > + NO_RPM, 0); > } > > igt_subtest_f("%s-multiple-execs", s->name) { > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 16, 32, s->state, > - NO_RPM); > + NO_RPM, 0); > + } > + > + for (const struct vm_op *op = vm_op; op->name; op++) { > + igt_subtest_f("%s-vm-bind-%s", s->name, op->name) { > + xe_for_each_engine(device.fd_xe, hwe) > + test_exec(device, hwe, 16, 32, s->state, > + NO_RPM, op->flags); > + } > } > > for (const struct d_state *d = d_states; d->name; d++) { > @@ -632,7 +674,7 @@ igt_main > igt_assert(setup_d3(device, d->state)); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, s->state, > - NO_RPM); > + NO_RPM, 0); > cleanup_d3(device); > } > } > @@ -649,7 +691,7 @@ igt_main > igt_assert(setup_d3(device, d->state)); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 1, > - NO_SUSPEND, d->state); > + NO_SUSPEND, d->state, 0); > cleanup_d3(device); > } > > @@ -657,7 +699,7 @@ igt_main > igt_assert(setup_d3(device, d->state)); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 16, 32, > - NO_SUSPEND, d->state); > + NO_SUSPEND, d->state, 0); > cleanup_d3(device); > } > } > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-03-25 20:10 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind sai.gowtham.ch 2024-03-25 20:10 ` [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume sai.gowtham.ch @ 2024-03-25 20:10 ` sai.gowtham.ch 2024-03-28 18:05 ` Rodrigo Vivi 2024-03-25 20:10 ` [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with s&R sai.gowtham.ch ` (3 subsequent siblings) 5 siblings, 1 reply; 15+ messages in thread From: sai.gowtham.ch @ 2024-03-25 20:10 UTC (permalink / raw) To: igt-dev, sai.gowtham.ch, rodrigo.vivi From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Test functionality of vm_bind prefetch with S&R Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_pm.c | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index 8659e87cc..e016f2bca 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -34,6 +34,7 @@ #define MAGIC_2 0xdeadbeef #define USERPTR (0x1 << 0) +#define PREFETCH (0x1 << 5) typedef struct { int fd_xe; @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) * arg[2]: * * @usrptr: usrptr + * @prefetch: prefetch */ static void test_exec(device_t device, struct drm_xe_engine_class_instance *eci, @@ -340,9 +342,16 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, if (flags & USERPTR) { data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); } else { - bo = xe_bo_create(device.fd_xe, vm, bo_size, - vram_if_possible(device.fd_xe, eci->gt_id), - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + + if (flags & PREFETCH) + bo = xe_bo_create(device.fd_xe, 0, bo_size, + all_memory_regions(device.fd_xe) | + vram_if_possible(device.fd_xe, 0), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + else + bo = xe_bo_create(device.fd_xe, vm, bo_size, + vram_if_possible(device.fd_xe, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); data = xe_bo_map(device.fd_xe, bo, bo_size); } memset(data, 0, bo_size); @@ -362,6 +371,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], to_user_pointer(data), addr, bo_size, sync, 1); + if (flags & PREFETCH) + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, + bo_size, sync, 1, 0); + if (check_rpm && runtime_usage_available(device.pci_xe)) igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); @@ -615,6 +628,7 @@ igt_main unsigned int flags; } vm_op[] = { { "usrptr", USERPTR }, + { "prefetch", PREFETCH }, { NULL }, }; -- 2.39.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-03-25 20:10 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch " sai.gowtham.ch @ 2024-03-28 18:05 ` Rodrigo Vivi 0 siblings, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2024-03-28 18:05 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Tue, Mar 26, 2024 at 01:40:44AM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test functionality of vm_bind prefetch with S&R > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 20 +++++++++++++++++--- > 1 file changed, 17 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index 8659e87cc..e016f2bca 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -34,6 +34,7 @@ > #define MAGIC_2 0xdeadbeef > > #define USERPTR (0x1 << 0) > +#define PREFETCH (0x1 << 5) why 0x5? we don't need to copy verbatim this from other tests. 0x2 makes more sense here. > > typedef struct { > int fd_xe; > @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) > * arg[2]: > * > * @usrptr: usrptr > + * @prefetch: prefetch > */ > static void > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > @@ -340,9 +342,16 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > if (flags & USERPTR) { > data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); > } else { > - bo = xe_bo_create(device.fd_xe, vm, bo_size, > - vram_if_possible(device.fd_xe, eci->gt_id), > - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + > + if (flags & PREFETCH) > + bo = xe_bo_create(device.fd_xe, 0, bo_size, > + all_memory_regions(device.fd_xe) | > + vram_if_possible(device.fd_xe, 0), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + else > + bo = xe_bo_create(device.fd_xe, vm, bo_size, > + vram_if_possible(device.fd_xe, eci->gt_id), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); why? I don't see this in other tests with 'prefetch'? > data = xe_bo_map(device.fd_xe, bo, bo_size); > } > memset(data, 0, bo_size); > @@ -362,6 +371,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > to_user_pointer(data), addr, bo_size, sync, 1); > > + if (flags & PREFETCH) > + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > + bo_size, sync, 1, 0); > + > if (check_rpm && runtime_usage_available(device.pci_xe)) > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); > > @@ -615,6 +628,7 @@ igt_main > unsigned int flags; > } vm_op[] = { > { "usrptr", USERPTR }, > + { "prefetch", PREFETCH }, > { NULL }, > }; > > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with s&R 2024-03-25 20:10 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind sai.gowtham.ch 2024-03-25 20:10 ` [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume sai.gowtham.ch 2024-03-25 20:10 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch " sai.gowtham.ch @ 2024-03-25 20:10 ` sai.gowtham.ch 2024-03-28 18:16 ` Rodrigo Vivi 2024-03-25 22:00 ` ✓ CI.xeBAT: success for tests/intel/xe_pm: Tests to validate vm-bind (rev2) Patchwork ` (2 subsequent siblings) 5 siblings, 1 reply; 15+ messages in thread From: sai.gowtham.ch @ 2024-03-25 20:10 UTC (permalink / raw) To: igt-dev, sai.gowtham.ch, rodrigo.vivi From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Test validates vm unbind all flag functionality with suspend and resume Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_pm.c | 61 ++++++++++++++++++++++++++++++++++----------- 1 file changed, 46 insertions(+), 15 deletions(-) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index e016f2bca..7a9816623 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -292,10 +292,23 @@ static void close_fw_handle(int sig) * @usrptr: usrptr * @prefetch: prefetch */ + +/** + * SUBTEST: %s-vm-unbind-all + * Description: Validate vm unbind all flag functionality with suspend and resume + * + * Functionality: pm - %arg[1] + * + * arg[1]: + * + * @s2idle: s2idle + * @s3: s3 + * @s4: s4 + */ static void test_exec(device_t device, struct drm_xe_engine_class_instance *eci, int n_exec_queues, int n_execs, enum igt_suspend_state s_state, - enum igt_acpi_d_state d_state, unsigned int flags) + enum igt_acpi_d_state d_state, unsigned int flags, int n_vmas) { uint32_t vm; uint64_t addr = 0x1a0000; @@ -364,12 +377,19 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, sync[0].handle = syncobj_create(device.fd_xe, 0); - if (bo) - xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, - bo_size, sync, 1); - else + if (bo) { + if (n_vmas) { + for (i = 0; i < n_vmas; i++) + xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, + bo_size, sync, 1); + } else { + xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, + bo_size, sync, 1); + } + } else { xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], to_user_pointer(data), addr, bo_size, sync, 1); + } if (flags & PREFETCH) xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, @@ -421,8 +441,13 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, rpm_usage = igt_pm_get_runtime_usage(device.pci_xe); sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; - xe_vm_unbind_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, - bo_size, sync, 1); + + if (n_vmas) + xe_vm_unbind_all_async(device.fd_xe, vm, 0, bo, sync, 1); + else + xe_vm_unbind_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, + bo_size, sync, 1); + igt_assert(syncobj_wait(device.fd_xe, &sync[0].handle, 1, INT64_MAX, 0, NULL)); @@ -641,7 +666,7 @@ igt_main /* Always perform initial once-basic exec checking for health */ xe_for_each_engine(device.fd_xe, hwe) - test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM, 0); + test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM, 0, 0); igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed); igt_assert(igt_setup_runtime_pm(device.fd_xe)); @@ -658,7 +683,7 @@ igt_main igt_subtest_f("%s-basic-exec", s->name) { xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, s->state, - NO_RPM, 0); + NO_RPM, 0, 0); } igt_subtest_f("%s-exec-after", s->name) { @@ -666,29 +691,35 @@ igt_main SUSPEND_TEST_NONE); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, NO_SUSPEND, - NO_RPM, 0); + NO_RPM, 0, 0); } igt_subtest_f("%s-multiple-execs", s->name) { xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 16, 32, s->state, - NO_RPM, 0); + NO_RPM, 0, 0); } for (const struct vm_op *op = vm_op; op->name; op++) { igt_subtest_f("%s-vm-bind-%s", s->name, op->name) { xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 16, 32, s->state, - NO_RPM, op->flags); + NO_RPM, op->flags, 0); } } + igt_subtest_f("%s-vm-unbind-all", s->name) { + xe_for_each_engine(device.fd_xe, hwe) + test_exec(device, hwe, 16, 32, s->state, NO_RPM, + 0, 2); + } + for (const struct d_state *d = d_states; d->name; d++) { igt_subtest_f("%s-%s-basic-exec", s->name, d->name) { igt_assert(setup_d3(device, d->state)); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, s->state, - NO_RPM, 0); + NO_RPM, 0, 0); cleanup_d3(device); } } @@ -705,7 +736,7 @@ igt_main igt_assert(setup_d3(device, d->state)); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 1, - NO_SUSPEND, d->state, 0); + NO_SUSPEND, d->state, 0, 0); cleanup_d3(device); } @@ -713,7 +744,7 @@ igt_main igt_assert(setup_d3(device, d->state)); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 16, 32, - NO_SUSPEND, d->state, 0); + NO_SUSPEND, d->state, 0, 0); cleanup_d3(device); } } -- 2.39.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with s&R 2024-03-25 20:10 ` [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with s&R sai.gowtham.ch @ 2024-03-28 18:16 ` Rodrigo Vivi 0 siblings, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2024-03-28 18:16 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Tue, Mar 26, 2024 at 01:40:45AM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test validates vm unbind all flag functionality with suspend and resume > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 61 ++++++++++++++++++++++++++++++++++----------- > 1 file changed, 46 insertions(+), 15 deletions(-) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index e016f2bca..7a9816623 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -292,10 +292,23 @@ static void close_fw_handle(int sig) > * @usrptr: usrptr > * @prefetch: prefetch > */ > + > +/** > + * SUBTEST: %s-vm-unbind-all > + * Description: Validate vm unbind all flag functionality with suspend and resume > + * > + * Functionality: pm - %arg[1] > + * > + * arg[1]: > + * > + * @s2idle: s2idle > + * @s3: s3 > + * @s4: s4 > + */ > static void > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > int n_exec_queues, int n_execs, enum igt_suspend_state s_state, > - enum igt_acpi_d_state d_state, unsigned int flags) > + enum igt_acpi_d_state d_state, unsigned int flags, int n_vmas) instead passing another argument for a value that is either 0 (1?) or 2, create a new operation flag and pass in the existing 'flags' input. then create a #define MAX_VMAS 2 then, inside the function: int n_vmas = flags & UNBIND_ALL ? 2 : 1; > { > uint32_t vm; > uint64_t addr = 0x1a0000; > @@ -364,12 +377,19 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > > sync[0].handle = syncobj_create(device.fd_xe, 0); > > - if (bo) > - xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, > - bo_size, sync, 1); > - else > + if (bo) { > + if (n_vmas) { please don't do that. use n_vmas 1 or 2 and then make the for to run only once for 1 and twice for 2: > + for (i = 0; i < n_vmas; i++) > + xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, > + bo_size, sync, 1); I'm afraid you have forgotten to use the 'i' in here? s/addr/addr + i * bo_size/ perhaps? > + } else { > + xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, > + bo_size, sync, 1); > + } > + } else { > xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > to_user_pointer(data), addr, bo_size, sync, 1); > + } > > if (flags & PREFETCH) > xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > @@ -421,8 +441,13 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > rpm_usage = igt_pm_get_runtime_usage(device.pci_xe); > > sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; > - xe_vm_unbind_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > - bo_size, sync, 1); > + > + if (n_vmas) > + xe_vm_unbind_all_async(device.fd_xe, vm, 0, bo, sync, 1); > + else > + xe_vm_unbind_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > + bo_size, sync, 1); > + > igt_assert(syncobj_wait(device.fd_xe, &sync[0].handle, 1, INT64_MAX, 0, > NULL)); > > @@ -641,7 +666,7 @@ igt_main > > /* Always perform initial once-basic exec checking for health */ > xe_for_each_engine(device.fd_xe, hwe) > - test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM, 0); > + test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM, 0, 0); > > igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed); > igt_assert(igt_setup_runtime_pm(device.fd_xe)); > @@ -658,7 +683,7 @@ igt_main > igt_subtest_f("%s-basic-exec", s->name) { > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, s->state, > - NO_RPM, 0); > + NO_RPM, 0, 0); > } > > igt_subtest_f("%s-exec-after", s->name) { > @@ -666,29 +691,35 @@ igt_main > SUSPEND_TEST_NONE); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, NO_SUSPEND, > - NO_RPM, 0); > + NO_RPM, 0, 0); > } > > igt_subtest_f("%s-multiple-execs", s->name) { > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 16, 32, s->state, > - NO_RPM, 0); > + NO_RPM, 0, 0); > } > > for (const struct vm_op *op = vm_op; op->name; op++) { > igt_subtest_f("%s-vm-bind-%s", s->name, op->name) { > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 16, 32, s->state, > - NO_RPM, op->flags); > + NO_RPM, op->flags, 0); > } > } > > + igt_subtest_f("%s-vm-unbind-all", s->name) { > + xe_for_each_engine(device.fd_xe, hwe) > + test_exec(device, hwe, 16, 32, s->state, NO_RPM, > + 0, 2); > + } > + > for (const struct d_state *d = d_states; d->name; d++) { > igt_subtest_f("%s-%s-basic-exec", s->name, d->name) { > igt_assert(setup_d3(device, d->state)); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, s->state, > - NO_RPM, 0); > + NO_RPM, 0, 0); > cleanup_d3(device); > } > } > @@ -705,7 +736,7 @@ igt_main > igt_assert(setup_d3(device, d->state)); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 1, > - NO_SUSPEND, d->state, 0); > + NO_SUSPEND, d->state, 0, 0); > cleanup_d3(device); > } > > @@ -713,7 +744,7 @@ igt_main > igt_assert(setup_d3(device, d->state)); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 16, 32, > - NO_SUSPEND, d->state, 0); > + NO_SUSPEND, d->state, 0, 0); > cleanup_d3(device); > } > } > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_pm: Tests to validate vm-bind (rev2) 2024-03-25 20:10 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind sai.gowtham.ch ` (2 preceding siblings ...) 2024-03-25 20:10 ` [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with s&R sai.gowtham.ch @ 2024-03-25 22:00 ` Patchwork 2024-03-25 22:08 ` ✓ Fi.CI.BAT: " Patchwork 2024-03-26 4:39 ` ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-03-25 22:00 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1067 bytes --] == Series Details == Series: tests/intel/xe_pm: Tests to validate vm-bind (rev2) URL : https://patchwork.freedesktop.org/series/131164/ State : success == Summary == CI Bug Log - changes from XEIGT_7782_BAT -> XEIGTPW_10905_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 3) ------------------------------ Missing (1): bat-dg2-oem2 Changes ------- No changes found Build changes ------------- * IGT: IGT_7782 -> IGTPW_10905 * Linux: xe-988-d1ecfbbbb194e8f7941bd84f77f7c938b461ce14 -> xe-990-3dc2116dbf63f02771f241fdabee8a3e3ff9e8a8 IGTPW_10905: 10905 IGT_7782: a404f73182948e843640d00cc279883391cf6ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-988-d1ecfbbbb194e8f7941bd84f77f7c938b461ce14: d1ecfbbbb194e8f7941bd84f77f7c938b461ce14 xe-990-3dc2116dbf63f02771f241fdabee8a3e3ff9e8a8: 3dc2116dbf63f02771f241fdabee8a3e3ff9e8a8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10905/index.html [-- Attachment #2: Type: text/html, Size: 1626 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_pm: Tests to validate vm-bind (rev2) 2024-03-25 20:10 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind sai.gowtham.ch ` (3 preceding siblings ...) 2024-03-25 22:00 ` ✓ CI.xeBAT: success for tests/intel/xe_pm: Tests to validate vm-bind (rev2) Patchwork @ 2024-03-25 22:08 ` Patchwork 2024-03-26 4:39 ` ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-03-25 22:08 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9858 bytes --] == Series Details == Series: tests/intel/xe_pm: Tests to validate vm-bind (rev2) URL : https://patchwork.freedesktop.org/series/131164/ State : success == Summary == CI Bug Log - changes from CI_DRM_14481 -> IGTPW_10905 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/index.html Participating hosts (37 -> 34) ------------------------------ Missing (3): bat-dg2-11 fi-bsw-nick fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10905 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-jsl-1/igt@debugfs_test@basic-hwmon.html - bat-arls-3: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-jsl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-arls-3: NOTRUN -> [SKIP][4] ([i915#10213]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-arls-3: NOTRUN -> [SKIP][6] ([i915#4083]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arls-3: NOTRUN -> [SKIP][7] ([i915#10197] / [i915#10211] / [i915#4079]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arls-3: NOTRUN -> [SKIP][8] ([i915#10196] / [i915#4077]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arls-3: NOTRUN -> [SKIP][9] ([i915#10206] / [i915#4079]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-arls-3: NOTRUN -> [SKIP][10] ([i915#10209]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-arls-3: NOTRUN -> [SKIP][11] ([i915#10200]) +9 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-arls-3: NOTRUN -> [SKIP][12] ([i915#10202]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][13] ([i915#4103]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-arls-3: NOTRUN -> [SKIP][14] ([i915#9886]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@kms_dsc@dsc-basic.html - bat-jsl-1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9886]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-arls-3: NOTRUN -> [SKIP][16] ([i915#10207]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@kms_force_connector_basic@force-load-detect.html - bat-jsl-1: NOTRUN -> [SKIP][17] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-arls-3: NOTRUN -> [SKIP][18] ([i915#9812]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-arls-3: NOTRUN -> [SKIP][19] ([i915#9732]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-jsl-1: NOTRUN -> [SKIP][20] ([i915#3555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-arls-3: NOTRUN -> [SKIP][21] ([i915#10208] / [i915#8809]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-mmap: - bat-arls-3: NOTRUN -> [SKIP][22] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-arls-3: NOTRUN -> [SKIP][23] ([i915#10212] / [i915#3708]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-arls-3: NOTRUN -> [SKIP][24] ([i915#10214] / [i915#3708]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arls-3: NOTRUN -> [SKIP][25] ([i915#10216] / [i915#3708]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-arls-3/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@gt_tlb: - bat-dg2-9: [ABORT][26] ([i915#10366]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/bat-dg2-9/igt@i915_selftest@live@gt_tlb.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/bat-dg2-9/igt@i915_selftest@live@gt_tlb.html #### Warnings #### * igt@i915_module_load@reload: - fi-kbl-7567u: [DMESG-WARN][28] ([i915#180] / [i915#8585]) -> [DMESG-WARN][29] ([i915#180] / [i915#1982] / [i915#8585]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/fi-kbl-7567u/igt@i915_module_load@reload.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/fi-kbl-7567u/igt@i915_module_load@reload.html [i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7782 -> IGTPW_10905 CI-20190529: 20190529 CI_DRM_14481: 3dc2116dbf63f02771f241fdabee8a3e3ff9e8a8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10905: 10905 IGT_7782: a404f73182948e843640d00cc279883391cf6ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_big_joiner@2x-modeset +igt@xe_pm@s2idle-vm-bind-prefetch +igt@xe_pm@s2idle-vm-bind-usrptr +igt@xe_pm@s2idle-vm-unbind-all +igt@xe_pm@s3-vm-bind-prefetch +igt@xe_pm@s3-vm-bind-usrptr +igt@xe_pm@s3-vm-unbind-all +igt@xe_pm@s4-vm-bind-prefetch +igt@xe_pm@s4-vm-bind-usrptr +igt@xe_pm@s4-vm-unbind-all -igt@kms_big_joiner@basic-force-joiner -igt@kms_big_joiner@invalid-modeset-force-joiner == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/index.html [-- Attachment #2: Type: text/html, Size: 11796 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_pm: Tests to validate vm-bind (rev2) 2024-03-25 20:10 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind sai.gowtham.ch ` (4 preceding siblings ...) 2024-03-25 22:08 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-03-26 4:39 ` Patchwork 5 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-03-26 4:39 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 86469 bytes --] == Series Details == Series: tests/intel/xe_pm: Tests to validate vm-bind (rev2) URL : https://patchwork.freedesktop.org/series/131164/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14481_full -> IGTPW_10905_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10905_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10905_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10905_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@deep@vcs0: - shard-dg1: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg1-16/igt@gem_exec_schedule@deep@vcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-15/igt@gem_exec_schedule@deep@vcs0.html * igt@gem_exec_schedule@deep@vcs1: - shard-dg2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-11/igt@gem_exec_schedule@deep@vcs1.html * igt@i915_selftest@perf@migrate: - shard-dg2: [PASS][4] -> [ABORT][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg2-3/igt@i915_selftest@perf@migrate.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@i915_selftest@perf@migrate.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-2-x: - shard-glk: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-glk5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-2-x.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-glk8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-2-x.html * igt@kms_setmode@basic@pipe-b-hdmi-a-4: - shard-dg1: [PASS][8] -> [FAIL][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg1-18/igt@kms_setmode@basic@pipe-b-hdmi-a-4.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_setmode@basic@pipe-b-hdmi-a-4.html Known issues ------------ Here are the changes found in IGTPW_10905_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-3/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#6230]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-17/igt@api_intel_bb@crc32.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][12] ([i915#10380]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@busy-idle@vcs1: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +11 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@drm_fdinfo@busy-idle@vcs1.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +22 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: [PASS][15] -> [FAIL][16] ([i915#7742]) +1 other test fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_create@create-clear@smem0: - shard-dg2: [PASS][20] -> [INCOMPLETE][21] ([i915#10497]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg2-10/igt@gem_create@create-clear@smem0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@gem_create@create-clear@smem0.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-snb1/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-7/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4812]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-1/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][32] ([i915#9606]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-10/igt@gem_exec_capture@many-4k-zero.html - shard-rkl: NOTRUN -> [FAIL][33] ([i915#9606]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-1/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][34] ([i915#2846]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-glk8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-15/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][37] -> [FAIL][38] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-glk1/igt@gem_exec_fair@basic-none-share@rcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-glk1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo: - shard-snb: NOTRUN -> [SKIP][39] +68 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-snb2/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][40] ([i915#2842]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-glk3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473] / [i915#4771]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-5/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-17/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: NOTRUN -> [FAIL][43] ([i915#2842]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#5107]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +8 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +8 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-5/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +6 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4812]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-fds-forked: - shard-dg1: [PASS][51] -> [INCOMPLETE][52] ([i915#9857]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg1-18/igt@gem_exec_whisper@basic-fds-forked.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@gem_exec_whisper@basic-fds-forked.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#2190]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg2: NOTRUN -> [FAIL][56] ([i915#10378]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg1: NOTRUN -> [FAIL][57] ([i915#10378]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][58] ([i915#4613]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-glk1/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-2/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-4/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][64] ([i915#284]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-wc: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +14 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@gem_mmap_gtt@basic-wc.html * igt@gem_mmap_gtt@close-race: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-2/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4077]) +18 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-5/igt@gem_mmap_wc@read-write.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-17/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@gem_partial_pwrite_pread@write.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][72] ([i915#2658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-glk5/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-7/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-on.html - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@beyond-eob: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +10 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-1/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8428]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#8411]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3282]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-1/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-8/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-10/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-3/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [INCOMPLETE][92] ([i915#9820] / [i915#9849]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][93] -> [INCOMPLETE][94] ([i915#9820]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [INCOMPLETE][95] ([i915#9849]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: NOTRUN -> [WARN][96] ([i915#2681]) +3 other tests warn [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#6621]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6621]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-7/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][99] -> [INCOMPLETE][100] ([i915#7790]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-snb7/igt@i915_pm_rps@reset.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-snb5/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#8925]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][102] ([i915#7443]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#3826]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#9531]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5286]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5286]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) +5 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [FAIL][111] ([i915#5138]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#3638]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#3638]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][114] -> [FAIL][115] ([i915#3743]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5190]) +16 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][117] +9 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +6 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@2x-modeset: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#2705]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-6/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6095]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#6095]) +73 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#6095]) +148 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#6095]) +15 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +91 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#3742]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#7213]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@gamma: - shard-tglu: NOTRUN -> [SKIP][128] +19 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-2/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7828]) +14 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-10/igt@kms_chamelium_frames@dp-crc-fast.html - shard-tglu: NOTRUN -> [SKIP][130] ([i915#7828]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-5/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#7828]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-2/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#7828]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#7828]) +11 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-15/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7118] / [i915#9424]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7118] / [i915#9424]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3299]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3116] / [i915#3299]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#9424]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#9424]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-17/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7118]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][142] ([i915#6944] / [i915#7116] / [i915#7118]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-3/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][143] ([i915#1339]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3555]) +10 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3359]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#8814]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3555]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-17/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3359]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3359]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555]) +8 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3359]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#4103]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg2: NOTRUN -> [SKIP][153] ([i915#4103] / [i915#4213]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#9809]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#9067]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-15/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#4103]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#9723]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#9723]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-10/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3469]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#2065] / [i915#4854]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-5/igt@kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][163] ([i915#4854]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-3/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#658]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-3/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][165] ([i915#658]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#9934]) +9 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-15/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3637]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-3/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#3637]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][169] +23 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-absolute-wf_vblank@c-edp1: - shard-mtlp: [PASS][170] -> [DMESG-WARN][171] ([i915#9157]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank@c-edp1.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank@c-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][172] ([i915#2122]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-vga1: - shard-snb: [PASS][173] -> [FAIL][174] ([i915#2122]) +1 other test fail [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible@b-vga1.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible@b-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#2672]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#2587] / [i915#2672]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#2672]) +4 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#5354]) +40 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#8708]) +20 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3458]) +26 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3458]) +19 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3023]) +32 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#1825]) +41 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][186] +48 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#8708]) +18 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#5439]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#9766]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][190] ([i915#9766]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#10070]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8708]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#1825]) +13 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#4816]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][199] ([i915#4816]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#4816]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#1839]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-17/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#6301]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#8821]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8821]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8806]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#6953] / [i915#9423]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#9423]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9423]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#5176]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#9423]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#5176] / [i915#9423]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#9423]) +15 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#5235]) +7 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#5235]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#5235]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#5235]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#5235] / [i915#9423]) +15 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#5235]) +7 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#5354]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#9685]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][222] ([i915#9685]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3361]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#9340]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#9519]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][226] -> [SKIP][227] ([i915#9519]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#9519]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][229] -> [SKIP][230] ([i915#9519]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#6524] / [i915#6805]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-7/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#6524]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9808]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-4/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][234] +47 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-2/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9683]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#9688]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-1/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#1072] / [i915#9732]) +22 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#1072] / [i915#9732]) +29 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@pr-basic: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#1072] / [i915#9673] / [i915#9732]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-11/igt@kms_psr@pr-basic.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#1072] / [i915#9732]) +25 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-17/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#9732]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-2/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][242] +293 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-glk9/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#4235]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-5/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#4235]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#5190]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#4235] / [i915#5190]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#5289]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#3555]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#8623]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][250] ([i915#8623]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#8623]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [PASS][252] -> [FAIL][253] ([i915#9196]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][254] ([i915#9196]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#9906]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#9906]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][257] ([i915#2437]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-glk5/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][258] ([i915#2437]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#2437] / [i915#9412]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#2436] / [i915#7387]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#7387]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@perf@global-sseu-config.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][262] ([i915#9100]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][263] ([i915#4349]) +3 other tests fail [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#8516]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#8516]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#3708] / [i915#4077]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-17/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#3708]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-15/igt@prime_vgem@basic-fence-read.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#9917]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-rkl: NOTRUN -> [SKIP][269] ([i915#9917]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][270] ([i915#9781]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-6/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][271] ([i915#9779]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-3/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][272] ([i915#9779]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-glk5/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#2575]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-2/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_cl@bad-perfmon: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#2575]) +15 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-3/igt@v3d/v3d_submit_cl@bad-perfmon.html * igt@v3d/v3d_submit_cl@single-in-sync: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#2575]) +9 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@v3d/v3d_submit_cl@single-in-sync.html * igt@v3d/v3d_submit_csd@multiple-job-submission: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#2575]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-6/igt@v3d/v3d_submit_csd@multiple-job-submission.html * igt@vc4/vc4_create_bo@create-bo-zeroed: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#7711]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-7/igt@vc4/vc4_create_bo@create-bo-zeroed.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#7711]) +7 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-2/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#7711]) +9 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-18/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_tiling@set-get: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#7711]) +8 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@vc4/vc4_tiling@set-get.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [FAIL][281] ([i915#7742]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-rkl-2/igt@drm_fdinfo@idle@rcs0.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][283] ([i915#2846]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [FAIL][285] ([i915#2842]) -> [PASS][286] +1 other test pass [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-rkl: [FAIL][287] ([i915#2842]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-rkl-1/igt@gem_exec_fair@basic-none-solo@rcs0.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][289] ([i915#5493]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][291] ([i915#3743]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][293] ([i915#2346]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-tglu: [DMESG-WARN][295] ([i915#10166] / [i915#1982]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-tglu-7/igt@kms_cursor_legacy@torture-move@pipe-a.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-6/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1: - shard-tglu: [FAIL][297] ([i915#79]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-tglu-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][299] ([i915#9519]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][301] ([i915#9519]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-tglu: [FAIL][303] ([i915#9196]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][305] ([i915#9196]) -> [PASS][306] +1 other test pass [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@prime_busy@hang-wait@ccs2: - shard-dg2: [INCOMPLETE][307] ([i915#10067]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg2-10/igt@prime_busy@hang-wait@ccs2.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-11/igt@prime_busy@hang-wait@ccs2.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [INCOMPLETE][309] ([i915#9364]) -> [ABORT][310] ([i915#9846]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_eio@kms: - shard-dg2: [INCOMPLETE][311] ([i915#10513] / [i915#1982]) -> [FAIL][312] ([i915#5784]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg2-3/igt@gem_eio@kms.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-5/igt@gem_eio@kms.html - shard-dg1: [INCOMPLETE][313] ([i915#10513]) -> [FAIL][314] ([i915#5784]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg1-16/igt@gem_eio@kms.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg1-16/igt@gem_eio@kms.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][315] ([i915#9820]) -> [INCOMPLETE][316] ([i915#9820] / [i915#9849]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][317] ([i915#10131] / [i915#9820]) -> [ABORT][318] ([i915#10131] / [i915#9697]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][319] ([i915#10031]) -> [INCOMPLETE][320] ([i915#4817]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: [SKIP][321] ([i915#1072] / [i915#9732]) -> [SKIP][322] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-dg2-5/igt@kms_psr@fbc-psr-primary-mmap-gtt.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-snb: [INCOMPLETE][323] ([i915#2295]) -> [FAIL][324] ([i915#9779]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14481/shard-snb4/igt@syncobj_wait@invalid-wait-zero-handles.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/shard-snb4/igt@syncobj_wait@invalid-wait-zero-handles.html [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10067]: https://gitlab.freedesktop.org/drm/intel/issues/10067 [i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10380]: https://gitlab.freedesktop.org/drm/intel/issues/10380 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#10497]: https://gitlab.freedesktop.org/drm/intel/issues/10497 [i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#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#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [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#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100 [i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7782 -> IGTPW_10905 CI-20190529: 20190529 CI_DRM_14481: 3dc2116dbf63f02771f241fdabee8a3e3ff9e8a8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10905: 10905 IGT_7782: a404f73182948e843640d00cc279883391cf6ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10905/index.html [-- Attachment #2: Type: text/html, Size: 105609 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R
@ 2024-04-01 18:46 sai.gowtham.ch
2024-04-01 18:46 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch
0 siblings, 1 reply; 15+ messages in thread
From: sai.gowtham.ch @ 2024-04-01 18:46 UTC (permalink / raw)
To: igt-dev, rodrigo.vivi, sai.gowtham.ch
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
This patch series has following changes:
1. Validate functionality of VM_BIND USERPTR/PREFETCH op with S&R
2. Test vm_unbind op by binding multiple va's to a vm and check the
functionality with S&R.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Sai Gowtham Ch (3):
tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend
and resume
tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and
resume
tests/intel/xe_pm: Tests vm-unbind all flag functionality with S&R
tests/intel/xe_pm.c | 102 +++++++++++++++++++++++++++++++++++---------
1 file changed, 82 insertions(+), 20 deletions(-)
--
2.39.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-04-01 18:46 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch @ 2024-04-01 18:46 ` sai.gowtham.ch 2024-04-03 20:27 ` Rodrigo Vivi 0 siblings, 1 reply; 15+ messages in thread From: sai.gowtham.ch @ 2024-04-01 18:46 UTC (permalink / raw) To: igt-dev, rodrigo.vivi, sai.gowtham.ch From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Test functionality of vm_bind prefetch with S&R. Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_pm.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index d2e5520a1..839540f5c 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -34,6 +34,7 @@ #define MAGIC_2 0xdeadbeef #define USERPTR (0x1 << 0) +#define PREFETCH (0x1 << 2) typedef struct { int fd_xe; @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) * arg[2]: * * @usrptr: usrptr + * @prefetch: prefetch */ static void test_exec(device_t device, struct drm_xe_engine_class_instance *eci, @@ -362,6 +364,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], to_user_pointer(data), addr, bo_size, sync, 1); + if (flags & PREFETCH) + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, + bo_size, sync, 1, 0); + if (check_rpm && runtime_usage_available(device.pci_xe)) igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); @@ -617,6 +623,7 @@ igt_main unsigned int flags; } vm_op[] = { { "usrptr", USERPTR }, + { "prefetch", PREFETCH }, { NULL }, }; -- 2.39.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-04-01 18:46 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch @ 2024-04-03 20:27 ` Rodrigo Vivi 0 siblings, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2024-04-03 20:27 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Tue, Apr 02, 2024 at 12:16:30AM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test functionality of vm_bind prefetch with S&R. > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index d2e5520a1..839540f5c 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -34,6 +34,7 @@ > #define MAGIC_2 0xdeadbeef > > #define USERPTR (0x1 << 0) > +#define PREFETCH (0x1 << 2) > > typedef struct { > int fd_xe; > @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) > * arg[2]: > * > * @usrptr: usrptr > + * @prefetch: prefetch > */ > static void > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > @@ -362,6 +364,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > to_user_pointer(data), addr, bo_size, sync, 1); > > + if (flags & PREFETCH) > + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > + bo_size, sync, 1, 0); this test is failing badly on my DG2. looking to tests/intel/xe_exec_fault_mode.c it looks like there's a lot more to do in the prefech case, then only this like nere. > + > if (check_rpm && runtime_usage_available(device.pci_xe)) > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); > > @@ -617,6 +623,7 @@ igt_main > unsigned int flags; > } vm_op[] = { > { "usrptr", USERPTR }, > + { "prefetch", PREFETCH }, > { NULL }, > }; > > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R
@ 2024-04-15 8:40 sai.gowtham.ch
2024-04-15 8:40 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch
0 siblings, 1 reply; 15+ messages in thread
From: sai.gowtham.ch @ 2024-04-15 8:40 UTC (permalink / raw)
To: igt-dev, sai.gowtham.ch, rodrigo.vivi
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
This patch series has following changes:
1. Validate functionality of VM_BIND USERPTR/PREFETCH op with S&R
2. Test vm_unbind op by binding multiple va's to a vm and check the
functionality with S&R.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Sai Gowtham Ch (3):
tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend
and resume
tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and
resume
tests/intel/xe_pm: Tests vm-unbind all flag functionality with S&R
tests/intel/xe_pm.c | 107 +++++++++++++++++++++++++++++++++++---------
1 file changed, 87 insertions(+), 20 deletions(-)
--
2.39.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-04-15 8:40 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch @ 2024-04-15 8:40 ` sai.gowtham.ch 2024-04-16 1:29 ` Rodrigo Vivi 0 siblings, 1 reply; 15+ messages in thread From: sai.gowtham.ch @ 2024-04-15 8:40 UTC (permalink / raw) To: igt-dev, sai.gowtham.ch, rodrigo.vivi From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Test functionality of vm_bind prefetch with S&R. Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_pm.c | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index fafd7a52e..8857265a9 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -34,6 +34,7 @@ #define MAGIC_2 0xdeadbeef #define USERPTR (0x1 << 0) +#define PREFETCH (0x1 << 2) typedef struct { int fd_xe; @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) * arg[2]: * * @usrptr: usrptr + * @prefetch: prefetch */ static void test_exec(device_t device, struct drm_xe_engine_class_instance *eci, @@ -341,9 +343,15 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); memset(data, 0, bo_size); } else { - bo = xe_bo_create(device.fd_xe, vm, bo_size, - vram_if_possible(device.fd_xe, eci->gt_id), - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + if (flags & PREFETCH) + bo = xe_bo_create(device.fd_xe, 0, bo_size, + all_memory_regions(device.fd_xe) | + vram_if_possible(device.fd_xe, 0), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + else + bo = xe_bo_create(device.fd_xe, vm, bo_size, + vram_if_possible(device.fd_xe, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); data = xe_bo_map(device.fd_xe, bo, bo_size); } @@ -362,6 +370,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], to_user_pointer(data), addr, bo_size, sync, 1); + if (flags & PREFETCH) + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, + bo_size, sync, 1, 0); + if (check_rpm && runtime_usage_available(device.pci_xe)) igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); @@ -617,6 +629,7 @@ igt_main unsigned int flags; } vm_op[] = { { "usrptr", USERPTR }, + { "prefetch", PREFETCH }, { NULL }, }; -- 2.39.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-04-15 8:40 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch @ 2024-04-16 1:29 ` Rodrigo Vivi 2024-04-16 20:58 ` Rodrigo Vivi 0 siblings, 1 reply; 15+ messages in thread From: Rodrigo Vivi @ 2024-04-16 1:29 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Mon, Apr 15, 2024 at 02:10:34PM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test functionality of vm_bind prefetch with S&R. > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 19 ++++++++++++++++--- > 1 file changed, 16 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index fafd7a52e..8857265a9 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -34,6 +34,7 @@ > #define MAGIC_2 0xdeadbeef > > #define USERPTR (0x1 << 0) > +#define PREFETCH (0x1 << 2) what happen to the bit 1? > > typedef struct { > int fd_xe; > @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) > * arg[2]: > * > * @usrptr: usrptr > + * @prefetch: prefetch > */ > static void > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > @@ -341,9 +343,15 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); > memset(data, 0, bo_size); > } else { > - bo = xe_bo_create(device.fd_xe, vm, bo_size, > - vram_if_possible(device.fd_xe, eci->gt_id), > - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + if (flags & PREFETCH) > + bo = xe_bo_create(device.fd_xe, 0, bo_size, > + all_memory_regions(device.fd_xe) | > + vram_if_possible(device.fd_xe, 0), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + else > + bo = xe_bo_create(device.fd_xe, vm, bo_size, > + vram_if_possible(device.fd_xe, eci->gt_id), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > data = xe_bo_map(device.fd_xe, bo, bo_size); > } > > @@ -362,6 +370,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > to_user_pointer(data), addr, bo_size, sync, 1); > > + if (flags & PREFETCH) > + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > + bo_size, sync, 1, 0); anything else missing here? apparently the patch still failed badly and I lost my machine now... will check again tomorrow with some debugs. > + > if (check_rpm && runtime_usage_available(device.pci_xe)) > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); > > @@ -617,6 +629,7 @@ igt_main > unsigned int flags; > } vm_op[] = { > { "usrptr", USERPTR }, > + { "prefetch", PREFETCH }, > { NULL }, > }; > > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-04-16 1:29 ` Rodrigo Vivi @ 2024-04-16 20:58 ` Rodrigo Vivi 0 siblings, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2024-04-16 20:58 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Mon, Apr 15, 2024 at 09:29:56PM -0400, Rodrigo Vivi wrote: > On Mon, Apr 15, 2024 at 02:10:34PM +0530, sai.gowtham.ch@intel.com wrote: > > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > > > Test functionality of vm_bind prefetch with S&R. > > > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > --- > > tests/intel/xe_pm.c | 19 ++++++++++++++++--- > > 1 file changed, 16 insertions(+), 3 deletions(-) > > > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > > index fafd7a52e..8857265a9 100644 > > --- a/tests/intel/xe_pm.c > > +++ b/tests/intel/xe_pm.c > > @@ -34,6 +34,7 @@ > > #define MAGIC_2 0xdeadbeef > > > > #define USERPTR (0x1 << 0) > > +#define PREFETCH (0x1 << 2) > > what happen to the bit 1? > > > > > typedef struct { > > int fd_xe; > > @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) > > * arg[2]: > > * > > * @usrptr: usrptr > > + * @prefetch: prefetch > > */ > > static void > > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > > @@ -341,9 +343,15 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > > data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); > > memset(data, 0, bo_size); > > } else { > > - bo = xe_bo_create(device.fd_xe, vm, bo_size, > > - vram_if_possible(device.fd_xe, eci->gt_id), > > - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > + if (flags & PREFETCH) > > + bo = xe_bo_create(device.fd_xe, 0, bo_size, > > + all_memory_regions(device.fd_xe) | > > + vram_if_possible(device.fd_xe, 0), > > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > + else > > + bo = xe_bo_create(device.fd_xe, vm, bo_size, > > + vram_if_possible(device.fd_xe, eci->gt_id), > > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > data = xe_bo_map(device.fd_xe, bo, bo_size); > > } > > > > @@ -362,6 +370,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > > xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > > to_user_pointer(data), addr, bo_size, sync, 1); > > > > + if (flags & PREFETCH) > > + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > > + bo_size, sync, 1, 0); > > anything else missing here? > apparently the patch still failed badly and I lost my machine now... > will check again tomorrow with some debugs. nevermind. nothing needed here and the problem was just my machine/image here. with define PREFETCH (0x1 << 1) feel free to use: Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > > + > > if (check_rpm && runtime_usage_available(device.pci_xe)) > > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); > > > > @@ -617,6 +629,7 @@ igt_main > > unsigned int flags; > > } vm_op[] = { > > { "usrptr", USERPTR }, > > + { "prefetch", PREFETCH }, > > { NULL }, > > }; > > > > -- > > 2.39.1 > > ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2024-04-16 20:58 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-03-25 20:10 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind sai.gowtham.ch 2024-03-25 20:10 ` [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume sai.gowtham.ch 2024-03-28 18:00 ` Rodrigo Vivi 2024-03-25 20:10 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch " sai.gowtham.ch 2024-03-28 18:05 ` Rodrigo Vivi 2024-03-25 20:10 ` [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with s&R sai.gowtham.ch 2024-03-28 18:16 ` Rodrigo Vivi 2024-03-25 22:00 ` ✓ CI.xeBAT: success for tests/intel/xe_pm: Tests to validate vm-bind (rev2) Patchwork 2024-03-25 22:08 ` ✓ Fi.CI.BAT: " Patchwork 2024-03-26 4:39 ` ✗ Fi.CI.IGT: failure " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-04-01 18:46 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch 2024-04-01 18:46 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch 2024-04-03 20:27 ` Rodrigo Vivi 2024-04-15 8:40 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch 2024-04-15 8:40 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch 2024-04-16 1:29 ` Rodrigo Vivi 2024-04-16 20:58 ` Rodrigo Vivi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox