* [Intel-gfx] [PATCH] drm/i915: Apply VT-d scanout adjustment to the VMA
@ 2021-02-03 8:38 Chris Wilson
2021-02-03 9:00 ` Ville Syrjälä
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Chris Wilson @ 2021-02-03 8:38 UTC (permalink / raw)
To: intel-gfx; +Cc: Chris Wilson
Currently, we allocate exactly the VMA requested for the framebuffer and
rely on filling the whole of the GGTT with scratch pages to catch when
VT-d prefetches beyond the bounds of the surface. However, this means
that we have to scrub the GGTT on startup and resume, and on recent HW
this is made even slower as the only access to GSM is uncached.
Since we do fill the pad-to-size PTE with scratch pages, and this is
also reapplied on resume, we can forgo the overzealous clearing of the
entire GGTT and instead pad the VMA to avoid the VT-d prefetches going
outside of the VMA.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
drivers/gpu/drm/i915/gem/i915_gem_domain.c | 18 ++++++++++++-----
drivers/gpu/drm/i915/gt/intel_ggtt.c | 23 ----------------------
2 files changed, 13 insertions(+), 28 deletions(-)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_domain.c b/drivers/gpu/drm/i915/gem/i915_gem_domain.c
index 36f54cedaaeb..2668a79383c8 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_domain.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_domain.c
@@ -359,19 +359,26 @@ int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
*/
struct i915_vma *
i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
- u32 alignment,
+ u32 align,
const struct i915_ggtt_view *view,
unsigned int flags)
{
struct drm_i915_private *i915 = to_i915(obj->base.dev);
struct i915_gem_ww_ctx ww;
struct i915_vma *vma;
+ u64 size;
int ret;
/* Frame buffer must be in LMEM (no migration yet) */
if (HAS_LMEM(i915) && !i915_gem_object_is_lmem(obj))
return ERR_PTR(-EINVAL);
+ size = obj->base.size;
+ if (intel_scanout_needs_vtd_wa(i915)) {
+ size = ALIGN(size, SZ_256K);
+ align = ALIGN(align, SZ_256K);
+ }
+
i915_gem_ww_ctx_init(&ww, true);
retry:
ret = i915_gem_object_lock(obj, &ww);
@@ -404,18 +411,19 @@ i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
vma = ERR_PTR(-ENOSPC);
if ((flags & PIN_MAPPABLE) == 0 &&
(!view || view->type == I915_GGTT_VIEW_NORMAL))
- vma = i915_gem_object_ggtt_pin_ww(obj, &ww, view, 0, alignment,
+ vma = i915_gem_object_ggtt_pin_ww(obj, &ww, view,
+ size, align,
flags | PIN_MAPPABLE |
PIN_NONBLOCK);
if (IS_ERR(vma) && vma != ERR_PTR(-EDEADLK))
- vma = i915_gem_object_ggtt_pin_ww(obj, &ww, view, 0,
- alignment, flags);
+ vma = i915_gem_object_ggtt_pin_ww(obj, &ww, view,
+ size, align, flags);
if (IS_ERR(vma)) {
ret = PTR_ERR(vma);
goto err;
}
- vma->display_alignment = max_t(u64, vma->display_alignment, alignment);
+ vma->display_alignment = max_t(u64, vma->display_alignment, align);
i915_vma_mark_scanout(vma);
i915_gem_object_flush_if_display_locked(obj);
diff --git a/drivers/gpu/drm/i915/gt/intel_ggtt.c b/drivers/gpu/drm/i915/gt/intel_ggtt.c
index fc399ac16eda..126b061862ad 100644
--- a/drivers/gpu/drm/i915/gt/intel_ggtt.c
+++ b/drivers/gpu/drm/i915/gt/intel_ggtt.c
@@ -304,27 +304,6 @@ static void nop_clear_range(struct i915_address_space *vm,
{
}
-static void gen8_ggtt_clear_range(struct i915_address_space *vm,
- u64 start, u64 length)
-{
- struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm);
- unsigned int first_entry = start / I915_GTT_PAGE_SIZE;
- unsigned int num_entries = length / I915_GTT_PAGE_SIZE;
- const gen8_pte_t scratch_pte = vm->scratch[0]->encode;
- gen8_pte_t __iomem *gtt_base =
- (gen8_pte_t __iomem *)ggtt->gsm + first_entry;
- const int max_entries = ggtt_total_entries(ggtt) - first_entry;
- int i;
-
- if (WARN(num_entries > max_entries,
- "First entry = %d; Num entries = %d (max=%d)\n",
- first_entry, num_entries, max_entries))
- num_entries = max_entries;
-
- for (i = 0; i < num_entries; i++)
- gen8_set_pte(>t_base[i], scratch_pte);
-}
-
static void bxt_vtd_ggtt_wa(struct i915_address_space *vm)
{
/*
@@ -884,8 +863,6 @@ static int gen8_gmch_probe(struct i915_ggtt *ggtt)
ggtt->vm.cleanup = gen6_gmch_remove;
ggtt->vm.insert_page = gen8_ggtt_insert_page;
ggtt->vm.clear_range = nop_clear_range;
- if (intel_scanout_needs_vtd_wa(i915))
- ggtt->vm.clear_range = gen8_ggtt_clear_range;
ggtt->vm.insert_entries = gen8_ggtt_insert_entries;
--
2.20.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915: Apply VT-d scanout adjustment to the VMA 2021-02-03 8:38 [Intel-gfx] [PATCH] drm/i915: Apply VT-d scanout adjustment to the VMA Chris Wilson @ 2021-02-03 9:00 ` Ville Syrjälä 2021-02-03 9:14 ` Chris Wilson 2021-02-03 10:14 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2021-02-03 12:10 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Ville Syrjälä @ 2021-02-03 9:00 UTC (permalink / raw) To: Chris Wilson; +Cc: intel-gfx On Wed, Feb 03, 2021 at 08:38:41AM +0000, Chris Wilson wrote: > Currently, we allocate exactly the VMA requested for the framebuffer and > rely on filling the whole of the GGTT with scratch pages to catch when > VT-d prefetches beyond the bounds of the surface. However, this means > that we have to scrub the GGTT on startup and resume, and on recent HW > this is made even slower as the only access to GSM is uncached. > > Since we do fill the pad-to-size PTE with scratch pages, and this is > also reapplied on resume, we can forgo the overzealous clearing of the > entire GGTT and instead pad the VMA to avoid the VT-d prefetches going > outside of the VMA. We have a lot of these "allocate a huge pile of extra PTEs after (or before for rotation) the scanout surface" workarounds we're not handling at all. Not sure ths is sufficient to cover those. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > --- > drivers/gpu/drm/i915/gem/i915_gem_domain.c | 18 ++++++++++++----- > drivers/gpu/drm/i915/gt/intel_ggtt.c | 23 ---------------------- > 2 files changed, 13 insertions(+), 28 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_domain.c b/drivers/gpu/drm/i915/gem/i915_gem_domain.c > index 36f54cedaaeb..2668a79383c8 100644 > --- a/drivers/gpu/drm/i915/gem/i915_gem_domain.c > +++ b/drivers/gpu/drm/i915/gem/i915_gem_domain.c > @@ -359,19 +359,26 @@ int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data, > */ > struct i915_vma * > i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj, > - u32 alignment, > + u32 align, > const struct i915_ggtt_view *view, > unsigned int flags) > { > struct drm_i915_private *i915 = to_i915(obj->base.dev); > struct i915_gem_ww_ctx ww; > struct i915_vma *vma; > + u64 size; > int ret; > > /* Frame buffer must be in LMEM (no migration yet) */ > if (HAS_LMEM(i915) && !i915_gem_object_is_lmem(obj)) > return ERR_PTR(-EINVAL); > > + size = obj->base.size; > + if (intel_scanout_needs_vtd_wa(i915)) { > + size = ALIGN(size, SZ_256K); > + align = ALIGN(align, SZ_256K); > + } > + > i915_gem_ww_ctx_init(&ww, true); > retry: > ret = i915_gem_object_lock(obj, &ww); > @@ -404,18 +411,19 @@ i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj, > vma = ERR_PTR(-ENOSPC); > if ((flags & PIN_MAPPABLE) == 0 && > (!view || view->type == I915_GGTT_VIEW_NORMAL)) > - vma = i915_gem_object_ggtt_pin_ww(obj, &ww, view, 0, alignment, > + vma = i915_gem_object_ggtt_pin_ww(obj, &ww, view, > + size, align, > flags | PIN_MAPPABLE | > PIN_NONBLOCK); > if (IS_ERR(vma) && vma != ERR_PTR(-EDEADLK)) > - vma = i915_gem_object_ggtt_pin_ww(obj, &ww, view, 0, > - alignment, flags); > + vma = i915_gem_object_ggtt_pin_ww(obj, &ww, view, > + size, align, flags); > if (IS_ERR(vma)) { > ret = PTR_ERR(vma); > goto err; > } > > - vma->display_alignment = max_t(u64, vma->display_alignment, alignment); > + vma->display_alignment = max_t(u64, vma->display_alignment, align); > i915_vma_mark_scanout(vma); > > i915_gem_object_flush_if_display_locked(obj); > diff --git a/drivers/gpu/drm/i915/gt/intel_ggtt.c b/drivers/gpu/drm/i915/gt/intel_ggtt.c > index fc399ac16eda..126b061862ad 100644 > --- a/drivers/gpu/drm/i915/gt/intel_ggtt.c > +++ b/drivers/gpu/drm/i915/gt/intel_ggtt.c > @@ -304,27 +304,6 @@ static void nop_clear_range(struct i915_address_space *vm, > { > } > > -static void gen8_ggtt_clear_range(struct i915_address_space *vm, > - u64 start, u64 length) > -{ > - struct i915_ggtt *ggtt = i915_vm_to_ggtt(vm); > - unsigned int first_entry = start / I915_GTT_PAGE_SIZE; > - unsigned int num_entries = length / I915_GTT_PAGE_SIZE; > - const gen8_pte_t scratch_pte = vm->scratch[0]->encode; > - gen8_pte_t __iomem *gtt_base = > - (gen8_pte_t __iomem *)ggtt->gsm + first_entry; > - const int max_entries = ggtt_total_entries(ggtt) - first_entry; > - int i; > - > - if (WARN(num_entries > max_entries, > - "First entry = %d; Num entries = %d (max=%d)\n", > - first_entry, num_entries, max_entries)) > - num_entries = max_entries; > - > - for (i = 0; i < num_entries; i++) > - gen8_set_pte(>t_base[i], scratch_pte); > -} > - > static void bxt_vtd_ggtt_wa(struct i915_address_space *vm) > { > /* > @@ -884,8 +863,6 @@ static int gen8_gmch_probe(struct i915_ggtt *ggtt) > ggtt->vm.cleanup = gen6_gmch_remove; > ggtt->vm.insert_page = gen8_ggtt_insert_page; > ggtt->vm.clear_range = nop_clear_range; > - if (intel_scanout_needs_vtd_wa(i915)) > - ggtt->vm.clear_range = gen8_ggtt_clear_range; > > ggtt->vm.insert_entries = gen8_ggtt_insert_entries; > > -- > 2.20.1 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx -- Ville Syrjälä Intel _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Apply VT-d scanout adjustment to the VMA 2021-02-03 9:00 ` Ville Syrjälä @ 2021-02-03 9:14 ` Chris Wilson 0 siblings, 0 replies; 5+ messages in thread From: Chris Wilson @ 2021-02-03 9:14 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx Quoting Ville Syrjälä (2021-02-03 09:00:54) > On Wed, Feb 03, 2021 at 08:38:41AM +0000, Chris Wilson wrote: > > Currently, we allocate exactly the VMA requested for the framebuffer and > > rely on filling the whole of the GGTT with scratch pages to catch when > > VT-d prefetches beyond the bounds of the surface. However, this means > > that we have to scrub the GGTT on startup and resume, and on recent HW > > this is made even slower as the only access to GSM is uncached. > > > > Since we do fill the pad-to-size PTE with scratch pages, and this is > > also reapplied on resume, we can forgo the overzealous clearing of the > > entire GGTT and instead pad the VMA to avoid the VT-d prefetches going > > outside of the VMA. > > We have a lot of these "allocate a huge pile of extra PTEs > after (or before for rotation) the scanout surface" workarounds > we're not handling at all. Not sure ths is sufficient to cover > those. I am being optimistic in that we should have a lot of weird cases covered in CI and with iommu enabled, we will get splats. But if it's pages/after before regardless of alignment, then this is insufficient. Also, the case of remapped pages we don't want obj->size here, but vma->size. -Chris _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Apply VT-d scanout adjustment to the VMA 2021-02-03 8:38 [Intel-gfx] [PATCH] drm/i915: Apply VT-d scanout adjustment to the VMA Chris Wilson 2021-02-03 9:00 ` Ville Syrjälä @ 2021-02-03 10:14 ` Patchwork 2021-02-03 12:10 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2021-02-03 10:14 UTC (permalink / raw) To: Chris Wilson; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 4004 bytes --] == Series Details == Series: drm/i915: Apply VT-d scanout adjustment to the VMA URL : https://patchwork.freedesktop.org/series/86625/ State : success == Summary == CI Bug Log - changes from CI_DRM_9721 -> Patchwork_19569 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/index.html Known issues ------------ Here are the changes found in Patchwork_19569 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - fi-kbl-7500u: [PASS][1] -> [DMESG-WARN][2] ([i915#2605]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/fi-kbl-7500u/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/fi-kbl-7500u/igt@core_hotunplug@unbind-rebind.html * igt@gem_flink_basic@bad-flink: - fi-tgl-y: [PASS][3] -> [DMESG-WARN][4] ([i915#402]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/fi-tgl-y/igt@gem_flink_basic@bad-flink.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/fi-tgl-y/igt@gem_flink_basic@bad-flink.html * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [PASS][5] -> [INCOMPLETE][6] ([i915#2940]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@kms_frontbuffer_tracking@basic: - fi-kbl-x1275: [PASS][7] -> [DMESG-WARN][8] ([i915#92]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/fi-kbl-x1275/igt@kms_frontbuffer_tracking@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/fi-kbl-x1275/igt@kms_frontbuffer_tracking@basic.html * igt@runner@aborted: - fi-bsw-n3050: NOTRUN -> [FAIL][9] ([i915#1436]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/fi-bsw-n3050/igt@runner@aborted.html #### Possible fixes #### * igt@gem_mmap_gtt@basic: - fi-tgl-y: [DMESG-WARN][10] ([i915#402]) -> [PASS][11] +2 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/fi-tgl-y/igt@gem_mmap_gtt@basic.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/fi-tgl-y/igt@gem_mmap_gtt@basic.html #### Warnings #### * igt@i915_pm_rpm@basic-rte: - fi-kbl-guc: [FAIL][12] ([i915#579]) -> [SKIP][13] ([fdo#109271]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#2605]: https://gitlab.freedesktop.org/drm/intel/issues/2605 [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 Participating hosts (42 -> 38) ------------------------------ Missing (4): fi-byt-j1900 fi-jsl-1 fi-bsw-cyan fi-bdw-samus Build changes ------------- * Linux: CI_DRM_9721 -> Patchwork_19569 CI-20190529: 20190529 CI_DRM_9721: 2bd88ea627421f4c9179740592f21c2789e1afda @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5988: 4581082c706498cc3afe20e89fc4836a3fc69105 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_19569: d876462b4feb8e38538b3787a5c90937ee66f35d @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == d876462b4feb drm/i915: Apply VT-d scanout adjustment to the VMA == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/index.html [-- Attachment #1.2: Type: text/html, Size: 4831 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Apply VT-d scanout adjustment to the VMA 2021-02-03 8:38 [Intel-gfx] [PATCH] drm/i915: Apply VT-d scanout adjustment to the VMA Chris Wilson 2021-02-03 9:00 ` Ville Syrjälä 2021-02-03 10:14 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork @ 2021-02-03 12:10 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2021-02-03 12:10 UTC (permalink / raw) To: Chris Wilson; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 30273 bytes --] == Series Details == Series: drm/i915: Apply VT-d scanout adjustment to the VMA URL : https://patchwork.freedesktop.org/series/86625/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9721_full -> Patchwork_19569_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_19569_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_19569_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_19569_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_fair@basic-pace@vcs0: - shard-kbl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-hsw: [PASS][2] -> [FAIL][3] +6 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-hsw5/igt@kms_big_fb@linear-64bpp-rotate-180.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-hsw4/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-64bpp-rotate-0: - shard-iclb: [PASS][4] -> [FAIL][5] +10 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb6/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb7/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html * igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-2-pipe-a: - shard-glk: [PASS][6] -> [FAIL][7] +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk2/igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-2-pipe-a.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk4/igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-2-pipe-a.html Known issues ------------ Here are the changes found in Patchwork_19569_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-apl: [PASS][8] -> [DMESG-WARN][9] ([i915#180]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-apl1/igt@gem_ctx_isolation@preservation-s3@bcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-apl1/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_exec_balancer@hang: - shard-iclb: [PASS][10] -> [INCOMPLETE][11] ([i915#1895] / [i915#2295]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb5/igt@gem_exec_balancer@hang.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb2/igt@gem_exec_balancer@hang.html * igt@gem_exec_capture@pi@vecs0: - shard-skl: NOTRUN -> [INCOMPLETE][12] ([i915#198] / [i915#2624]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-skl9/igt@gem_exec_capture@pi@vecs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> [FAIL][13] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: [PASS][14] -> [FAIL][15] ([i915#2842]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-iclb: [PASS][16] -> [FAIL][17] ([i915#2842]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb3/igt@gem_exec_fair@basic-pace@vcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb5/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglb: [PASS][18] -> [FAIL][19] ([i915#2842]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-tglb8/igt@gem_exec_fair@basic-pace@vcs1.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_schedule@u-fairslice@rcs0: - shard-glk: [PASS][20] -> [DMESG-WARN][21] ([i915#1610] / [i915#2803]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk9/igt@gem_exec_schedule@u-fairslice@rcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk4/igt@gem_exec_schedule@u-fairslice@rcs0.html - shard-skl: NOTRUN -> [DMESG-WARN][22] ([i915#1610] / [i915#2803]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-skl1/igt@gem_exec_schedule@u-fairslice@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#2190]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-apl1/igt@gem_huc_copy@huc-copy.html - shard-kbl: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#2190]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl6/igt@gem_huc_copy@huc-copy.html * igt@gem_userptr_blits@mmap-offset-invalidate-active@wb: - shard-kbl: NOTRUN -> [SKIP][25] ([fdo#109271]) +154 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl4/igt@gem_userptr_blits@mmap-offset-invalidate-active@wb.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-kbl: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1937]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-iclb: [PASS][27] -> [WARN][28] ([i915#2681] / [i915#2684]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_suspend@fence-restore-untiled: - shard-kbl: [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-kbl2/igt@i915_suspend@fence-restore-untiled.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl2/igt@i915_suspend@fence-restore-untiled.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [PASS][31] -> [FAIL][32] ([i915#2597]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-tglb6/igt@kms_async_flips@test-time-stamp.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-tglb8/igt@kms_async_flips@test-time-stamp.html * igt@kms_atomic_interruptible@legacy-dpms@hdmi-a-1-pipe-a: - shard-glk: [PASS][33] -> [DMESG-WARN][34] ([i915#118] / [i915#95]) +43 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk4/igt@kms_atomic_interruptible@legacy-dpms@hdmi-a-1-pipe-a.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk8/igt@kms_atomic_interruptible@legacy-dpms@hdmi-a-1-pipe-a.html * igt@kms_atomic_transition@modeset-transition@1x-outputs: - shard-iclb: [PASS][35] -> [DMESG-WARN][36] ([i915#1226]) +16 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb5/igt@kms_atomic_transition@modeset-transition@1x-outputs.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb1/igt@kms_atomic_transition@modeset-transition@1x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@dp-1-pipe-c: - shard-kbl: [PASS][37] -> [DMESG-WARN][38] ([i915#165] / [i915#180]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-kbl2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@dp-1-pipe-c.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@dp-1-pipe-c.html * igt@kms_available_modes_crc@available_mode_test_crc: - shard-iclb: [PASS][39] -> [FAIL][40] ([i915#1537]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb2/igt@kms_available_modes_crc@available_mode_test_crc.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb3/igt@kms_available_modes_crc@available_mode_test_crc.html * igt@kms_big_joiner@basic: - shard-skl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#2705]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-skl9/igt@kms_big_joiner@basic.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-skl: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-skl10/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_color@pipe-a-ctm-green-to-red: - shard-iclb: [PASS][43] -> [DMESG-WARN][44] ([i915#1149] / [i915#1226]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb4/igt@kms_color@pipe-a-ctm-green-to-red.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb4/igt@kms_color@pipe-a-ctm-green-to-red.html * igt@kms_color@pipe-a-ctm-negative: - shard-iclb: [PASS][45] -> [DMESG-FAIL][46] ([i915#1149] / [i915#1226]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb8/igt@kms_color@pipe-a-ctm-negative.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb8/igt@kms_color@pipe-a-ctm-negative.html * igt@kms_color@pipe-b-ctm-max: - shard-glk: [PASS][47] -> [FAIL][48] ([i915#1292]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk9/igt@kms_color@pipe-b-ctm-max.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk4/igt@kms_color@pipe-b-ctm-max.html * igt@kms_color@pipe-b-degamma: - shard-glk: [PASS][49] -> [FAIL][50] ([i915#71]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk7/igt@kms_color@pipe-b-degamma.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk6/igt@kms_color@pipe-b-degamma.html * igt@kms_color@pipe-d-ctm-0-25: - shard-hsw: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#533]) +5 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-hsw5/igt@kms_color@pipe-d-ctm-0-25.html * igt@kms_color@pipe-d-ctm-max: - shard-skl: NOTRUN -> [SKIP][52] ([fdo#109271]) +13 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-skl4/igt@kms_color@pipe-d-ctm-max.html * igt@kms_color_chamelium@pipe-a-ctm-green-to-red: - shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111827]) +5 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-apl2/igt@kms_color_chamelium@pipe-a-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-a-degamma: - shard-kbl: NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +14 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl6/igt@kms_color_chamelium@pipe-a-degamma.html * igt@kms_color_chamelium@pipe-b-ctm-negative: - shard-hsw: NOTRUN -> [SKIP][55] ([fdo#109271] / [fdo#111827]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-hsw5/igt@kms_color_chamelium@pipe-b-ctm-negative.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][56] ([i915#1319]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl4/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen: - shard-skl: [PASS][57] -> [FAIL][58] ([i915#54]) +4 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-skl9/igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-skl10/igt@kms_cursor_crc@pipe-a-cursor-256x85-offscreen.html * igt@kms_cursor_edge_walk@pipe-a-64x64-left-edge: - shard-glk: [PASS][59] -> [DMESG-FAIL][60] ([i915#118] / [i915#70] / [i915#95]) +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk8/igt@kms_cursor_edge_walk@pipe-a-64x64-left-edge.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk2/igt@kms_cursor_edge_walk@pipe-a-64x64-left-edge.html * igt@kms_cursor_edge_walk@pipe-c-256x256-left-edge: - shard-glk: [PASS][61] -> [FAIL][62] ([i915#70]) +2 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk3/igt@kms_cursor_edge_walk@pipe-c-256x256-left-edge.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk9/igt@kms_cursor_edge_walk@pipe-c-256x256-left-edge.html * igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-untiled: - shard-iclb: [PASS][63] -> [DMESG-FAIL][64] ([i915#1226] / [i915#54]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb5/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-untiled.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb3/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-untiled.html * igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled: - shard-glk: [PASS][65] -> [DMESG-FAIL][66] ([i915#118] / [i915#54] / [i915#95]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk1/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-mmap-wc-ytiled.html * igt@kms_draw_crc@draw-method-xrgb2101010-blt-xtiled: - shard-iclb: [PASS][67] -> [FAIL][68] ([i915#52] / [i915#54]) +3 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb2/igt@kms_draw_crc@draw-method-xrgb2101010-blt-xtiled.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb3/igt@kms_draw_crc@draw-method-xrgb2101010-blt-xtiled.html * igt@kms_draw_crc@draw-method-xrgb2101010-blt-ytiled: - shard-glk: [PASS][69] -> [FAIL][70] ([i915#52] / [i915#54]) +6 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk7/igt@kms_draw_crc@draw-method-xrgb2101010-blt-ytiled.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk7/igt@kms_draw_crc@draw-method-xrgb2101010-blt-ytiled.html * igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled: - shard-glk: [PASS][71] -> [FAIL][72] ([i915#177] / [i915#52] / [i915#54]) +2 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk3/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk9/igt@kms_draw_crc@draw-method-xrgb8888-mmap-gtt-untiled.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: [PASS][73] -> [INCOMPLETE][74] ([i915#155] / [i915#180] / [i915#636]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1: - shard-hsw: [PASS][75] -> [INCOMPLETE][76] ([i915#2055] / [i915#2295]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-hsw8/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-skl: [PASS][77] -> [FAIL][78] ([i915#2122]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-skl7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-skl4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2642]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile: - shard-iclb: [PASS][80] -> [DMESG-FAIL][81] ([i915#1226]) +4 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html * igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-1-pipe-a: - shard-glk: [PASS][82] -> [DMESG-FAIL][83] ([i915#118] / [i915#95]) +6 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk2/igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-1-pipe-a.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk4/igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-1-pipe-a.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-iclb: [PASS][84] -> [FAIL][85] ([i915#49]) +52 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-glk: [PASS][86] -> [DMESG-FAIL][87] ([i915#118] / [i915#49] / [i915#95]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-glk: [PASS][88] -> [FAIL][89] ([i915#49]) +39 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-hsw: NOTRUN -> [SKIP][90] ([fdo#109271]) +24 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-hsw5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-iclb: [PASS][91] -> [SKIP][92] ([i915#668]) +5 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-apl: NOTRUN -> [SKIP][93] ([fdo#109271]) +22 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-apl1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_hdr@bpc-switch-suspend: - shard-skl: NOTRUN -> [INCOMPLETE][94] ([i915#146] / [i915#198]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-skl10/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-dpms: - shard-iclb: NOTRUN -> [SKIP][95] ([i915#1187]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#533]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-apl2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#533]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c: - shard-iclb: [PASS][98] -> [FAIL][99] ([i915#53]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb6/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb7/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c.html * igt@kms_pipe_crc_basic@read-crc-pipe-c-frame-sequence: - shard-glk: [PASS][100] -> [FAIL][101] ([i915#53]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk7/igt@kms_pipe_crc_basic@read-crc-pipe-c-frame-sequence.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk7/igt@kms_pipe_crc_basic@read-crc-pipe-c-frame-sequence.html * igt@kms_plane@plane-panning-bottom-right-pipe-a-planes: - shard-glk: [PASS][102] -> [FAIL][103] ([i915#1036]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk3/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk9/igt@kms_plane@plane-panning-bottom-right-pipe-a-planes.html * igt@kms_plane@plane-panning-bottom-right-pipe-c-planes: - shard-iclb: [PASS][104] -> [FAIL][105] ([i915#1036]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb3/igt@kms_plane@plane-panning-bottom-right-pipe-c-planes.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb5/igt@kms_plane@plane-panning-bottom-right-pipe-c-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-glk: [PASS][106] -> [FAIL][107] ([i915#1036] / [i915#533]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane@plane-position-covered-pipe-b-planes: - shard-iclb: [PASS][108] -> [FAIL][109] ([i915#247]) +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb8/igt@kms_plane@plane-position-covered-pipe-b-planes.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb7/igt@kms_plane@plane-position-covered-pipe-b-planes.html * igt@kms_plane@plane-position-covered-pipe-c-planes: - shard-glk: [PASS][110] -> [FAIL][111] ([i915#247]) +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk8/igt@kms_plane@plane-position-covered-pipe-c-planes.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk2/igt@kms_plane@plane-position-covered-pipe-c-planes.html * igt@kms_plane@plane-position-hole-dpms-pipe-a-planes: - shard-glk: [PASS][112] -> [FAIL][113] ([i915#2472]) +3 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk7/igt@kms_plane@plane-position-hole-dpms-pipe-a-planes.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk7/igt@kms_plane@plane-position-hole-dpms-pipe-a-planes.html * igt@kms_plane@plane-position-hole-pipe-b-planes: - shard-iclb: [PASS][114] -> [FAIL][115] ([i915#2472]) +3 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb3/igt@kms_plane@plane-position-hole-pipe-b-planes.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb5/igt@kms_plane@plane-position-hole-pipe-b-planes.html * igt@kms_plane_alpha_blend@pipe-b-alpha-7efc: - shard-apl: NOTRUN -> [FAIL][116] ([fdo#108145] / [i915#265]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-iclb: [PASS][117] -> [FAIL][118] ([i915#265]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb8/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb8/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb: - shard-kbl: NOTRUN -> [FAIL][119] ([fdo#108145] / [i915#265]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html * igt@kms_plane_cursor@pipe-a-overlay-size-64: - shard-iclb: [PASS][120] -> [FAIL][121] ([i915#2657]) +8 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb5/igt@kms_plane_cursor@pipe-a-overlay-size-64.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb3/igt@kms_plane_cursor@pipe-a-overlay-size-64.html * igt@kms_plane_cursor@pipe-a-primary-size-64: - shard-glk: [PASS][122] -> [FAIL][123] ([i915#2657]) +5 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk6/igt@kms_plane_cursor@pipe-a-primary-size-64.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk6/igt@kms_plane_cursor@pipe-a-primary-size-64.html * igt@kms_plane_lowres@pipe-a-tiling-y: - shard-glk: [PASS][124] -> [DMESG-WARN][125] ([i915#118] / [i915#2621] / [i915#95]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk3/igt@kms_plane_lowres@pipe-a-tiling-y.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk9/igt@kms_plane_lowres@pipe-a-tiling-y.html * igt@kms_plane_lowres@pipe-b-tiling-x: - shard-glk: [PASS][126] -> [FAIL][127] ([i915#899]) +4 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk8/igt@kms_plane_lowres@pipe-b-tiling-x.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk2/igt@kms_plane_lowres@pipe-b-tiling-x.html - shard-kbl: [PASS][128] -> [DMESG-WARN][129] ([i915#165] / [i915#180] / [i915#78]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-kbl2/igt@kms_plane_lowres@pipe-b-tiling-x.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl2/igt@kms_plane_lowres@pipe-b-tiling-x.html * igt@kms_plane_lowres@pipe-c-tiling-none: - shard-iclb: [PASS][130] -> [FAIL][131] ([i915#899]) +5 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb6/igt@kms_plane_lowres@pipe-c-tiling-none.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb2/igt@kms_plane_lowres@pipe-c-tiling-none.html * igt@kms_plane_multiple@atomic-pipe-b-tiling-y: - shard-glk: [PASS][132] -> [FAIL][133] ([i915#1779]) +4 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk7/igt@kms_plane_multiple@atomic-pipe-b-tiling-y.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk7/igt@kms_plane_multiple@atomic-pipe-b-tiling-y.html - shard-iclb: [PASS][134] -> [FAIL][135] ([i915#1779]) +4 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb6/igt@kms_plane_multiple@atomic-pipe-b-tiling-y.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb7/igt@kms_plane_multiple@atomic-pipe-b-tiling-y.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: - shard-kbl: NOTRUN -> [SKIP][136] ([fdo#109271] / [i915#658]) +3 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html * igt@kms_psr2_su@page_flip: - shard-apl: NOTRUN -> [SKIP][137] ([fdo#109271] / [i915#658]) +1 similar issue [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-apl1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [PASS][138] -> [SKIP][139] ([fdo#109441]) +2 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [PASS][140] -> [DMESG-WARN][141] ([i915#180] / [i915#295]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-glk: [PASS][142] -> [DMESG-WARN][143] ([i915#118] / [i915#295] / [i915#95]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9721/shard-glk7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/shard-glk7/igt@kms_vblank@pi == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19569/index.html [-- Attachment #1.2: Type: text/html, Size: 33139 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-02-03 12:10 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-02-03 8:38 [Intel-gfx] [PATCH] drm/i915: Apply VT-d scanout adjustment to the VMA Chris Wilson 2021-02-03 9:00 ` Ville Syrjälä 2021-02-03 9:14 ` Chris Wilson 2021-02-03 10:14 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2021-02-03 12:10 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.