Message ID | 20230718225118.2562132-1-radhakrishna.sripada@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2] drm/i915/dpt: Use shmem for dpt objects | expand |
On 18/07/2023 23:51, Radhakrishna Sripada wrote: > Dpt objects that are created from internal get evicted when there is > memory pressure and do not get restored when pinned during scanout. The > pinned page table entries look corrupted and programming the display > engine with the incorrect pte's result in DE throwing pipe faults. > > Create DPT objects from shmem and mark the object as dirty when pinning so > that the object is restored when shrinker evicts an unpinned buffer object. > > v2: Unconditionally mark the dpt objects dirty during pinning(Chris). > > Fixes: 0dc987b699ce ("drm/i915/display: Add smem fallback allocation for dpt") > Cc: <stable@vger.kernel.org> # v6.0+ > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > Suggested-by: Chris Wilson <chris.p.wilson@intel.com> > Signed-off-by: Fei Yang <fei.yang@intel.com> > Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> > --- > drivers/gpu/drm/i915/display/intel_dpt.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c b/drivers/gpu/drm/i915/display/intel_dpt.c > index 7c5fddb203ba..fbfd8f959f17 100644 > --- a/drivers/gpu/drm/i915/display/intel_dpt.c > +++ b/drivers/gpu/drm/i915/display/intel_dpt.c > @@ -166,6 +166,8 @@ struct i915_vma *intel_dpt_pin(struct i915_address_space *vm) > i915_vma_get(vma); > } > > + dpt->obj->mm.dirty = true; > + > atomic_dec(&i915->gpu_error.pending_fb_pin); > intel_runtime_pm_put(&i915->runtime_pm, wakeref); > > @@ -261,7 +263,7 @@ intel_dpt_create(struct intel_framebuffer *fb) > dpt_obj = i915_gem_object_create_stolen(i915, size); > if (IS_ERR(dpt_obj) && !HAS_LMEM(i915)) { > drm_dbg_kms(&i915->drm, "Allocating dpt from smem\n"); > - dpt_obj = i915_gem_object_create_internal(i915, size); > + dpt_obj = i915_gem_object_create_shmem(i915, size); > } > if (IS_ERR(dpt_obj)) > return ERR_CAST(dpt_obj); Okay I think I get it after some more looking at the DPT code paths. Problem seems pretty clear - page tables are stored in dpt_obj and so are lost when backing store is discarded. Changing to shmem object indeed looks the easiest option. Some related thoughts: 1) I wonder if intel_dpt_suspend/resume remain needed after this patch. Could you investigate please? On a glance their job was to restore the PTEs which would be lost from internal objects backing storage. With shmem objects that content should be preserved. 2) I wonder if i915_vma_flush_writes should be used (as a companion of i915_vma_pin_iomap) from DPT dpt_bind_vma, dpt_insert_entries, etc. But then I am also not sure if it does the right thing for the i915_gem_object_pin_map path of i915_vma_pin_iomap. Perhaps it should call __i915_gem_object_flush_map itself for that mapping flavour and not do the ggtt flushing in that case. In summary I think the fix is safe and correct but at least point 1) I think needs looking into. It can be a follow up work too. Regards, Tvrtko
> On 18/07/2023 23:51, Radhakrishna Sripada wrote: >> Dpt objects that are created from internal get evicted when there is >> memory pressure and do not get restored when pinned during scanout. >> The pinned page table entries look corrupted and programming the >> display engine with the incorrect pte's result in DE throwing pipe faults. >> >> Create DPT objects from shmem and mark the object as dirty when >> pinning so that the object is restored when shrinker evicts an unpinned buffer object. >> >> v2: Unconditionally mark the dpt objects dirty during pinning(Chris). >> >> Fixes: 0dc987b699ce ("drm/i915/display: Add smem fallback allocation >> for dpt") >> Cc: <stable@vger.kernel.org> # v6.0+ >> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> >> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> >> Suggested-by: Chris Wilson <chris.p.wilson@intel.com> >> Signed-off-by: Fei Yang <fei.yang@intel.com> >> Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> >> --- >> drivers/gpu/drm/i915/display/intel_dpt.c | 4 +++- >> 1 file changed, 3 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c >> b/drivers/gpu/drm/i915/display/intel_dpt.c >> index 7c5fddb203ba..fbfd8f959f17 100644 >> --- a/drivers/gpu/drm/i915/display/intel_dpt.c >> +++ b/drivers/gpu/drm/i915/display/intel_dpt.c >> @@ -166,6 +166,8 @@ struct i915_vma *intel_dpt_pin(struct i915_address_space *vm) >> i915_vma_get(vma); >> } >> >> + dpt->obj->mm.dirty = true; >> + >> atomic_dec(&i915->gpu_error.pending_fb_pin); >> intel_runtime_pm_put(&i915->runtime_pm, wakeref); >> >> @@ -261,7 +263,7 @@ intel_dpt_create(struct intel_framebuffer *fb) >> dpt_obj = i915_gem_object_create_stolen(i915, size); >> if (IS_ERR(dpt_obj) && !HAS_LMEM(i915)) { >> drm_dbg_kms(&i915->drm, "Allocating dpt from smem\n"); >> - dpt_obj = i915_gem_object_create_internal(i915, size); >> + dpt_obj = i915_gem_object_create_shmem(i915, size); >> } >> if (IS_ERR(dpt_obj)) >> return ERR_CAST(dpt_obj); > > Okay I think I get it after some more looking at the DPT code paths. > Problem seems pretty clear - page tables are stored in dpt_obj and so > are lost when backing store is discarded. > > Changing to shmem object indeed looks the easiest option. > > Some related thoughts: > > 1) > I wonder if intel_dpt_suspend/resume remain needed after this patch. > Could you investigate please? On a glance their job was to restore the > PTEs which would be lost from internal objects backing storage. With > shmem objects that content should be preserved. intel_dpt_suspend is "suspending" the whole VM where, not only the dpt objects are mapped into, but also the framebuffer objects. I don't have much knowledge on how the framebuffer objects are managed, but the suspend resume path still look necessary to me, unless the content of these framebuffer objects are also preserved. > 2) > I wonder if i915_vma_flush_writes should be used (as a companion of > i915_vma_pin_iomap) from DPT dpt_bind_vma, dpt_insert_entries, etc. But > then I am also not sure if it does the right thing for the > i915_gem_object_pin_map path of i915_vma_pin_iomap. Perhaps it should > call __i915_gem_object_flush_map itself for that mapping flavour and > not do the ggtt flushing in that case. > > In summary I think the fix is safe and correct but at least point 1) I > think needs looking into. It can be a follow up work too. > > Regards, > > Tvrtko >
On 19/07/2023 21:53, Yang, Fei wrote: >> On 18/07/2023 23:51, Radhakrishna Sripada wrote: >>> Dpt objects that are created from internal get evicted when there is >>> memory pressure and do not get restored when pinned during scanout. >>> The pinned page table entries look corrupted and programming the >>> display engine with the incorrect pte's result in DE throwing pipe faults. >>> >>> Create DPT objects from shmem and mark the object as dirty when >>> pinning so that the object is restored when shrinker evicts an unpinned buffer object. >>> >>> v2: Unconditionally mark the dpt objects dirty during pinning(Chris). >>> >>> Fixes: 0dc987b699ce ("drm/i915/display: Add smem fallback allocation >>> for dpt") >>> Cc: <stable@vger.kernel.org> # v6.0+ >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> >>> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> >>> Suggested-by: Chris Wilson <chris.p.wilson@intel.com> >>> Signed-off-by: Fei Yang <fei.yang@intel.com> >>> Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> >>> --- >>> drivers/gpu/drm/i915/display/intel_dpt.c | 4 +++- >>> 1 file changed, 3 insertions(+), 1 deletion(-) >>> >>> diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c >>> b/drivers/gpu/drm/i915/display/intel_dpt.c >>> index 7c5fddb203ba..fbfd8f959f17 100644 >>> --- a/drivers/gpu/drm/i915/display/intel_dpt.c >>> +++ b/drivers/gpu/drm/i915/display/intel_dpt.c >>> @@ -166,6 +166,8 @@ struct i915_vma *intel_dpt_pin(struct i915_address_space *vm) >>> i915_vma_get(vma); >>> } >>> >>> + dpt->obj->mm.dirty = true; >>> + >>> atomic_dec(&i915->gpu_error.pending_fb_pin); >>> intel_runtime_pm_put(&i915->runtime_pm, wakeref); >>> >>> @@ -261,7 +263,7 @@ intel_dpt_create(struct intel_framebuffer *fb) >>> dpt_obj = i915_gem_object_create_stolen(i915, size); >>> if (IS_ERR(dpt_obj) && !HAS_LMEM(i915)) { >>> drm_dbg_kms(&i915->drm, "Allocating dpt from smem\n"); >>> - dpt_obj = i915_gem_object_create_internal(i915, size); >>> + dpt_obj = i915_gem_object_create_shmem(i915, size); >>> } >>> if (IS_ERR(dpt_obj)) >>> return ERR_CAST(dpt_obj); >> >> Okay I think I get it after some more looking at the DPT code paths. >> Problem seems pretty clear - page tables are stored in dpt_obj and so >> are lost when backing store is discarded. >> >> Changing to shmem object indeed looks the easiest option. >> >> Some related thoughts: >> >> 1) >> I wonder if intel_dpt_suspend/resume remain needed after this patch. >> Could you investigate please? On a glance their job was to restore the >> PTEs which would be lost from internal objects backing storage. With >> shmem objects that content should be preserved. > > intel_dpt_suspend is "suspending" the whole VM where, not only the dpt > objects are mapped into, but also the framebuffer objects. I don't have > much knowledge on how the framebuffer objects are managed, but the suspend > resume path still look necessary to me, unless the content of these > framebuffer objects are also preserved. I don't think it has anything to do with fb content, but you are correct it is still needed. Because 9755f055f512 ("drm/i915: Restore memory mapping for DPT FBs across system suspend/resume") reminds me backing store for DPT PTEs can be either lmem, stolen or internal (now shmem). Even though with this patch internal is out of the picture, stolen remains and so the issue of losing the page table content remains. Perhaps resume could be optimised to only restore PTEs when VM page tables are backed by stolen which may win some suspend/resume speed on some platforms. Regards, Tvrtko > >> 2) >> I wonder if i915_vma_flush_writes should be used (as a companion of >> i915_vma_pin_iomap) from DPT dpt_bind_vma, dpt_insert_entries, etc. But >> then I am also not sure if it does the right thing for the >> i915_gem_object_pin_map path of i915_vma_pin_iomap. Perhaps it should >> call __i915_gem_object_flush_map itself for that mapping flavour and >> not do the ggtt flushing in that case. >> >> In summary I think the fix is safe and correct but at least point 1) I >> think needs looking into. It can be a follow up work too. >> >> Regards, >> >> Tvrtko >>
Hi Tvrtko, > -----Original Message----- > From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > Sent: Thursday, July 20, 2023 2:17 AM > To: Yang, Fei <fei.yang@intel.com>; Sripada, Radhakrishna > <radhakrishna.sripada@intel.com>; intel-gfx@lists.freedesktop.org > Cc: stable@vger.kernel.org; Ville Syrjälä <ville.syrjala@linux.intel.com>; Wilson, > Chris P <chris.p.wilson@intel.com> > Subject: Re: [PATCH v2] drm/i915/dpt: Use shmem for dpt objects > > > On 19/07/2023 21:53, Yang, Fei wrote: > >> On 18/07/2023 23:51, Radhakrishna Sripada wrote: > >>> Dpt objects that are created from internal get evicted when there is > >>> memory pressure and do not get restored when pinned during scanout. > >>> The pinned page table entries look corrupted and programming the > >>> display engine with the incorrect pte's result in DE throwing pipe faults. > >>> > >>> Create DPT objects from shmem and mark the object as dirty when > >>> pinning so that the object is restored when shrinker evicts an unpinned > buffer object. > >>> > >>> v2: Unconditionally mark the dpt objects dirty during pinning(Chris). > >>> > >>> Fixes: 0dc987b699ce ("drm/i915/display: Add smem fallback allocation > >>> for dpt") > >>> Cc: <stable@vger.kernel.org> # v6.0+ > >>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > >>> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > >>> Suggested-by: Chris Wilson <chris.p.wilson@intel.com> > >>> Signed-off-by: Fei Yang <fei.yang@intel.com> > >>> Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> > >>> --- > >>> drivers/gpu/drm/i915/display/intel_dpt.c | 4 +++- > >>> 1 file changed, 3 insertions(+), 1 deletion(-) > >>> > >>> diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c > >>> b/drivers/gpu/drm/i915/display/intel_dpt.c > >>> index 7c5fddb203ba..fbfd8f959f17 100644 > >>> --- a/drivers/gpu/drm/i915/display/intel_dpt.c > >>> +++ b/drivers/gpu/drm/i915/display/intel_dpt.c > >>> @@ -166,6 +166,8 @@ struct i915_vma *intel_dpt_pin(struct > i915_address_space *vm) > >>> i915_vma_get(vma); > >>> } > >>> > >>> + dpt->obj->mm.dirty = true; > >>> + > >>> atomic_dec(&i915->gpu_error.pending_fb_pin); > >>> intel_runtime_pm_put(&i915->runtime_pm, wakeref); > >>> > >>> @@ -261,7 +263,7 @@ intel_dpt_create(struct intel_framebuffer *fb) > >>> dpt_obj = i915_gem_object_create_stolen(i915, size); > >>> if (IS_ERR(dpt_obj) && !HAS_LMEM(i915)) { > >>> drm_dbg_kms(&i915->drm, "Allocating dpt from smem\n"); > >>> - dpt_obj = i915_gem_object_create_internal(i915, size); > >>> + dpt_obj = i915_gem_object_create_shmem(i915, size); > >>> } > >>> if (IS_ERR(dpt_obj)) > >>> return ERR_CAST(dpt_obj); > >> > >> Okay I think I get it after some more looking at the DPT code paths. > >> Problem seems pretty clear - page tables are stored in dpt_obj and so > >> are lost when backing store is discarded. > >> > >> Changing to shmem object indeed looks the easiest option. > >> > >> Some related thoughts: > >> > >> 1) > >> I wonder if intel_dpt_suspend/resume remain needed after this patch. > >> Could you investigate please? On a glance their job was to restore the > >> PTEs which would be lost from internal objects backing storage. With > >> shmem objects that content should be preserved. > > > > intel_dpt_suspend is "suspending" the whole VM where, not only the dpt > > objects are mapped into, but also the framebuffer objects. I don't have > > much knowledge on how the framebuffer objects are managed, but the > suspend > > resume path still look necessary to me, unless the content of these > > framebuffer objects are also preserved. > > I don't think it has anything to do with fb content, but you are correct > it is still needed. Because 9755f055f512 ("drm/i915: Restore memory > mapping for DPT FBs across system suspend/resume") reminds me backing > store for DPT PTEs can be either lmem, stolen or internal (now shmem). > Even though with this patch internal is out of the picture, stolen > remains and so the issue of losing the page table content remains. > Perhaps resume could be optimised to only restore PTEs when VM page > tables are backed by stolen which may win some suspend/resume speed on > some platforms. I will have to look into how suspend resume will change with the current flow as you said it can be looked in a later patch. > > Regards, > > Tvrtko > > > > >> 2) > >> I wonder if i915_vma_flush_writes should be used (as a companion of > >> i915_vma_pin_iomap) from DPT dpt_bind_vma, dpt_insert_entries, etc. But > >> then I am also not sure if it does the right thing for the > >> i915_gem_object_pin_map path of i915_vma_pin_iomap. Perhaps it should > >> call __i915_gem_object_flush_map itself for that mapping flavour and > >> not do the ggtt flushing in that case. I am not sure if dpt_bind_vma will be called each time during pinning. IMO it gets called Only when the fb object needs to be bind after and unbind(triggered during obj destroy). Do you think if i915_vma_flush_writes should not be used if dpt objects are created from internal? Or should we have a different flavor of i915_vm_pin_iomap that skips i915_vma_set_ggtt_write so that we can drop i915_vma_flush_writes during unpinning and move i915_vma_set_ggtt_write to dpt_insert_entires and do i915_vma_flush during clear range? Then I guess __i915_gem_object_flush_map called during vma bind and not object pinning. In either case I believe it is a larger cleanup which requires more extensive validation and analysis. > >> > >> In summary I think the fix is safe and correct but at least point 1) I > >> think needs looking into. It can be a follow up work too. If you think this fix can work then I will look into the suspend/resume as a follow up and will appreciate an r-b for this change. I believe 2) is a larger cleanup that may not be immediately required. I will have to dig more into the ramifications of the changes proposed above. Thoughts ? --Radhakrishna(RK) Sripada > >> > >> Regards, > >> > >> Tvrtko > >>
The tests/platforms failed are not related to code changes made as the changes only apply to ADL-P DG2 and beyond.
The failures look like false positives.
--Radhakrishna(RK) Sripada
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Tuesday, July 18, 2023 7:50 PM
To: Sripada, Radhakrishna <radhakrishna.sripada@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for drm/i915/dpt: Use shmem for dpt objects (rev2)
Patch Details
Series: drm/i915/dpt: Use shmem for dpt objects (rev2)
URL: https://patchwork.freedesktop.org/series/120885/
State: failure
Details: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/index.html
CI Bug Log - changes from CI_DRM_13394_full -> Patchwork_120885v2_full
Summary
FAILURE
Serious unknown changes coming with Patchwork_120885v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_120885v2_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (10 -> 10)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in Patchwork_120885v2_full:
IGT changes
Possible regressions
• igt@gem_exec_whisper@basic-contexts-forked-all:
o shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-snb7/igt@gem_exec_whisper@basic-contexts-forked-all.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-snb7/igt@gem_exec_whisper@basic-contexts-forked-all.html>
• igt@kms_flip@blocking-wf_vblank@b-vga1:
o shard-snb: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-snb7/igt@kms_flip@blocking-wf_vblank@b-vga1.html>
New tests
New tests have been introduced between CI_DRM_13394_full and Patchwork_120885v2_full:
New IGT tests (106)
• igt@api_intel_bb@blit-noreloc-keep-cache:
o Statuses : 7 pass(s) 1 skip(s)
o Exec time: [0.0] s
• igt@api_intel_bb@blit-noreloc-purge-cache:
o Statuses : 7 pass(s) 1 skip(s)
o Exec time: [0.0] s
• igt@api_intel_bb@blit-reloc-keep-cache:
o Statuses : 4 pass(s) 4 skip(s)
o Exec time: [0.0] s
• igt@api_intel_bb@blit-reloc-purge-cache:
o Statuses : 4 pass(s) 4 skip(s)
o Exec time: [0.0] s
• igt@api_intel_bb@full-batch:
o Statuses : 7 pass(s)
o Exec time: [0.0] s
• igt@api_intel_bb@intel-bb-blit-none:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@api_intel_bb@intel-bb-blit-x:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@api_intel_bb@intel-bb-blit-y:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@api_intel_bb@offset-control:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@api_intel_bb@simple-bb:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@api_intel_bb@simple-bb-ctx:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@gem_ctx_param@invalid-get-engines:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@gem_ctx_param@invalid-get-no-zeromap:
o Statuses : 7 pass(s)
o Exec time: [0.0] s
• igt@gem_ctx_param@invalid-get-ringsize:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@gem_ctx_param@invalid-set-no-zeromap:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@gem_ctx_param@invalid-set-ringsize:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@gem_pread@bench:
o Statuses : 4 pass(s) 4 skip(s)
o Exec time: [0.0] s
• igt@i915_selftest@live@gem_migrate:
o Statuses : 8 pass(s)
o Exec time: [0.0] s
• igt@kms_async_flips@test-cursor@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_async_flips@test-cursor@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_async_flips@test-cursor@pipe-c-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_async_flips@test-cursor@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_concurrent@pipe-c@hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_cursor_crc@cursor-alpha-opaque@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_cursor_crc@cursor-alpha-opaque@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_dither@fb-8bpc-vs-panel-6bpc:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_dither@fb-8bpc-vs-panel-8bpc:
o Statuses : 3 skip(s)
o Exec time: [0.0] s
• igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@plain-flip-ts-check@a-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@plain-flip-ts-check@b-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@plain-flip-ts-check@c-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@plain-flip-ts-check@d-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@a-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@c-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_invalid_mode@bad-vsync-end@hdmi-a-4-pipe-a:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_invalid_mode@bad-vsync-end@hdmi-a-4-pipe-b:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_invalid_mode@bad-vsync-end@hdmi-a-4-pipe-c:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_invalid_mode@bad-vsync-end@hdmi-a-4-pipe-d:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_invalid_mode@int-max-clock@hdmi-a-4-pipe-a:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_invalid_mode@int-max-clock@hdmi-a-4-pipe-b:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_invalid_mode@int-max-clock@hdmi-a-4-pipe-c:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_invalid_mode@int-max-clock@hdmi-a-4-pipe-d:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_mmap_write_crc@main@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_pipe_crc_basic@read-crc@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_pipe_crc_basic@read-crc@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_pipe_crc_basic@read-crc@pipe-c-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_pipe_crc_basic@read-crc@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_lowres@tiling-x@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_lowres@tiling-x@pipe-c-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_lowres@tiling-y@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_lowres@tiling-y@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_lowres@tiling-y@pipe-c-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_lowres@tiling-y@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-c-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-a-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-b-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-c-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-4:
o Statuses : 1 skip(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-upscale-with-pixel-format-20x20@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-upscale-with-pixel-format-20x20@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-upscale-with-pixel-format-20x20@pipe-c-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@plane-upscale-with-pixel-format-20x20@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_sequence@get-busy@hdmi-a-4-pipe-a:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_sequence@get-busy@hdmi-a-4-pipe-b:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_sequence@get-busy@hdmi-a-4-pipe-c:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_sequence@get-busy@hdmi-a-4-pipe-d:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_setmode@basic@pipe-a-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
• igt@kms_setmode@basic@pipe-b-hdmi-a-4:
o Statuses : 1 pass(s)
o Exec time: [0.0] s
Known issues
Here are the changes found in Patchwork_120885v2_full that come from known issues:
IGT changes
Issues hit
• igt@device_reset@cold-reset-bound:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@device_reset@cold-reset-bound.html> (i915#7701<https://gitlab.freedesktop.org/drm/intel/issues/7701>)
• igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
o shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html> (i915#7742<https://gitlab.freedesktop.org/drm/intel/issues/7742>)
• igt@feature_discovery@display-2x:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@feature_discovery@display-2x.html> (i915#1839<https://gitlab.freedesktop.org/drm/intel/issues/1839>)
• igt@gem_ctx_persistence@idempotent:
o shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-snb6/igt@gem_ctx_persistence@idempotent.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1 similar issue
• igt@gem_exec_fair@basic-deadline:
o shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html> (i915#2846<https://gitlab.freedesktop.org/drm/intel/issues/2846>)
• igt@gem_exec_fair@basic-none-vip@rcs0:
o shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@gem_exec_fair@basic-none-vip@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
• igt@gem_exec_fair@basic-pace-share@rcs0:
o shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
• igt@gem_exec_fair@basic-pace@vecs0:
o shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues
• igt@gem_exec_params@secure-non-master:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@gem_exec_params@secure-non-master.html> (fdo#112283<https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
• igt@gem_exec_reloc@basic-gtt-read:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-read.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +2 similar issues
• igt@gem_exec_suspend@basic-s4-devices@smem:
o shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-tglu-8/igt@gem_exec_suspend@basic-s4-devices@smem.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html> (i915#7975<https://gitlab.freedesktop.org/drm/intel/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/intel/issues/8213>)
• igt@gem_exec_whisper@basic-contexts-forked-all:
o shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-forked-all.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html> (i915#8131<https://gitlab.freedesktop.org/drm/intel/issues/8131>)
• igt@gem_lmem_swapping@basic:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@gem_lmem_swapping@basic.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
• igt@gem_lmem_swapping@heavy-verify-random:
o shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-apl1/igt@gem_lmem_swapping@heavy-verify-random.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue
• igt@gem_lmem_swapping@smem-oom@lmem0:
o shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#4936<https://gitlab.freedesktop.org/drm/intel/issues/4936> / i915#5493<https://gitlab.freedesktop.org/drm/intel/issues/5493>)
• igt@gem_mmap@bad-object:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@gem_mmap@bad-object.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>)
• igt@gem_pwrite@basic-exhaustion:
o shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-apl1/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>)
• igt@gem_pxp@reject-modify-context-protection-off-2:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@gem_pxp@reject-modify-context-protection-off-2.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>)
• igt@gem_readwrite@new-obj:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@gem_readwrite@new-obj.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>)
• igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html> (i915#8428<https://gitlab.freedesktop.org/drm/intel/issues/8428>) +1 similar issue
• igt@gem_set_tiling_vs_pwrite:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) +3 similar issues
• igt@gem_userptr_blits@coherency-sync:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@gem_userptr_blits@coherency-sync.html> (fdo#110542<https://bugs.freedesktop.org/show_bug.cgi?id=110542>)
• igt@gem_userptr_blits@relocations:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-1/igt@gem_userptr_blits@relocations.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +2 similar issues
• igt@gen7_exec_parse@batch-without-end:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@gen7_exec_parse@batch-without-end.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
• igt@gen9_exec_parse@allowed-single:
o shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-glk1/igt@gen9_exec_parse@allowed-single.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-glk9/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566>)
• igt@i915_pm_rpm@cursor:
o shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-tglu-2/igt@i915_pm_rpm@cursor.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-tglu-7/igt@i915_pm_rpm@cursor.html> (i915#7940<https://gitlab.freedesktop.org/drm/intel/issues/7940>) +1 similar issue
• igt@i915_pm_rpm@modeset-non-lpsp-stress:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>)
• igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
o shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg2-5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) +1 similar issue
• igt@i915_pm_rpm@pm-caching:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@i915_pm_rpm@pm-caching.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +2 similar issues
• igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>)
• igt@kms_addfb_basic@clobberred-modifier:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@kms_addfb_basic@clobberred-modifier.html> (i915#4212<https://gitlab.freedesktop.org/drm/intel/issues/4212>)
• igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2:
o shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html> (i915#2521<https://gitlab.freedesktop.org/drm/intel/issues/2521>) +1 similar issue
• igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
o shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-8/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 similar issues
• igt@kms_big_fb@4-tiled-8bpp-rotate-90:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>)
• igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
o shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> (i915#5138<https://gitlab.freedesktop.org/drm/intel/issues/5138>)
• igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
o shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>)
• igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
o shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>)
• igt@kms_big_fb@y-tiled-64bpp-rotate-180:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>)
• igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +1 similar issue
• igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html> (i915#3734<https://gitlab.freedesktop.org/drm/intel/issues/3734> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +3 similar issues
• igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +6 similar issues
• igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
o shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-apl1/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +2 similar issues
• igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +5 similar issues
• igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue
• igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
o shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087> / i915#7213<https://gitlab.freedesktop.org/drm/intel/issues/7213>) +3 similar issues
• igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +1 similar issue
• igt@kms_chamelium_hpd@vga-hpd-without-ddc:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>)
• igt@kms_content_protection@atomic@pipe-a-dp-4:
o shard-dg2: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html> (i915#7173<https://gitlab.freedesktop.org/drm/intel/issues/7173>)
• igt@kms_cursor_crc@cursor-rapid-movement-32x10:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> (i915#8814<https://gitlab.freedesktop.org/drm/intel/issues/8814>)
• igt@kms_cursor_crc@cursor-rapid-movement-max-size:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>)
• igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html> (i915#3546<https://gitlab.freedesktop.org/drm/intel/issues/3546>)
• igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> (fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767> / i915#3546<https://gitlab.freedesktop.org/drm/intel/issues/3546>)
• igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
o shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) +1 similar issue
• igt@kms_display_modes@extended-mode-basic:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_display_modes@extended-mode-basic.html> (i915#8827<https://gitlab.freedesktop.org/drm/intel/issues/8827>)
• igt@kms_flip@2x-dpms-vs-vblank-race:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_flip@2x-dpms-vs-vblank-race.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>)
• igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1 similar issue
• igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2:
o shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-glk6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>)
• igt@kms_flip@flip-vs-suspend@c-dp4:
o shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-11/igt@kms_flip@flip-vs-suspend@c-dp4.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>)
• igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>)
• igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>)
• igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +6 similar issues
• igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html> (i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +5 similar issues
• igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
o shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html> (i915#6880<https://gitlab.freedesktop.org/drm/intel/issues/6880>)
• igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html> (i915#3023<https://gitlab.freedesktop.org/drm/intel/issues/3023>) +5 similar issues
• igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +1 similar issue
• igt@kms_hdr@static-toggle:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>)
• igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
• igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
o shard-snb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-snb1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html> (i915#8841<https://gitlab.freedesktop.org/drm/intel/issues/8841>) +4 similar issues
• igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1:
o shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-apl1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html> (i915#4573<https://gitlab.freedesktop.org/drm/intel/issues/4573>) +1 similar issue
• igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
o shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html> (i915#8292<https://gitlab.freedesktop.org/drm/intel/issues/8292>)
• igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3 similar issues
• igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-3:
o shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-3.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3 similar issues
• igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +1 similar issue
• igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1:
o shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-snb7/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +251 similar issues
• igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues
• igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
o shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +15 similar issues
• igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
• igt@kms_psr2_su@frontbuffer-xrgb8888:
o shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-apl1/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
• igt@kms_psr@primary_page_flip:
o shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-apl1/igt@kms_psr@primary_page_flip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +38 similar issues
• igt@kms_rotation_crc@bad-pixel-format:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@kms_rotation_crc@bad-pixel-format.html> (i915#4235<https://gitlab.freedesktop.org/drm/intel/issues/4235>) +1 similar issue
• igt@kms_tv_load_detect@load-detect:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@kms_tv_load_detect@load-detect.html> (fdo#109309<https://bugs.freedesktop.org/show_bug.cgi?id=109309>)
• igt@kms_vblank@pipe-d-wait-idle:
o shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-apl1/igt@kms_vblank@pipe-d-wait-idle.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>)
• igt@kms_writeback@writeback-check-output:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_writeback@writeback-check-output.html> (i915#2437<https://gitlab.freedesktop.org/drm/intel/issues/2437>)
• igt@perf@enable-disable@0-rcs0:
o shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg2-1/igt@perf@enable-disable@0-rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html> (i915#8724<https://gitlab.freedesktop.org/drm/intel/issues/8724>)
• igt@tools_test@sysfs_l3_parity:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@tools_test@sysfs_l3_parity.html> (fdo#109307<https://bugs.freedesktop.org/show_bug.cgi?id=109307>)
• igt@v3d/v3d_submit_csd@job-perfmon:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@v3d/v3d_submit_csd@job-perfmon.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +2 similar issues
• igt@v3d/v3d_submit_csd@multi-and-single-sync:
o shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@v3d/v3d_submit_csd@multi-and-single-sync.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +2 similar issues
• igt@vc4/vc4_tiling@get-bad-flags:
o shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@vc4/vc4_tiling@get-bad-flags.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +1 similar issue
Possible fixes
• igt@gem_eio@kms:
o shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg2-3/igt@gem_eio@kms.html> (i915#7892<https://gitlab.freedesktop.org/drm/intel/issues/7892>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-8/igt@gem_eio@kms.html>
• igt@gem_eio@reset-stress:
o {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg1-14/igt@gem_eio@reset-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg1-14/igt@gem_eio@reset-stress.html>
• igt@gem_exec_whisper@basic-contexts-priority-all:
o shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-priority-all.html> (i915#8131<https://gitlab.freedesktop.org/drm/intel/issues/8131>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-priority-all.html>
• igt@gem_lmem_swapping@smem-oom@lmem0:
o {shard-dg1}: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/intel/issues/5493>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html>
• igt@i915_module_load@reload-with-fault-injection:
o shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html> (i915#8489<https://gitlab.freedesktop.org/drm/intel/issues/8489> / i915#8668<https://gitlab.freedesktop.org/drm/intel/issues/8668>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html>
• igt@i915_pipe_stress@stress-xrgb8888-untiled:
o shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html> (i915#8691<https://gitlab.freedesktop.org/drm/intel/issues/8691>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html>
• igt@i915_pm_rc6_residency@rc6-idle@rcs0:
o {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html>
• igt@i915_pm_rpm@dpms-lpsp:
o {shard-dg1}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg1-12/igt@i915_pm_rpm@dpms-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html>
• igt@i915_pm_rpm@dpms-non-lpsp:
o shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-1/igt@i915_pm_rpm@dpms-non-lpsp.html> +1 similar issue
• igt@i915_pm_rpm@gem-execbuf-stress@smem0:
o shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-tglu-7/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html> (i915#7940<https://gitlab.freedesktop.org/drm/intel/issues/7940>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-tglu-10/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html> +2 similar issues
• igt@i915_pm_rpm@modeset-non-lpsp:
o shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html>
• igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
o shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html>
• igt@kms_cursor_legacy@flip-vs-cursor-toggle:
o shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html>
• igt@kms_fbcon_fbt@fbc-suspend:
o shard-apl: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html>
• igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
o shard-rkl: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> (i915#7461<https://gitlab.freedesktop.org/drm/intel/issues/7461>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html>
Warnings
• igt@i915_pm_rc6_residency@rc6-idle@vecs0:
o shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#2681<https://gitlab.freedesktop.org/drm/intel/issues/2681> / i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#2681<https://gitlab.freedesktop.org/drm/intel/issues/2681>)
• igt@kms_content_protection@mei_interface:
o shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-dg2-1/igt@kms_content_protection@mei_interface.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-dg2-11/igt@kms_content_protection@mei_interface.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118> / i915#7162<https://gitlab.freedesktop.org/drm/intel/issues/7162>)
• igt@kms_fbcon_fbt@psr:
o shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-rkl-2/igt@kms_fbcon_fbt@psr.html> (fdo#110189<https://bugs.freedesktop.org/show_bug.cgi?id=110189> / i915#3955<https://gitlab.freedesktop.org/drm/intel/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-7/igt@kms_fbcon_fbt@psr.html> (i915#3955<https://gitlab.freedesktop.org/drm/intel/issues/3955>)
• igt@kms_force_connector_basic@force-load-detect:
o shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285<https://bugs.freedesktop.org/show_bug.cgi?id=109285> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285<https://bugs.freedesktop.org/show_bug.cgi?id=109285>)
• igt@sysfs_timeslice_duration@timeout@vecs0:
o shard-mtlp: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13394/shard-mtlp-4/igt@sysfs_timeslice_duration@timeout@vecs0.html> (i915#6950<https://gitlab.freedesktop.org/drm/intel/issues/6950>) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120885v2/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html> (i915#8521<https://gitlab.freedesktop.org/drm/intel/issues/8521>)
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
• Linux: CI_DRM_13394 -> Patchwork_120885v2
CI-20190529: 20190529
CI_DRM_13394: 4fab7ebb2e3675cb9fcd7a94a7b34caa0ea855cf @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7392: 1e7c1d677d7ba57f342486bc522ed1bb6c19bf5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_120885v2: 4fab7ebb2e3675cb9fcd7a94a7b34caa0ea855cf @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
On 20/07/2023 18:02, Sripada, Radhakrishna wrote: > Hi Tvrtko, > >> -----Original Message----- >> From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> >> Sent: Thursday, July 20, 2023 2:17 AM >> To: Yang, Fei <fei.yang@intel.com>; Sripada, Radhakrishna >> <radhakrishna.sripada@intel.com>; intel-gfx@lists.freedesktop.org >> Cc: stable@vger.kernel.org; Ville Syrjälä <ville.syrjala@linux.intel.com>; Wilson, >> Chris P <chris.p.wilson@intel.com> >> Subject: Re: [PATCH v2] drm/i915/dpt: Use shmem for dpt objects >> >> >> On 19/07/2023 21:53, Yang, Fei wrote: >>>> On 18/07/2023 23:51, Radhakrishna Sripada wrote: >>>>> Dpt objects that are created from internal get evicted when there is >>>>> memory pressure and do not get restored when pinned during scanout. >>>>> The pinned page table entries look corrupted and programming the >>>>> display engine with the incorrect pte's result in DE throwing pipe faults. >>>>> >>>>> Create DPT objects from shmem and mark the object as dirty when >>>>> pinning so that the object is restored when shrinker evicts an unpinned >> buffer object. >>>>> >>>>> v2: Unconditionally mark the dpt objects dirty during pinning(Chris). >>>>> >>>>> Fixes: 0dc987b699ce ("drm/i915/display: Add smem fallback allocation >>>>> for dpt") >>>>> Cc: <stable@vger.kernel.org> # v6.0+ >>>>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> >>>>> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> >>>>> Suggested-by: Chris Wilson <chris.p.wilson@intel.com> >>>>> Signed-off-by: Fei Yang <fei.yang@intel.com> >>>>> Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> >>>>> --- >>>>> drivers/gpu/drm/i915/display/intel_dpt.c | 4 +++- >>>>> 1 file changed, 3 insertions(+), 1 deletion(-) >>>>> >>>>> diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c >>>>> b/drivers/gpu/drm/i915/display/intel_dpt.c >>>>> index 7c5fddb203ba..fbfd8f959f17 100644 >>>>> --- a/drivers/gpu/drm/i915/display/intel_dpt.c >>>>> +++ b/drivers/gpu/drm/i915/display/intel_dpt.c >>>>> @@ -166,6 +166,8 @@ struct i915_vma *intel_dpt_pin(struct >> i915_address_space *vm) >>>>> i915_vma_get(vma); >>>>> } >>>>> >>>>> + dpt->obj->mm.dirty = true; >>>>> + >>>>> atomic_dec(&i915->gpu_error.pending_fb_pin); >>>>> intel_runtime_pm_put(&i915->runtime_pm, wakeref); >>>>> >>>>> @@ -261,7 +263,7 @@ intel_dpt_create(struct intel_framebuffer *fb) >>>>> dpt_obj = i915_gem_object_create_stolen(i915, size); >>>>> if (IS_ERR(dpt_obj) && !HAS_LMEM(i915)) { >>>>> drm_dbg_kms(&i915->drm, "Allocating dpt from smem\n"); >>>>> - dpt_obj = i915_gem_object_create_internal(i915, size); >>>>> + dpt_obj = i915_gem_object_create_shmem(i915, size); >>>>> } >>>>> if (IS_ERR(dpt_obj)) >>>>> return ERR_CAST(dpt_obj); >>>> >>>> Okay I think I get it after some more looking at the DPT code paths. >>>> Problem seems pretty clear - page tables are stored in dpt_obj and so >>>> are lost when backing store is discarded. >>>> >>>> Changing to shmem object indeed looks the easiest option. >>>> >>>> Some related thoughts: >>>> >>>> 1) >>>> I wonder if intel_dpt_suspend/resume remain needed after this patch. >>>> Could you investigate please? On a glance their job was to restore the >>>> PTEs which would be lost from internal objects backing storage. With >>>> shmem objects that content should be preserved. >>> >>> intel_dpt_suspend is "suspending" the whole VM where, not only the dpt >>> objects are mapped into, but also the framebuffer objects. I don't have >>> much knowledge on how the framebuffer objects are managed, but the >> suspend >>> resume path still look necessary to me, unless the content of these >>> framebuffer objects are also preserved. >> >> I don't think it has anything to do with fb content, but you are correct >> it is still needed. Because 9755f055f512 ("drm/i915: Restore memory >> mapping for DPT FBs across system suspend/resume") reminds me backing >> store for DPT PTEs can be either lmem, stolen or internal (now shmem). >> Even though with this patch internal is out of the picture, stolen >> remains and so the issue of losing the page table content remains. >> Perhaps resume could be optimised to only restore PTEs when VM page >> tables are backed by stolen which may win some suspend/resume speed on >> some platforms. > > I will have to look into how suspend resume will change with the current flow > as you said it can be looked in a later patch. Thanks! >>>> 2) >>>> I wonder if i915_vma_flush_writes should be used (as a companion of >>>> i915_vma_pin_iomap) from DPT dpt_bind_vma, dpt_insert_entries, etc. But >>>> then I am also not sure if it does the right thing for the >>>> i915_gem_object_pin_map path of i915_vma_pin_iomap. Perhaps it should >>>> call __i915_gem_object_flush_map itself for that mapping flavour and >>>> not do the ggtt flushing in that case. > I am not sure if dpt_bind_vma will be called each time during pinning. IMO it gets called > Only when the fb object needs to be bind after and unbind(triggered during obj destroy). > Do you think if i915_vma_flush_writes should not be used if dpt objects are created from internal? No, I *think* correct API usage is supposed to be: If one uses i915_vma_pin_iomap() for CPU access, then one should call i915_vma_flush_writes() after CPU writes are done - presumably as a barrier to make sure writes are visible before proceeding. If that is correct, the I noticed problem (or I am missing something), that i915_vma_flush_writes only does something for the one of the three ways i915_vma_pin_iomap() can set up the CPU visible mapping (the ggtt->iomap path). The i915_gem_object_lmem_io_map() path, relevant on dgfx, has no flushing. Maybe it does need it due WC, or maybe flushing the write-combine buffers would still be needed. And the i915_gem_object_pin_map() path is also WC and in theory there is the corresponding __i915_gem_object_flush_map(). Don't know, maybe I am indeed missing something. But for instance if __i915_gem_object_flush_map() *was* called from i915_vma_flush_writes(), and the latter *was* called after dpt_bind_vma does its thing, then notice how obj->mm.dirty *would* be set by that helper. Removing the need for this patch. So perhaps i915_vma_flush_writes() should just dirty the object, *if* the idea is to be called after CPU writes. And perhaps it should call i915_gem_object_flush_map *if* the method of mmaping was other than ggtt. But the information would have to be recorded first, probably same as the i915_gem_object_pin_map() path records it in the bit 0 of the vma->iomap pointer. > Or should we have a different flavor of i915_vm_pin_iomap that skips i915_vma_set_ggtt_write > so that we can drop i915_vma_flush_writes during unpinning and move i915_vma_set_ggtt_write > to dpt_insert_entires and do i915_vma_flush during clear range? Then I guess __i915_gem_object_flush_map > called during vma bind and not object pinning. In either case I believe it is a larger cleanup > which requires more extensive validation and analysis. Yes definitely wasn't suggesting to do it in this patch. >>>> In summary I think the fix is safe and correct but at least point 1) I >>>> think needs looking into. It can be a follow up work too. > > If you think this fix can work then I will look into the suspend/resume as a follow up and will appreciate > an r-b for this change. I believe 2) is a larger cleanup that may not be immediately required. I will have > to dig more into the ramifications of the changes proposed above. > > Thoughts ? Yeah it is fine. I assumed someone else would r-b but I can too. Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Regards, Tvrtko
Hi Tvrtko, > -----Original Message----- > From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > Sent: Friday, July 21, 2023 1:17 AM > To: Sripada, Radhakrishna <radhakrishna.sripada@intel.com>; Yang, Fei > <fei.yang@intel.com>; intel-gfx@lists.freedesktop.org > Cc: stable@vger.kernel.org; Ville Syrjälä <ville.syrjala@linux.intel.com>; Wilson, > Chris P <chris.p.wilson@intel.com> > Subject: Re: [PATCH v2] drm/i915/dpt: Use shmem for dpt objects > > > On 20/07/2023 18:02, Sripada, Radhakrishna wrote: > > Hi Tvrtko, > > > >> -----Original Message----- > >> From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > >> Sent: Thursday, July 20, 2023 2:17 AM > >> To: Yang, Fei <fei.yang@intel.com>; Sripada, Radhakrishna > >> <radhakrishna.sripada@intel.com>; intel-gfx@lists.freedesktop.org > >> Cc: stable@vger.kernel.org; Ville Syrjälä <ville.syrjala@linux.intel.com>; > Wilson, > >> Chris P <chris.p.wilson@intel.com> > >> Subject: Re: [PATCH v2] drm/i915/dpt: Use shmem for dpt objects > >> > >> > >> On 19/07/2023 21:53, Yang, Fei wrote: > >>>> On 18/07/2023 23:51, Radhakrishna Sripada wrote: > >>>>> Dpt objects that are created from internal get evicted when there is > >>>>> memory pressure and do not get restored when pinned during scanout. > >>>>> The pinned page table entries look corrupted and programming the > >>>>> display engine with the incorrect pte's result in DE throwing pipe faults. > >>>>> > >>>>> Create DPT objects from shmem and mark the object as dirty when > >>>>> pinning so that the object is restored when shrinker evicts an unpinned > >> buffer object. > >>>>> > >>>>> v2: Unconditionally mark the dpt objects dirty during pinning(Chris). > >>>>> > >>>>> Fixes: 0dc987b699ce ("drm/i915/display: Add smem fallback allocation > >>>>> for dpt") > >>>>> Cc: <stable@vger.kernel.org> # v6.0+ > >>>>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > >>>>> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > >>>>> Suggested-by: Chris Wilson <chris.p.wilson@intel.com> > >>>>> Signed-off-by: Fei Yang <fei.yang@intel.com> > >>>>> Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> > >>>>> --- > >>>>> drivers/gpu/drm/i915/display/intel_dpt.c | 4 +++- > >>>>> 1 file changed, 3 insertions(+), 1 deletion(-) > >>>>> > >>>>> diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c > >>>>> b/drivers/gpu/drm/i915/display/intel_dpt.c > >>>>> index 7c5fddb203ba..fbfd8f959f17 100644 > >>>>> --- a/drivers/gpu/drm/i915/display/intel_dpt.c > >>>>> +++ b/drivers/gpu/drm/i915/display/intel_dpt.c > >>>>> @@ -166,6 +166,8 @@ struct i915_vma *intel_dpt_pin(struct > >> i915_address_space *vm) > >>>>> i915_vma_get(vma); > >>>>> } > >>>>> > >>>>> + dpt->obj->mm.dirty = true; > >>>>> + > >>>>> atomic_dec(&i915->gpu_error.pending_fb_pin); > >>>>> intel_runtime_pm_put(&i915->runtime_pm, wakeref); > >>>>> > >>>>> @@ -261,7 +263,7 @@ intel_dpt_create(struct intel_framebuffer *fb) > >>>>> dpt_obj = i915_gem_object_create_stolen(i915, size); > >>>>> if (IS_ERR(dpt_obj) && !HAS_LMEM(i915)) { > >>>>> drm_dbg_kms(&i915->drm, "Allocating dpt from smem\n"); > >>>>> - dpt_obj = i915_gem_object_create_internal(i915, size); > >>>>> + dpt_obj = i915_gem_object_create_shmem(i915, size); > >>>>> } > >>>>> if (IS_ERR(dpt_obj)) > >>>>> return ERR_CAST(dpt_obj); > >>>> > >>>> Okay I think I get it after some more looking at the DPT code paths. > >>>> Problem seems pretty clear - page tables are stored in dpt_obj and so > >>>> are lost when backing store is discarded. > >>>> > >>>> Changing to shmem object indeed looks the easiest option. > >>>> > >>>> Some related thoughts: > >>>> > >>>> 1) > >>>> I wonder if intel_dpt_suspend/resume remain needed after this patch. > >>>> Could you investigate please? On a glance their job was to restore the > >>>> PTEs which would be lost from internal objects backing storage. With > >>>> shmem objects that content should be preserved. > >>> > >>> intel_dpt_suspend is "suspending" the whole VM where, not only the dpt > >>> objects are mapped into, but also the framebuffer objects. I don't have > >>> much knowledge on how the framebuffer objects are managed, but the > >> suspend > >>> resume path still look necessary to me, unless the content of these > >>> framebuffer objects are also preserved. > >> > >> I don't think it has anything to do with fb content, but you are correct > >> it is still needed. Because 9755f055f512 ("drm/i915: Restore memory > >> mapping for DPT FBs across system suspend/resume") reminds me backing > >> store for DPT PTEs can be either lmem, stolen or internal (now shmem). > >> Even though with this patch internal is out of the picture, stolen > >> remains and so the issue of losing the page table content remains. > >> Perhaps resume could be optimised to only restore PTEs when VM page > >> tables are backed by stolen which may win some suspend/resume speed on > >> some platforms. > > > > I will have to look into how suspend resume will change with the current flow > > as you said it can be looked in a later patch. > > Thanks! > > >>>> 2) > >>>> I wonder if i915_vma_flush_writes should be used (as a companion of > >>>> i915_vma_pin_iomap) from DPT dpt_bind_vma, dpt_insert_entries, etc. > But > >>>> then I am also not sure if it does the right thing for the > >>>> i915_gem_object_pin_map path of i915_vma_pin_iomap. Perhaps it > should > >>>> call __i915_gem_object_flush_map itself for that mapping flavour and > >>>> not do the ggtt flushing in that case. > > I am not sure if dpt_bind_vma will be called each time during pinning. IMO it > gets called > > Only when the fb object needs to be bind after and unbind(triggered during obj > destroy). > > Do you think if i915_vma_flush_writes should not be used if dpt objects are > created from internal? > > No, I *think* correct API usage is supposed to be: If one uses > i915_vma_pin_iomap() for CPU access, then one should call > i915_vma_flush_writes() after CPU writes are done - presumably as a > barrier to make sure writes are visible before proceeding. > > If that is correct, the I noticed problem (or I am missing something), > that i915_vma_flush_writes only does something for the one of the three > ways i915_vma_pin_iomap() can set up the CPU visible mapping (the > ggtt->iomap path). > > The i915_gem_object_lmem_io_map() path, relevant on dgfx, has no > flushing. Maybe it does need it due WC, or maybe flushing the > write-combine buffers would still be needed. > > And the i915_gem_object_pin_map() path is also WC and in theory there is > the corresponding __i915_gem_object_flush_map(). > > Don't know, maybe I am indeed missing something. > > But for instance if __i915_gem_object_flush_map() *was* called from > i915_vma_flush_writes(), and the latter *was* called after dpt_bind_vma > does its thing, then notice how obj->mm.dirty *would* be set by that > helper. Removing the need for this patch. > > So perhaps i915_vma_flush_writes() should just dirty the object, *if* > the idea is to be called after CPU writes. And perhaps it should call > i915_gem_object_flush_map *if* the method of mmaping was other than > ggtt. But the information would have to be recorded first, probably same > as the i915_gem_object_pin_map() path records it in the bit 0 of the > vma->iomap pointer. So a question arises if marking the object as dirty/ doing i915_gem_object_flush_map Needs to happen after vma bind or after pinning the dpt? > > > Or should we have a different flavor of i915_vm_pin_iomap that skips > i915_vma_set_ggtt_write > > so that we can drop i915_vma_flush_writes during unpinning and move > i915_vma_set_ggtt_write > > to dpt_insert_entires and do i915_vma_flush during clear range? Then I guess > __i915_gem_object_flush_map > > called during vma bind and not object pinning. In either case I believe it is a > larger cleanup > > which requires more extensive validation and analysis. > > Yes definitely wasn't suggesting to do it in this patch. > > >>>> In summary I think the fix is safe and correct but at least point 1) I > >>>> think needs looking into. It can be a follow up work too. > > > > If you think this fix can work then I will look into the suspend/resume as a > follow up and will appreciate > > an r-b for this change. I believe 2) is a larger cleanup that may not be > immediately required. I will have > > to dig more into the ramifications of the changes proposed above. > > > > Thoughts ? > > Yeah it is fine. I assumed someone else would r-b but I can too. > > Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Thank you for the review, merged the patch. --Radhakrishna Sripada > > Regards, > > Tvrtko
On 22/07/2023 00:54, Sripada, Radhakrishna wrote: > Hi Tvrtko, > >> -----Original Message----- >> From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> >> Sent: Friday, July 21, 2023 1:17 AM >> To: Sripada, Radhakrishna <radhakrishna.sripada@intel.com>; Yang, Fei >> <fei.yang@intel.com>; intel-gfx@lists.freedesktop.org >> Cc: stable@vger.kernel.org; Ville Syrjälä <ville.syrjala@linux.intel.com>; Wilson, >> Chris P <chris.p.wilson@intel.com> >> Subject: Re: [PATCH v2] drm/i915/dpt: Use shmem for dpt objects >> >> >> On 20/07/2023 18:02, Sripada, Radhakrishna wrote: >>> Hi Tvrtko, >>> >>>> -----Original Message----- >>>> From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> >>>> Sent: Thursday, July 20, 2023 2:17 AM >>>> To: Yang, Fei <fei.yang@intel.com>; Sripada, Radhakrishna >>>> <radhakrishna.sripada@intel.com>; intel-gfx@lists.freedesktop.org >>>> Cc: stable@vger.kernel.org; Ville Syrjälä <ville.syrjala@linux.intel.com>; >> Wilson, >>>> Chris P <chris.p.wilson@intel.com> >>>> Subject: Re: [PATCH v2] drm/i915/dpt: Use shmem for dpt objects >>>> >>>> >>>> On 19/07/2023 21:53, Yang, Fei wrote: >>>>>> On 18/07/2023 23:51, Radhakrishna Sripada wrote: >>>>>>> Dpt objects that are created from internal get evicted when there is >>>>>>> memory pressure and do not get restored when pinned during scanout. >>>>>>> The pinned page table entries look corrupted and programming the >>>>>>> display engine with the incorrect pte's result in DE throwing pipe faults. >>>>>>> >>>>>>> Create DPT objects from shmem and mark the object as dirty when >>>>>>> pinning so that the object is restored when shrinker evicts an unpinned >>>> buffer object. >>>>>>> >>>>>>> v2: Unconditionally mark the dpt objects dirty during pinning(Chris). >>>>>>> >>>>>>> Fixes: 0dc987b699ce ("drm/i915/display: Add smem fallback allocation >>>>>>> for dpt") >>>>>>> Cc: <stable@vger.kernel.org> # v6.0+ >>>>>>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> >>>>>>> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> >>>>>>> Suggested-by: Chris Wilson <chris.p.wilson@intel.com> >>>>>>> Signed-off-by: Fei Yang <fei.yang@intel.com> >>>>>>> Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> >>>>>>> --- >>>>>>> drivers/gpu/drm/i915/display/intel_dpt.c | 4 +++- >>>>>>> 1 file changed, 3 insertions(+), 1 deletion(-) >>>>>>> >>>>>>> diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c >>>>>>> b/drivers/gpu/drm/i915/display/intel_dpt.c >>>>>>> index 7c5fddb203ba..fbfd8f959f17 100644 >>>>>>> --- a/drivers/gpu/drm/i915/display/intel_dpt.c >>>>>>> +++ b/drivers/gpu/drm/i915/display/intel_dpt.c >>>>>>> @@ -166,6 +166,8 @@ struct i915_vma *intel_dpt_pin(struct >>>> i915_address_space *vm) >>>>>>> i915_vma_get(vma); >>>>>>> } >>>>>>> >>>>>>> + dpt->obj->mm.dirty = true; >>>>>>> + >>>>>>> atomic_dec(&i915->gpu_error.pending_fb_pin); >>>>>>> intel_runtime_pm_put(&i915->runtime_pm, wakeref); >>>>>>> >>>>>>> @@ -261,7 +263,7 @@ intel_dpt_create(struct intel_framebuffer *fb) >>>>>>> dpt_obj = i915_gem_object_create_stolen(i915, size); >>>>>>> if (IS_ERR(dpt_obj) && !HAS_LMEM(i915)) { >>>>>>> drm_dbg_kms(&i915->drm, "Allocating dpt from smem\n"); >>>>>>> - dpt_obj = i915_gem_object_create_internal(i915, size); >>>>>>> + dpt_obj = i915_gem_object_create_shmem(i915, size); >>>>>>> } >>>>>>> if (IS_ERR(dpt_obj)) >>>>>>> return ERR_CAST(dpt_obj); >>>>>> >>>>>> Okay I think I get it after some more looking at the DPT code paths. >>>>>> Problem seems pretty clear - page tables are stored in dpt_obj and so >>>>>> are lost when backing store is discarded. >>>>>> >>>>>> Changing to shmem object indeed looks the easiest option. >>>>>> >>>>>> Some related thoughts: >>>>>> >>>>>> 1) >>>>>> I wonder if intel_dpt_suspend/resume remain needed after this patch. >>>>>> Could you investigate please? On a glance their job was to restore the >>>>>> PTEs which would be lost from internal objects backing storage. With >>>>>> shmem objects that content should be preserved. >>>>> >>>>> intel_dpt_suspend is "suspending" the whole VM where, not only the dpt >>>>> objects are mapped into, but also the framebuffer objects. I don't have >>>>> much knowledge on how the framebuffer objects are managed, but the >>>> suspend >>>>> resume path still look necessary to me, unless the content of these >>>>> framebuffer objects are also preserved. >>>> >>>> I don't think it has anything to do with fb content, but you are correct >>>> it is still needed. Because 9755f055f512 ("drm/i915: Restore memory >>>> mapping for DPT FBs across system suspend/resume") reminds me backing >>>> store for DPT PTEs can be either lmem, stolen or internal (now shmem). >>>> Even though with this patch internal is out of the picture, stolen >>>> remains and so the issue of losing the page table content remains. >>>> Perhaps resume could be optimised to only restore PTEs when VM page >>>> tables are backed by stolen which may win some suspend/resume speed on >>>> some platforms. >>> >>> I will have to look into how suspend resume will change with the current flow >>> as you said it can be looked in a later patch. >> >> Thanks! >> >>>>>> 2) >>>>>> I wonder if i915_vma_flush_writes should be used (as a companion of >>>>>> i915_vma_pin_iomap) from DPT dpt_bind_vma, dpt_insert_entries, etc. >> But >>>>>> then I am also not sure if it does the right thing for the >>>>>> i915_gem_object_pin_map path of i915_vma_pin_iomap. Perhaps it >> should >>>>>> call __i915_gem_object_flush_map itself for that mapping flavour and >>>>>> not do the ggtt flushing in that case. >>> I am not sure if dpt_bind_vma will be called each time during pinning. IMO it >> gets called >>> Only when the fb object needs to be bind after and unbind(triggered during obj >> destroy). >>> Do you think if i915_vma_flush_writes should not be used if dpt objects are >> created from internal? >> >> No, I *think* correct API usage is supposed to be: If one uses >> i915_vma_pin_iomap() for CPU access, then one should call >> i915_vma_flush_writes() after CPU writes are done - presumably as a >> barrier to make sure writes are visible before proceeding. >> >> If that is correct, the I noticed problem (or I am missing something), >> that i915_vma_flush_writes only does something for the one of the three >> ways i915_vma_pin_iomap() can set up the CPU visible mapping (the >> ggtt->iomap path). >> >> The i915_gem_object_lmem_io_map() path, relevant on dgfx, has no >> flushing. Maybe it does need it due WC, or maybe flushing the >> write-combine buffers would still be needed. >> >> And the i915_gem_object_pin_map() path is also WC and in theory there is >> the corresponding __i915_gem_object_flush_map(). >> >> Don't know, maybe I am indeed missing something. >> >> But for instance if __i915_gem_object_flush_map() *was* called from >> i915_vma_flush_writes(), and the latter *was* called after dpt_bind_vma >> does its thing, then notice how obj->mm.dirty *would* be set by that >> helper. Removing the need for this patch. >> >> So perhaps i915_vma_flush_writes() should just dirty the object, *if* >> the idea is to be called after CPU writes. And perhaps it should call >> i915_gem_object_flush_map *if* the method of mmaping was other than >> ggtt. But the information would have to be recorded first, probably same >> as the i915_gem_object_pin_map() path records it in the bit 0 of the >> vma->iomap pointer. > > So a question arises if marking the object as dirty/ doing i915_gem_object_flush_map > Needs to happen after vma bind or after pinning the dpt? New week and fresh perspective - it probably isn't the case that i915_vma_flush_writes() should be used for flushing after any write and so also setting obj->mm.dirty. I now think so because of the one-shot nature of the i915_vma_unset_ggtt_write(). It wouldn't make sense for it to be for persistently mapped objects since 2nd flush would be a no-op per design. So I think we might be simply relying on some implicit/natural write-combine flushing with other paths in the driver too. I've sent a small patch to hopefully clarify the flushing in the i915_vma_pin_iomap + i915_vma_flush_writes pair, but other than that, and the DPT suspend-resume open, I think lets leave it be for now. Regards, Tvrtko > > >> >>> Or should we have a different flavor of i915_vm_pin_iomap that skips >> i915_vma_set_ggtt_write >>> so that we can drop i915_vma_flush_writes during unpinning and move >> i915_vma_set_ggtt_write >>> to dpt_insert_entires and do i915_vma_flush during clear range? Then I guess >> __i915_gem_object_flush_map >>> called during vma bind and not object pinning. In either case I believe it is a >> larger cleanup >>> which requires more extensive validation and analysis. >> >> Yes definitely wasn't suggesting to do it in this patch. >> >>>>>> In summary I think the fix is safe and correct but at least point 1) I >>>>>> think needs looking into. It can be a follow up work too. >>> >>> If you think this fix can work then I will look into the suspend/resume as a >> follow up and will appreciate >>> an r-b for this change. I believe 2) is a larger cleanup that may not be >> immediately required. I will have >>> to dig more into the ramifications of the changes proposed above. >>> >>> Thoughts ? >> >> Yeah it is fine. I assumed someone else would r-b but I can too. >> >> Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > > Thank you for the review, merged the patch. > > --Radhakrishna Sripada >> >> Regards, >> >> Tvrtko
diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c b/drivers/gpu/drm/i915/display/intel_dpt.c index 7c5fddb203ba..fbfd8f959f17 100644 --- a/drivers/gpu/drm/i915/display/intel_dpt.c +++ b/drivers/gpu/drm/i915/display/intel_dpt.c @@ -166,6 +166,8 @@ struct i915_vma *intel_dpt_pin(struct i915_address_space *vm) i915_vma_get(vma); } + dpt->obj->mm.dirty = true; + atomic_dec(&i915->gpu_error.pending_fb_pin); intel_runtime_pm_put(&i915->runtime_pm, wakeref); @@ -261,7 +263,7 @@ intel_dpt_create(struct intel_framebuffer *fb) dpt_obj = i915_gem_object_create_stolen(i915, size); if (IS_ERR(dpt_obj) && !HAS_LMEM(i915)) { drm_dbg_kms(&i915->drm, "Allocating dpt from smem\n"); - dpt_obj = i915_gem_object_create_internal(i915, size); + dpt_obj = i915_gem_object_create_shmem(i915, size); } if (IS_ERR(dpt_obj)) return ERR_CAST(dpt_obj);