* [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface
@ 2026-03-02 18:17 Jani Nikula
2026-03-02 18:17 ` [PATCH 1/7] drm/i915/gem: relocate __i915_gem_object_{flush, invalidate}_frontbuffer() Jani Nikula
` (9 more replies)
0 siblings, 10 replies; 19+ messages in thread
From: Jani Nikula @ 2026-03-02 18:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Cleanups in frontbuffer code, and move the get/put/ref/flush_if_display
calls to the parent interface.
Jani Nikula (7):
drm/i915/gem: relocate
__i915_gem_object_{flush,invalidate}_frontbuffer()
drm/i915/gem: unify i915 gem object frontbuffer function names
drm/i915/overlay: convert from struct intel_frontbuffer to
i915_frontbuffer
drm/intel: fix @dpt kernel-doc for parent interface
drm/{i915,xe}/frontbuffer: move frontbuffer handling to parent
interface
drm/i915/frontbuffer: call parent interface directly
drm/i915/frontbuffer: reduce fb for frontbuffer abbreviation usage
drivers/gpu/drm/i915/display/intel_bo.c | 36 ----------
drivers/gpu/drm/i915/display/intel_bo.h | 5 --
drivers/gpu/drm/i915/display/intel_fb.c | 8 +--
.../gpu/drm/i915/display/intel_frontbuffer.c | 37 +++-------
.../gpu/drm/i915/display/intel_frontbuffer.h | 21 +++---
drivers/gpu/drm/i915/display/intel_parent.c | 21 ++++++
drivers/gpu/drm/i915/display/intel_parent.h | 7 ++
drivers/gpu/drm/i915/gem/i915_gem_clflush.c | 2 +-
drivers/gpu/drm/i915/gem/i915_gem_domain.c | 6 +-
drivers/gpu/drm/i915/gem/i915_gem_object.c | 24 -------
.../i915/gem/i915_gem_object_frontbuffer.c | 69 ++++++++++++++++++
.../i915/gem/i915_gem_object_frontbuffer.h | 24 +++++--
drivers/gpu/drm/i915/gem/i915_gem_phys.c | 4 +-
drivers/gpu/drm/i915/i915_driver.c | 2 +
drivers/gpu/drm/i915/i915_gem.c | 6 +-
drivers/gpu/drm/i915/i915_overlay.c | 12 ++--
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/display/intel_bo.c | 56 ---------------
drivers/gpu/drm/xe/display/xe_display.c | 2 +
drivers/gpu/drm/xe/display/xe_frontbuffer.c | 71 +++++++++++++++++++
drivers/gpu/drm/xe/display/xe_frontbuffer.h | 9 +++
include/drm/intel/display_parent_interface.h | 13 +++-
22 files changed, 250 insertions(+), 186 deletions(-)
create mode 100644 drivers/gpu/drm/xe/display/xe_frontbuffer.c
create mode 100644 drivers/gpu/drm/xe/display/xe_frontbuffer.h
--
2.47.3
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH 1/7] drm/i915/gem: relocate __i915_gem_object_{flush, invalidate}_frontbuffer()
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
@ 2026-03-02 18:17 ` Jani Nikula
2026-03-04 14:20 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 2/7] drm/i915/gem: unify i915 gem object frontbuffer function names Jani Nikula
` (8 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Jani Nikula @ 2026-03-02 18:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Move __i915_gem_object_{flush,invalidate}_frontbuffer() to
i915_gem_object_frontbuffer.c. All the other i915 gem object frontbuffer
functions are there already, and the relevant declarations are in
i915_gem_object_frontbuffer.h too.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/gem/i915_gem_object.c | 24 -------------------
.../i915/gem/i915_gem_object_frontbuffer.c | 24 +++++++++++++++++++
2 files changed, 24 insertions(+), 24 deletions(-)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object.c b/drivers/gpu/drm/i915/gem/i915_gem_object.c
index 798c920160cf..5172d3982654 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_object.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_object.c
@@ -474,30 +474,6 @@ static void i915_gem_free_object(struct drm_gem_object *gem_obj)
queue_work(i915->wq, &i915->mm.free_work);
}
-void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object *obj,
- enum fb_op_origin origin)
-{
- struct i915_frontbuffer *front;
-
- front = i915_gem_object_frontbuffer_lookup(obj);
- if (front) {
- intel_frontbuffer_flush(&front->base, origin);
- i915_gem_object_frontbuffer_put(front);
- }
-}
-
-void __i915_gem_object_invalidate_frontbuffer(struct drm_i915_gem_object *obj,
- enum fb_op_origin origin)
-{
- struct i915_frontbuffer *front;
-
- front = i915_gem_object_frontbuffer_lookup(obj);
- if (front) {
- intel_frontbuffer_invalidate(&front->base, origin);
- i915_gem_object_frontbuffer_put(front);
- }
-}
-
static void
i915_gem_object_read_from_page_kmap(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size)
{
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
index adba3fa96c05..29076aefdfd8 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
@@ -101,3 +101,27 @@ void i915_gem_object_frontbuffer_put(struct i915_frontbuffer *front)
kref_put_lock(&front->ref, frontbuffer_release,
&i915->frontbuffer_lock);
}
+
+void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object *obj,
+ enum fb_op_origin origin)
+{
+ struct i915_frontbuffer *front;
+
+ front = i915_gem_object_frontbuffer_lookup(obj);
+ if (front) {
+ intel_frontbuffer_flush(&front->base, origin);
+ i915_gem_object_frontbuffer_put(front);
+ }
+}
+
+void __i915_gem_object_invalidate_frontbuffer(struct drm_i915_gem_object *obj,
+ enum fb_op_origin origin)
+{
+ struct i915_frontbuffer *front;
+
+ front = i915_gem_object_frontbuffer_lookup(obj);
+ if (front) {
+ intel_frontbuffer_invalidate(&front->base, origin);
+ i915_gem_object_frontbuffer_put(front);
+ }
+}
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 2/7] drm/i915/gem: unify i915 gem object frontbuffer function names
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
2026-03-02 18:17 ` [PATCH 1/7] drm/i915/gem: relocate __i915_gem_object_{flush, invalidate}_frontbuffer() Jani Nikula
@ 2026-03-02 18:17 ` Jani Nikula
2026-03-05 6:41 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 3/7] drm/i915/overlay: convert from struct intel_frontbuffer to i915_frontbuffer Jani Nikula
` (7 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Jani Nikula @ 2026-03-02 18:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Many of the i915 gem object frontbuffer function names follow the file
name as prefix. Follow suit with the remaining functions, renaming them
i915_gem_object_frontbuffer_*().
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/gem/i915_gem_clflush.c | 2 +-
drivers/gpu/drm/i915/gem/i915_gem_domain.c | 6 +++---
.../gpu/drm/i915/gem/i915_gem_object_frontbuffer.c | 4 ++--
.../gpu/drm/i915/gem/i915_gem_object_frontbuffer.h | 12 ++++++------
drivers/gpu/drm/i915/gem/i915_gem_phys.c | 4 ++--
drivers/gpu/drm/i915/i915_gem.c | 6 +++---
6 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_clflush.c b/drivers/gpu/drm/i915/gem/i915_gem_clflush.c
index 30cc08583cbd..7782ba44fabd 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_clflush.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_clflush.c
@@ -22,7 +22,7 @@ static void __do_clflush(struct drm_i915_gem_object *obj)
GEM_BUG_ON(!i915_gem_object_has_pages(obj));
drm_clflush_sg(obj->mm.pages);
- i915_gem_object_flush_frontbuffer(obj, ORIGIN_CPU);
+ i915_gem_object_frontbuffer_flush(obj, ORIGIN_CPU);
}
static void clflush_work(struct dma_fence_work *base)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_domain.c b/drivers/gpu/drm/i915/gem/i915_gem_domain.c
index ef3b14ae2e0d..df7502391b50 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_domain.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_domain.c
@@ -68,7 +68,7 @@ flush_write_domain(struct drm_i915_gem_object *obj, unsigned int flush_domains)
i915_vma_flush_writes(vma);
spin_unlock(&obj->vma.lock);
- i915_gem_object_flush_frontbuffer(obj, ORIGIN_CPU);
+ i915_gem_object_frontbuffer_flush(obj, ORIGIN_CPU);
break;
case I915_GEM_DOMAIN_WC:
@@ -647,7 +647,7 @@ i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
i915_gem_object_unlock(obj);
if (!err && write_domain)
- i915_gem_object_invalidate_frontbuffer(obj, ORIGIN_CPU);
+ i915_gem_object_frontbuffer_invalidate(obj, ORIGIN_CPU);
out:
i915_gem_object_put(obj);
@@ -759,7 +759,7 @@ int i915_gem_object_prepare_write(struct drm_i915_gem_object *obj,
}
out:
- i915_gem_object_invalidate_frontbuffer(obj, ORIGIN_CPU);
+ i915_gem_object_frontbuffer_invalidate(obj, ORIGIN_CPU);
obj->mm.dirty = true;
/* return with the pages pinned */
return 0;
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
index 29076aefdfd8..cf0b66eaf11b 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
@@ -102,7 +102,7 @@ void i915_gem_object_frontbuffer_put(struct i915_frontbuffer *front)
&i915->frontbuffer_lock);
}
-void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object *obj,
+void __i915_gem_object_frontbuffer_flush(struct drm_i915_gem_object *obj,
enum fb_op_origin origin)
{
struct i915_frontbuffer *front;
@@ -114,7 +114,7 @@ void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object *obj,
}
}
-void __i915_gem_object_invalidate_frontbuffer(struct drm_i915_gem_object *obj,
+void __i915_gem_object_frontbuffer_invalidate(struct drm_i915_gem_object *obj,
enum fb_op_origin origin)
{
struct i915_frontbuffer *front;
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
index 2133e29047c5..1c250ce4ca66 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
@@ -20,25 +20,25 @@ struct i915_frontbuffer {
struct kref ref;
};
-void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object *obj,
+void __i915_gem_object_frontbuffer_flush(struct drm_i915_gem_object *obj,
enum fb_op_origin origin);
-void __i915_gem_object_invalidate_frontbuffer(struct drm_i915_gem_object *obj,
+void __i915_gem_object_frontbuffer_invalidate(struct drm_i915_gem_object *obj,
enum fb_op_origin origin);
static inline void
-i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object *obj,
+i915_gem_object_frontbuffer_flush(struct drm_i915_gem_object *obj,
enum fb_op_origin origin)
{
if (unlikely(rcu_access_pointer(obj->frontbuffer)))
- __i915_gem_object_flush_frontbuffer(obj, origin);
+ __i915_gem_object_frontbuffer_flush(obj, origin);
}
static inline void
-i915_gem_object_invalidate_frontbuffer(struct drm_i915_gem_object *obj,
+i915_gem_object_frontbuffer_invalidate(struct drm_i915_gem_object *obj,
enum fb_op_origin origin)
{
if (unlikely(rcu_access_pointer(obj->frontbuffer)))
- __i915_gem_object_invalidate_frontbuffer(obj, origin);
+ __i915_gem_object_frontbuffer_invalidate(obj, origin);
}
struct i915_frontbuffer *i915_gem_object_frontbuffer_get(struct drm_i915_gem_object *obj);
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_phys.c b/drivers/gpu/drm/i915/gem/i915_gem_phys.c
index ce2780ef97ef..e375afbf458e 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_phys.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_phys.c
@@ -155,7 +155,7 @@ int i915_gem_object_pwrite_phys(struct drm_i915_gem_object *obj,
* We manually control the domain here and pretend that it
* remains coherent i.e. in the GTT domain, like shmem_pwrite.
*/
- i915_gem_object_invalidate_frontbuffer(obj, ORIGIN_CPU);
+ i915_gem_object_frontbuffer_invalidate(obj, ORIGIN_CPU);
if (copy_from_user(vaddr, user_data, args->size))
return -EFAULT;
@@ -163,7 +163,7 @@ int i915_gem_object_pwrite_phys(struct drm_i915_gem_object *obj,
drm_clflush_virt_range(vaddr, args->size);
intel_gt_chipset_flush(to_gt(i915));
- i915_gem_object_flush_frontbuffer(obj, ORIGIN_CPU);
+ i915_gem_object_frontbuffer_flush(obj, ORIGIN_CPU);
return 0;
}
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 160733619a4a..761491750914 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -579,7 +579,7 @@ i915_gem_gtt_pwrite_fast(struct drm_i915_gem_object *obj,
goto out_rpm;
}
- i915_gem_object_invalidate_frontbuffer(obj, ORIGIN_CPU);
+ i915_gem_object_frontbuffer_invalidate(obj, ORIGIN_CPU);
user_data = u64_to_user_ptr(args->data_ptr);
offset = args->offset;
@@ -626,7 +626,7 @@ i915_gem_gtt_pwrite_fast(struct drm_i915_gem_object *obj,
}
intel_gt_flush_ggtt_writes(ggtt->vm.gt);
- i915_gem_object_flush_frontbuffer(obj, ORIGIN_CPU);
+ i915_gem_object_frontbuffer_flush(obj, ORIGIN_CPU);
i915_gem_gtt_cleanup(obj, &node, vma);
out_rpm:
@@ -714,7 +714,7 @@ i915_gem_shmem_pwrite(struct drm_i915_gem_object *obj,
offset = 0;
}
- i915_gem_object_flush_frontbuffer(obj, ORIGIN_CPU);
+ i915_gem_object_frontbuffer_flush(obj, ORIGIN_CPU);
i915_gem_object_unpin_pages(obj);
return ret;
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 3/7] drm/i915/overlay: convert from struct intel_frontbuffer to i915_frontbuffer
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
2026-03-02 18:17 ` [PATCH 1/7] drm/i915/gem: relocate __i915_gem_object_{flush, invalidate}_frontbuffer() Jani Nikula
2026-03-02 18:17 ` [PATCH 2/7] drm/i915/gem: unify i915 gem object frontbuffer function names Jani Nikula
@ 2026-03-02 18:17 ` Jani Nikula
2026-03-05 7:07 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 4/7] drm/intel: fix @dpt kernel-doc for parent interface Jani Nikula
` (6 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Jani Nikula @ 2026-03-02 18:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
The intel_frontbuffer_get() and intel_frontbuffer_put() calls are routed
through intel_frontbuffer.c to i915_gem_object_frontbuffer.c. We might
as well call the functions directly, instead of going through display
code. This would only get worse with get/put being moved to the parent
interface.
To make this easier, convert overlay code from struct intel_frontbuffer
to struct i915_frontbuffer, and add a
i915_gem_object_frontbuffer_track() wrapper for clarity.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../gpu/drm/i915/gem/i915_gem_object_frontbuffer.h | 10 ++++++++++
drivers/gpu/drm/i915/i915_overlay.c | 12 ++++++------
2 files changed, 16 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
index 1c250ce4ca66..46124048a59f 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
@@ -45,6 +45,16 @@ struct i915_frontbuffer *i915_gem_object_frontbuffer_get(struct drm_i915_gem_obj
void i915_gem_object_frontbuffer_ref(struct i915_frontbuffer *front);
void i915_gem_object_frontbuffer_put(struct i915_frontbuffer *front);
+static inline void i915_gem_object_frontbuffer_track(struct i915_frontbuffer *_old,
+ struct i915_frontbuffer *_new,
+ unsigned int frontbuffer_bits)
+{
+ struct intel_frontbuffer *old = _old ? &_old->base : NULL;
+ struct intel_frontbuffer *new = _new ? &_new->base : NULL;
+
+ intel_frontbuffer_track(old, new, frontbuffer_bits);
+}
+
/**
* i915_gem_object_frontbuffer_lookup - Look up the object's frontbuffer
* @obj: The object whose frontbuffer to look up.
diff --git a/drivers/gpu/drm/i915/i915_overlay.c b/drivers/gpu/drm/i915/i915_overlay.c
index 28518dbb5b8e..f07a07b90b2a 100644
--- a/drivers/gpu/drm/i915/i915_overlay.c
+++ b/drivers/gpu/drm/i915/i915_overlay.c
@@ -30,7 +30,7 @@ struct i915_overlay {
struct intel_context *context;
struct i915_vma *vma;
struct i915_vma *old_vma;
- struct intel_frontbuffer *frontbuffer;
+ struct i915_frontbuffer *frontbuffer;
/* register access */
struct drm_i915_gem_object *reg_bo;
void __iomem *regs;
@@ -138,18 +138,18 @@ static void i915_overlay_flip_prepare(struct i915_overlay *overlay,
struct i915_vma *vma)
{
struct drm_i915_private *i915 = overlay->i915;
- struct intel_frontbuffer *frontbuffer = NULL;
+ struct i915_frontbuffer *frontbuffer = NULL;
drm_WARN_ON(&i915->drm, overlay->old_vma);
if (vma)
- frontbuffer = intel_frontbuffer_get(intel_bo_to_drm_bo(vma->obj));
+ frontbuffer = i915_gem_object_frontbuffer_get(vma->obj);
- intel_frontbuffer_track(overlay->frontbuffer, frontbuffer,
- overlay->frontbuffer_bits);
+ i915_gem_object_frontbuffer_track(overlay->frontbuffer, frontbuffer,
+ overlay->frontbuffer_bits);
if (overlay->frontbuffer)
- intel_frontbuffer_put(overlay->frontbuffer);
+ i915_gem_object_frontbuffer_put(overlay->frontbuffer);
overlay->frontbuffer = frontbuffer;
overlay->old_vma = overlay->vma;
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 4/7] drm/intel: fix @dpt kernel-doc for parent interface
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
` (2 preceding siblings ...)
2026-03-02 18:17 ` [PATCH 3/7] drm/i915/overlay: convert from struct intel_frontbuffer to i915_frontbuffer Jani Nikula
@ 2026-03-02 18:17 ` Jani Nikula
2026-03-05 11:37 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 5/7] drm/{i915, xe}/frontbuffer: move frontbuffer handling to " Jani Nikula
` (5 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Jani Nikula @ 2026-03-02 18:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Fix the copy-paste fail.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/intel/display_parent_interface.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index b4b0f58ae3ee..b439e513c0c5 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -162,7 +162,7 @@ struct intel_display_stolen_interface {
* check the optional pointers.
*/
struct intel_display_parent_interface {
- /** @dsb: DPT interface. Optional. */
+ /** @dpt: DPT interface. Optional. */
const struct intel_display_dpt_interface *dpt;
/** @dsb: DSB buffer interface */
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 5/7] drm/{i915, xe}/frontbuffer: move frontbuffer handling to parent interface
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
` (3 preceding siblings ...)
2026-03-02 18:17 ` [PATCH 4/7] drm/intel: fix @dpt kernel-doc for parent interface Jani Nikula
@ 2026-03-02 18:17 ` Jani Nikula
2026-03-06 6:54 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 6/7] drm/i915/frontbuffer: call parent interface directly Jani Nikula
` (4 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Jani Nikula @ 2026-03-02 18:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Move the get/put/ref/flush_for_display calls to the display parent
interface.
For i915, move the hooks next to the other i915 core frontbuffer code in
i915_gem_object_frontbuffer.c. For xe, add new file xe_frontbuffer.c for
the same.
Note: The intel_frontbuffer_flush() calls from
i915_gem_object_frontbuffer.c will partially route back to i915 core via
the parent interface. This is less than stellar.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_bo.c | 36 ----------
drivers/gpu/drm/i915/display/intel_bo.h | 5 --
.../gpu/drm/i915/display/intel_frontbuffer.c | 12 ++--
drivers/gpu/drm/i915/display/intel_parent.c | 21 ++++++
drivers/gpu/drm/i915/display/intel_parent.h | 7 ++
.../i915/gem/i915_gem_object_frontbuffer.c | 45 ++++++++++++
.../i915/gem/i915_gem_object_frontbuffer.h | 2 +
drivers/gpu/drm/i915/i915_driver.c | 2 +
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/display/intel_bo.c | 56 ---------------
drivers/gpu/drm/xe/display/xe_display.c | 2 +
drivers/gpu/drm/xe/display/xe_frontbuffer.c | 71 +++++++++++++++++++
drivers/gpu/drm/xe/display/xe_frontbuffer.h | 9 +++
include/drm/intel/display_parent_interface.h | 11 +++
14 files changed, 178 insertions(+), 102 deletions(-)
create mode 100644 drivers/gpu/drm/xe/display/xe_frontbuffer.c
create mode 100644 drivers/gpu/drm/xe/display/xe_frontbuffer.h
diff --git a/drivers/gpu/drm/i915/display/intel_bo.c b/drivers/gpu/drm/i915/display/intel_bo.c
index 8f372b33d48b..2b6eaec351d8 100644
--- a/drivers/gpu/drm/i915/display/intel_bo.c
+++ b/drivers/gpu/drm/i915/display/intel_bo.c
@@ -45,42 +45,6 @@ int intel_bo_read_from_page(struct drm_gem_object *obj, u64 offset, void *dst, i
return i915_gem_object_read_from_page(to_intel_bo(obj), offset, dst, size);
}
-struct intel_frontbuffer *intel_bo_frontbuffer_get(struct drm_gem_object *_obj)
-{
- struct drm_i915_gem_object *obj = to_intel_bo(_obj);
- struct i915_frontbuffer *front;
-
- front = i915_gem_object_frontbuffer_get(obj);
- if (!front)
- return NULL;
-
- return &front->base;
-}
-
-void intel_bo_frontbuffer_ref(struct intel_frontbuffer *_front)
-{
- struct i915_frontbuffer *front =
- container_of(_front, typeof(*front), base);
-
- i915_gem_object_frontbuffer_ref(front);
-}
-
-void intel_bo_frontbuffer_put(struct intel_frontbuffer *_front)
-{
- struct i915_frontbuffer *front =
- container_of(_front, typeof(*front), base);
-
- return i915_gem_object_frontbuffer_put(front);
-}
-
-void intel_bo_frontbuffer_flush_for_display(struct intel_frontbuffer *_front)
-{
- struct i915_frontbuffer *front =
- container_of(_front, typeof(*front), base);
-
- i915_gem_object_flush_if_display(front->obj);
-}
-
void intel_bo_describe(struct seq_file *m, struct drm_gem_object *obj)
{
i915_debugfs_describe_obj(m, to_intel_bo(obj));
diff --git a/drivers/gpu/drm/i915/display/intel_bo.h b/drivers/gpu/drm/i915/display/intel_bo.h
index 516a3836a6bc..40390ed92ceb 100644
--- a/drivers/gpu/drm/i915/display/intel_bo.h
+++ b/drivers/gpu/drm/i915/display/intel_bo.h
@@ -20,11 +20,6 @@ int intel_bo_key_check(struct drm_gem_object *obj);
int intel_bo_fb_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma);
int intel_bo_read_from_page(struct drm_gem_object *obj, u64 offset, void *dst, int size);
-struct intel_frontbuffer *intel_bo_frontbuffer_get(struct drm_gem_object *obj);
-void intel_bo_frontbuffer_ref(struct intel_frontbuffer *front);
-void intel_bo_frontbuffer_put(struct intel_frontbuffer *front);
-void intel_bo_frontbuffer_flush_for_display(struct intel_frontbuffer *front);
-
void intel_bo_describe(struct seq_file *m, struct drm_gem_object *obj);
#endif /* __INTEL_BO__ */
diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.c b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
index 03c4978fa5ec..a355dc064528 100644
--- a/drivers/gpu/drm/i915/display/intel_frontbuffer.c
+++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
@@ -58,13 +58,13 @@
#include <drm/drm_gem.h>
#include <drm/drm_print.h>
-#include "intel_bo.h"
#include "intel_display_trace.h"
#include "intel_display_types.h"
#include "intel_dp.h"
#include "intel_drrs.h"
#include "intel_fbc.h"
#include "intel_frontbuffer.h"
+#include "intel_parent.h"
#include "intel_psr.h"
#include "intel_tdf.h"
@@ -150,7 +150,7 @@ void __intel_fb_flush(struct intel_frontbuffer *front,
struct intel_display *display = front->display;
if (origin == ORIGIN_DIRTYFB)
- intel_bo_frontbuffer_flush_for_display(front);
+ intel_parent_frontbuffer_flush_for_display(display, front);
if (origin == ORIGIN_CS) {
spin_lock(&display->fb_tracking.lock);
@@ -166,7 +166,7 @@ void __intel_fb_flush(struct intel_frontbuffer *front,
static void intel_frontbuffer_ref(struct intel_frontbuffer *front)
{
- intel_bo_frontbuffer_ref(front);
+ intel_parent_frontbuffer_ref(front->display, front);
}
static void intel_frontbuffer_flush_work(struct work_struct *work)
@@ -209,12 +209,14 @@ void intel_frontbuffer_fini(struct intel_frontbuffer *front)
struct intel_frontbuffer *intel_frontbuffer_get(struct drm_gem_object *obj)
{
- return intel_bo_frontbuffer_get(obj);
+ struct intel_display *display = to_intel_display(obj->dev);
+
+ return intel_parent_frontbuffer_get(display, obj);
}
void intel_frontbuffer_put(struct intel_frontbuffer *front)
{
- intel_bo_frontbuffer_put(front);
+ intel_parent_frontbuffer_put(front->display, front);
}
/**
diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
index 89f78ca1cd15..4142fe3eed7c 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.c
+++ b/drivers/gpu/drm/i915/display/intel_parent.c
@@ -51,6 +51,27 @@ void intel_parent_dpt_resume(struct intel_display *display, struct intel_dpt *dp
display->parent->dpt->resume(dpt);
}
+/* frontbuffer */
+struct intel_frontbuffer *intel_parent_frontbuffer_get(struct intel_display *display, struct drm_gem_object *obj)
+{
+ return display->parent->frontbuffer->get(obj);
+}
+
+void intel_parent_frontbuffer_ref(struct intel_display *display, struct intel_frontbuffer *front)
+{
+ display->parent->frontbuffer->ref(front);
+}
+
+void intel_parent_frontbuffer_put(struct intel_display *display, struct intel_frontbuffer *front)
+{
+ display->parent->frontbuffer->put(front);
+}
+
+void intel_parent_frontbuffer_flush_for_display(struct intel_display *display, struct intel_frontbuffer *front)
+{
+ display->parent->frontbuffer->flush_for_display(front);
+}
+
/* hdcp */
ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display *display,
struct intel_hdcp_gsc_context *gsc_context,
diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
index 2317482ef072..c1214d3329a8 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.h
+++ b/drivers/gpu/drm/i915/display/intel_parent.h
@@ -13,6 +13,7 @@ struct drm_scanout_buffer;
struct i915_vma;
struct intel_display;
struct intel_dpt;
+struct intel_frontbuffer;
struct intel_hdcp_gsc_context;
struct intel_panic;
struct intel_stolen_node;
@@ -24,6 +25,12 @@ void intel_parent_dpt_destroy(struct intel_display *display, struct intel_dpt *d
void intel_parent_dpt_suspend(struct intel_display *display, struct intel_dpt *dpt);
void intel_parent_dpt_resume(struct intel_display *display, struct intel_dpt *dpt);
+/* frontbuffer */
+struct intel_frontbuffer *intel_parent_frontbuffer_get(struct intel_display *display, struct drm_gem_object *obj);
+void intel_parent_frontbuffer_ref(struct intel_display *display, struct intel_frontbuffer *front);
+void intel_parent_frontbuffer_put(struct intel_display *display, struct intel_frontbuffer *front);
+void intel_parent_frontbuffer_flush_for_display(struct intel_display *display, struct intel_frontbuffer *front);
+
/* hdcp */
ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display *display,
struct intel_hdcp_gsc_context *gsc_context,
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
index cf0b66eaf11b..f885c4fb1326 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
@@ -1,6 +1,8 @@
// SPDX-License-Identifier: MIT
/* Copyright © 2025 Intel Corporation */
+#include <drm/intel/display_parent_interface.h>
+
#include "i915_drv.h"
#include "i915_gem_object_frontbuffer.h"
@@ -125,3 +127,46 @@ void __i915_gem_object_frontbuffer_invalidate(struct drm_i915_gem_object *obj,
i915_gem_object_frontbuffer_put(front);
}
}
+
+static struct intel_frontbuffer *i915_frontbuffer_get(struct drm_gem_object *_obj)
+{
+ struct drm_i915_gem_object *obj = to_intel_bo(_obj);
+ struct i915_frontbuffer *front;
+
+ front = i915_gem_object_frontbuffer_get(obj);
+ if (!front)
+ return NULL;
+
+ return &front->base;
+}
+
+static void i915_frontbuffer_ref(struct intel_frontbuffer *_front)
+{
+ struct i915_frontbuffer *front =
+ container_of(_front, typeof(*front), base);
+
+ i915_gem_object_frontbuffer_ref(front);
+}
+
+static void i915_frontbuffer_put(struct intel_frontbuffer *_front)
+{
+ struct i915_frontbuffer *front =
+ container_of(_front, typeof(*front), base);
+
+ return i915_gem_object_frontbuffer_put(front);
+}
+
+static void i915_frontbuffer_flush_for_display(struct intel_frontbuffer *_front)
+{
+ struct i915_frontbuffer *front =
+ container_of(_front, typeof(*front), base);
+
+ i915_gem_object_flush_if_display(front->obj);
+}
+
+const struct intel_display_frontbuffer_interface i915_display_frontbuffer_interface = {
+ .get = i915_frontbuffer_get,
+ .ref = i915_frontbuffer_ref,
+ .put = i915_frontbuffer_put,
+ .flush_for_display = i915_frontbuffer_flush_for_display,
+};
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
index 46124048a59f..9c6d91f21c19 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
@@ -91,4 +91,6 @@ i915_gem_object_frontbuffer_lookup(const struct drm_i915_gem_object *obj)
return front;
}
+extern const struct intel_display_frontbuffer_interface i915_display_frontbuffer_interface;
+
#endif
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index 5f77e891604d..8c3a8bffc691 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -78,6 +78,7 @@
#include "gem/i915_gem_dmabuf.h"
#include "gem/i915_gem_ioctls.h"
#include "gem/i915_gem_mman.h"
+#include "gem/i915_gem_object_frontbuffer.h"
#include "gem/i915_gem_pm.h"
#include "gt/intel_gt.h"
#include "gt/intel_gt_pm.h"
@@ -765,6 +766,7 @@ static bool vgpu_active(struct drm_device *drm)
static const struct intel_display_parent_interface parent = {
.dpt = &i915_display_dpt_interface,
.dsb = &i915_display_dsb_interface,
+ .frontbuffer = &i915_display_frontbuffer_interface,
.hdcp = &i915_display_hdcp_interface,
.initial_plane = &i915_display_initial_plane_interface,
.irq = &i915_display_irq_interface,
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index ff778fb2d4ff..9b3f8ad40d50 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -219,6 +219,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
display/xe_display_wa.o \
display/xe_dsb_buffer.o \
display/xe_fb_pin.o \
+ display/xe_frontbuffer.o \
display/xe_hdcp_gsc.o \
display/xe_initial_plane.o \
display/xe_panic.o \
diff --git a/drivers/gpu/drm/xe/display/intel_bo.c b/drivers/gpu/drm/xe/display/intel_bo.c
index 05d5e5c0a0de..fa1f2c796b81 100644
--- a/drivers/gpu/drm/xe/display/intel_bo.c
+++ b/drivers/gpu/drm/xe/display/intel_bo.c
@@ -47,62 +47,6 @@ int intel_bo_read_from_page(struct drm_gem_object *obj, u64 offset, void *dst, i
return xe_bo_read(bo, offset, dst, size);
}
-struct xe_frontbuffer {
- struct intel_frontbuffer base;
- struct drm_gem_object *obj;
- struct kref ref;
-};
-
-struct intel_frontbuffer *intel_bo_frontbuffer_get(struct drm_gem_object *obj)
-{
- struct xe_frontbuffer *front;
-
- front = kmalloc_obj(*front);
- if (!front)
- return NULL;
-
- intel_frontbuffer_init(&front->base, obj->dev);
-
- kref_init(&front->ref);
-
- drm_gem_object_get(obj);
- front->obj = obj;
-
- return &front->base;
-}
-
-void intel_bo_frontbuffer_ref(struct intel_frontbuffer *_front)
-{
- struct xe_frontbuffer *front =
- container_of(_front, typeof(*front), base);
-
- kref_get(&front->ref);
-}
-
-static void frontbuffer_release(struct kref *ref)
-{
- struct xe_frontbuffer *front =
- container_of(ref, typeof(*front), ref);
-
- intel_frontbuffer_fini(&front->base);
-
- drm_gem_object_put(front->obj);
-
- kfree(front);
-}
-
-void intel_bo_frontbuffer_put(struct intel_frontbuffer *_front)
-{
- struct xe_frontbuffer *front =
- container_of(_front, typeof(*front), base);
-
- kref_put(&front->ref, frontbuffer_release);
-}
-
-void intel_bo_frontbuffer_flush_for_display(struct intel_frontbuffer *front)
-{
-}
-
void intel_bo_describe(struct seq_file *m, struct drm_gem_object *obj)
{
/* FIXME */
diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
index c8dd3faa9b97..f1e1889a52d3 100644
--- a/drivers/gpu/drm/xe/display/xe_display.c
+++ b/drivers/gpu/drm/xe/display/xe_display.c
@@ -38,6 +38,7 @@
#include "xe_display_pcode.h"
#include "xe_display_rpm.h"
#include "xe_dsb_buffer.h"
+#include "xe_frontbuffer.h"
#include "xe_hdcp_gsc.h"
#include "xe_initial_plane.h"
#include "xe_module.h"
@@ -541,6 +542,7 @@ static const struct intel_display_irq_interface xe_display_irq_interface = {
static const struct intel_display_parent_interface parent = {
.dsb = &xe_display_dsb_interface,
+ .frontbuffer = &xe_display_frontbuffer_interface,
.hdcp = &xe_display_hdcp_interface,
.initial_plane = &xe_display_initial_plane_interface,
.irq = &xe_display_irq_interface,
diff --git a/drivers/gpu/drm/xe/display/xe_frontbuffer.c b/drivers/gpu/drm/xe/display/xe_frontbuffer.c
new file mode 100644
index 000000000000..113fc017ee94
--- /dev/null
+++ b/drivers/gpu/drm/xe/display/xe_frontbuffer.c
@@ -0,0 +1,71 @@
+// SPDX-License-Identifier: MIT
+/* Copyright © 2026 Intel Corporation */
+
+#include <drm/drm_gem.h>
+#include <drm/intel/display_parent_interface.h>
+
+#include "intel_frontbuffer.h"
+#include "xe_frontbuffer.h"
+
+struct xe_frontbuffer {
+ struct intel_frontbuffer base;
+ struct drm_gem_object *obj;
+ struct kref ref;
+};
+
+static struct intel_frontbuffer *xe_frontbuffer_get(struct drm_gem_object *obj)
+{
+ struct xe_frontbuffer *front;
+
+ front = kmalloc_obj(*front);
+ if (!front)
+ return NULL;
+
+ intel_frontbuffer_init(&front->base, obj->dev);
+
+ kref_init(&front->ref);
+
+ drm_gem_object_get(obj);
+ front->obj = obj;
+
+ return &front->base;
+}
+
+static void xe_frontbuffer_ref(struct intel_frontbuffer *_front)
+{
+ struct xe_frontbuffer *front =
+ container_of(_front, typeof(*front), base);
+
+ kref_get(&front->ref);
+}
+
+static void frontbuffer_release(struct kref *ref)
+{
+ struct xe_frontbuffer *front =
+ container_of(ref, typeof(*front), ref);
+
+ intel_frontbuffer_fini(&front->base);
+
+ drm_gem_object_put(front->obj);
+
+ kfree(front);
+}
+
+static void xe_frontbuffer_put(struct intel_frontbuffer *_front)
+{
+ struct xe_frontbuffer *front =
+ container_of(_front, typeof(*front), base);
+
+ kref_put(&front->ref, frontbuffer_release);
+}
+
+static void xe_frontbuffer_flush_for_display(struct intel_frontbuffer *front)
+{
+}
+
+const struct intel_display_frontbuffer_interface xe_display_frontbuffer_interface = {
+ .get = xe_frontbuffer_get,
+ .ref = xe_frontbuffer_ref,
+ .put = xe_frontbuffer_put,
+ .flush_for_display = xe_frontbuffer_flush_for_display,
+};
diff --git a/drivers/gpu/drm/xe/display/xe_frontbuffer.h b/drivers/gpu/drm/xe/display/xe_frontbuffer.h
new file mode 100644
index 000000000000..6b4f59b42ade
--- /dev/null
+++ b/drivers/gpu/drm/xe/display/xe_frontbuffer.h
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: MIT */
+/* Copyright © 2026 Intel Corporation */
+
+#ifndef _XE_FRONTBUFFER_H_
+#define _XE_FRONTBUFFER_H_
+
+extern const struct intel_display_frontbuffer_interface xe_display_frontbuffer_interface;
+
+#endif
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index b439e513c0c5..5cdbce165b1f 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -17,6 +17,7 @@ struct drm_scanout_buffer;
struct i915_vma;
struct intel_dpt;
struct intel_dsb_buffer;
+struct intel_frontbuffer;
struct intel_hdcp_gsc_context;
struct intel_initial_plane_config;
struct intel_panic;
@@ -42,6 +43,13 @@ struct intel_display_dsb_interface {
void (*flush_map)(struct intel_dsb_buffer *dsb_buf);
};
+struct intel_display_frontbuffer_interface {
+ struct intel_frontbuffer *(*get)(struct drm_gem_object *obj);
+ void (*ref)(struct intel_frontbuffer *front);
+ void (*put)(struct intel_frontbuffer *front);
+ void (*flush_for_display)(struct intel_frontbuffer *front);
+};
+
struct intel_display_hdcp_interface {
ssize_t (*gsc_msg_send)(struct intel_hdcp_gsc_context *gsc_context,
void *msg_in, size_t msg_in_len,
@@ -168,6 +176,9 @@ struct intel_display_parent_interface {
/** @dsb: DSB buffer interface */
const struct intel_display_dsb_interface *dsb;
+ /** @frontbuffer: Frontbuffer interface */
+ const struct intel_display_frontbuffer_interface *frontbuffer;
+
/** @hdcp: HDCP GSC interface */
const struct intel_display_hdcp_interface *hdcp;
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 6/7] drm/i915/frontbuffer: call parent interface directly
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
` (4 preceding siblings ...)
2026-03-02 18:17 ` [PATCH 5/7] drm/{i915, xe}/frontbuffer: move frontbuffer handling to " Jani Nikula
@ 2026-03-02 18:17 ` Jani Nikula
2026-03-06 7:05 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 7/7] drm/i915/frontbuffer: reduce fb for frontbuffer abbreviation usage Jani Nikula
` (3 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Jani Nikula @ 2026-03-02 18:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Do away with the redundant intel_frontbuffer_get(),
intel_frontbuffer_put(), and intel_frontbuffer_ref() functions, and call
the parent interface functions directly.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fb.c | 8 +++----
.../gpu/drm/i915/display/intel_frontbuffer.c | 23 +++----------------
.../gpu/drm/i915/display/intel_frontbuffer.h | 5 ----
3 files changed, 7 insertions(+), 29 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 6be07d8a7e81..49c6ca9d94c6 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -2113,7 +2113,7 @@ static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
intel_fb_bo_framebuffer_fini(intel_fb_bo(fb));
- intel_frontbuffer_put(intel_fb->frontbuffer);
+ intel_parent_frontbuffer_put(display, intel_fb->frontbuffer);
kfree(intel_fb->panic);
kfree(intel_fb);
@@ -2221,10 +2221,10 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
return -ENOMEM;
/*
- * intel_frontbuffer_get() must be done before
+ * intel_parent_frontbuffer_get() must be done before
* intel_fb_bo_framebuffer_init() to avoid set_tiling vs. addfb race.
*/
- intel_fb->frontbuffer = intel_frontbuffer_get(obj);
+ intel_fb->frontbuffer = intel_parent_frontbuffer_get(display, obj);
if (!intel_fb->frontbuffer) {
ret = -ENOMEM;
goto err_free_panic;
@@ -2335,7 +2335,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
err_bo_framebuffer_fini:
intel_fb_bo_framebuffer_fini(obj);
err_frontbuffer_put:
- intel_frontbuffer_put(intel_fb->frontbuffer);
+ intel_parent_frontbuffer_put(display, intel_fb->frontbuffer);
err_free_panic:
kfree(intel_fb->panic);
diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.c b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
index a355dc064528..61ce82f85dad 100644
--- a/drivers/gpu/drm/i915/display/intel_frontbuffer.c
+++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
@@ -164,18 +164,13 @@ void __intel_fb_flush(struct intel_frontbuffer *front,
frontbuffer_flush(display, frontbuffer_bits, origin);
}
-static void intel_frontbuffer_ref(struct intel_frontbuffer *front)
-{
- intel_parent_frontbuffer_ref(front->display, front);
-}
-
static void intel_frontbuffer_flush_work(struct work_struct *work)
{
struct intel_frontbuffer *front =
container_of(work, struct intel_frontbuffer, flush_work);
intel_frontbuffer_flush(front, ORIGIN_DIRTYFB);
- intel_frontbuffer_put(front);
+ intel_parent_frontbuffer_put(front->display, front);
}
/**
@@ -190,9 +185,9 @@ void intel_frontbuffer_queue_flush(struct intel_frontbuffer *front)
if (!front)
return;
- intel_frontbuffer_ref(front);
+ intel_parent_frontbuffer_ref(front->display, front);
if (!schedule_work(&front->flush_work))
- intel_frontbuffer_put(front);
+ intel_parent_frontbuffer_put(front->display, front);
}
void intel_frontbuffer_init(struct intel_frontbuffer *front, struct drm_device *drm)
@@ -207,18 +202,6 @@ void intel_frontbuffer_fini(struct intel_frontbuffer *front)
drm_WARN_ON(front->display->drm, atomic_read(&front->bits));
}
-struct intel_frontbuffer *intel_frontbuffer_get(struct drm_gem_object *obj)
-{
- struct intel_display *display = to_intel_display(obj->dev);
-
- return intel_parent_frontbuffer_get(display, obj);
-}
-
-void intel_frontbuffer_put(struct intel_frontbuffer *front)
-{
- intel_parent_frontbuffer_put(front->display, front);
-}
-
/**
* intel_frontbuffer_track - update frontbuffer tracking
* @old: current buffer for the frontbuffer slots
diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.h b/drivers/gpu/drm/i915/display/intel_frontbuffer.h
index 22677acb4c06..c9a22b6ccfd6 100644
--- a/drivers/gpu/drm/i915/display/intel_frontbuffer.h
+++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.h
@@ -66,11 +66,6 @@ struct intel_frontbuffer {
void intel_frontbuffer_flip(struct intel_display *display,
unsigned frontbuffer_bits);
-void intel_frontbuffer_put(struct intel_frontbuffer *front);
-
-struct intel_frontbuffer *
-intel_frontbuffer_get(struct drm_gem_object *obj);
-
void __intel_fb_invalidate(struct intel_frontbuffer *front,
enum fb_op_origin origin,
unsigned int frontbuffer_bits);
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 7/7] drm/i915/frontbuffer: reduce fb for frontbuffer abbreviation usage
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
` (5 preceding siblings ...)
2026-03-02 18:17 ` [PATCH 6/7] drm/i915/frontbuffer: call parent interface directly Jani Nikula
@ 2026-03-02 18:17 ` Jani Nikula
2026-03-06 7:25 ` Hogander, Jouni
2026-03-03 1:00 ` ✗ i915.CI.BAT: failure for drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Patchwork
` (2 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Jani Nikula @ 2026-03-02 18:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
Using fb for frontbuffer is a bit misleading, as framebuffer is the more
common fb. Reduce fb usage in frontbuffer function naming.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_frontbuffer.c | 12 ++++++------
drivers/gpu/drm/i915/display/intel_frontbuffer.h | 16 ++++++++--------
2 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.c b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
index 61ce82f85dad..705742e117ca 100644
--- a/drivers/gpu/drm/i915/display/intel_frontbuffer.c
+++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
@@ -123,9 +123,9 @@ void intel_frontbuffer_flip(struct intel_display *display,
frontbuffer_flush(display, frontbuffer_bits, ORIGIN_FLIP);
}
-void __intel_fb_invalidate(struct intel_frontbuffer *front,
- enum fb_op_origin origin,
- unsigned int frontbuffer_bits)
+void __intel_frontbuffer_invalidate(struct intel_frontbuffer *front,
+ enum fb_op_origin origin,
+ unsigned int frontbuffer_bits)
{
struct intel_display *display = front->display;
@@ -143,9 +143,9 @@ void __intel_fb_invalidate(struct intel_frontbuffer *front,
intel_fbc_invalidate(display, frontbuffer_bits, origin);
}
-void __intel_fb_flush(struct intel_frontbuffer *front,
- enum fb_op_origin origin,
- unsigned int frontbuffer_bits)
+void __intel_frontbuffer_flush(struct intel_frontbuffer *front,
+ enum fb_op_origin origin,
+ unsigned int frontbuffer_bits)
{
struct intel_display *display = front->display;
diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.h b/drivers/gpu/drm/i915/display/intel_frontbuffer.h
index c9a22b6ccfd6..a89ce352b12b 100644
--- a/drivers/gpu/drm/i915/display/intel_frontbuffer.h
+++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.h
@@ -66,9 +66,9 @@ struct intel_frontbuffer {
void intel_frontbuffer_flip(struct intel_display *display,
unsigned frontbuffer_bits);
-void __intel_fb_invalidate(struct intel_frontbuffer *front,
- enum fb_op_origin origin,
- unsigned int frontbuffer_bits);
+void __intel_frontbuffer_invalidate(struct intel_frontbuffer *front,
+ enum fb_op_origin origin,
+ unsigned int frontbuffer_bits);
/**
* intel_frontbuffer_invalidate - invalidate frontbuffer object
@@ -93,13 +93,13 @@ static inline bool intel_frontbuffer_invalidate(struct intel_frontbuffer *front,
if (!frontbuffer_bits)
return false;
- __intel_fb_invalidate(front, origin, frontbuffer_bits);
+ __intel_frontbuffer_invalidate(front, origin, frontbuffer_bits);
return true;
}
-void __intel_fb_flush(struct intel_frontbuffer *front,
- enum fb_op_origin origin,
- unsigned int frontbuffer_bits);
+void __intel_frontbuffer_flush(struct intel_frontbuffer *front,
+ enum fb_op_origin origin,
+ unsigned int frontbuffer_bits);
/**
* intel_frontbuffer_flush - flush frontbuffer object
@@ -121,7 +121,7 @@ static inline void intel_frontbuffer_flush(struct intel_frontbuffer *front,
if (!frontbuffer_bits)
return;
- __intel_fb_flush(front, origin, frontbuffer_bits);
+ __intel_frontbuffer_flush(front, origin, frontbuffer_bits);
}
void intel_frontbuffer_queue_flush(struct intel_frontbuffer *front);
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* ✗ i915.CI.BAT: failure for drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
` (6 preceding siblings ...)
2026-03-02 18:17 ` [PATCH 7/7] drm/i915/frontbuffer: reduce fb for frontbuffer abbreviation usage Jani Nikula
@ 2026-03-03 1:00 ` Patchwork
2026-03-10 19:06 ` ✓ i915.CI.BAT: success for drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface (rev2) Patchwork
2026-03-11 4:53 ` ✓ i915.CI.Full: " Patchwork
9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-03 1:00 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 8119 bytes --]
== Series Details ==
Series: drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface
URL : https://patchwork.freedesktop.org/series/162449/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18074 -> Patchwork_162449v1
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_162449v1 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_162449v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/index.html
Participating hosts (40 -> 40)
------------------------------
Additional (1): bat-adls-6
Missing (1): bat-dg2-13
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_162449v1:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_fence@basic-await:
- fi-skl-6600u: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18074/fi-skl-6600u/igt@gem_exec_fence@basic-await.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/fi-skl-6600u/igt@gem_exec_fence@basic-await.html
Known issues
------------
Here are the changes found in Patchwork_162449v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_create@basic@lmem0:
- bat-dg1-6: [PASS][3] -> [ABORT][4] ([i915#15759]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18074/bat-dg1-6/igt@gem_exec_create@basic@lmem0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-dg1-6/igt@gem_exec_create@basic@lmem0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][6] ([i915#15656])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_module_load@reload:
- bat-arls-6: [PASS][7] -> [DMESG-WARN][8] ([i915#15738]) +21 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18074/bat-arls-6/igt@i915_module_load@reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-arls-6/igt@i915_module_load@reload.html
* igt@i915_selftest@live:
- bat-dg2-8: NOTRUN -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_timelines:
- bat-arls-6: [PASS][10] -> [TIMEOUT][11] ([i915#15738]) +1 other test timeout
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18074/bat-arls-6/igt@i915_selftest@live@gt_timelines.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-arls-6/igt@i915_selftest@live@gt_timelines.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: NOTRUN -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18074/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#7707]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][16] ([i915#4103]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#3840])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][18]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][19] ([i915#5354])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][20] ([i915#1072] / [i915#9732]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][21] ([i915#3555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][22] ([i915#3291]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-dg2-9: [ABORT][23] ([i915#15759]) -> [PASS][24] +1 other test pass
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18074/bat-dg2-9/igt@gem_lmem_swapping@parallel-random-engines.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-dg2-9/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-engines@lmem0:
- bat-dg2-8: [ABORT][25] ([i915#15759]) -> [PASS][26] +1 other test pass
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18074/bat-dg2-8/igt@gem_lmem_swapping@parallel-random-engines@lmem0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/bat-dg2-8/igt@gem_lmem_swapping@parallel-random-engines@lmem0.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15738]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15738
[i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* Linux: CI_DRM_18074 -> Patchwork_162449v1
CI-20190529: 20190529
CI_DRM_18074: df73f8b4c9fc3c0a2668cf84f7e6ce887bc672bc @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8776: 8776
Patchwork_162449v1: df73f8b4c9fc3c0a2668cf84f7e6ce887bc672bc @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v1/index.html
[-- Attachment #2: Type: text/html, Size: 9644 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 1/7] drm/i915/gem: relocate __i915_gem_object_{flush, invalidate}_frontbuffer()
2026-03-02 18:17 ` [PATCH 1/7] drm/i915/gem: relocate __i915_gem_object_{flush, invalidate}_frontbuffer() Jani Nikula
@ 2026-03-04 14:20 ` Hogander, Jouni
2026-03-11 10:12 ` Jani Nikula
0 siblings, 1 reply; 19+ messages in thread
From: Hogander, Jouni @ 2026-03-04 14:20 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Nikula, Jani,
intel-gfx@lists.freedesktop.org
On Mon, 2026-03-02 at 20:17 +0200, Jani Nikula wrote:
> Move __i915_gem_object_{flush,invalidate}_frontbuffer() to
> i915_gem_object_frontbuffer.c. All the other i915 gem object
> frontbuffer
> functions are there already, and the relevant declarations are in
> i915_gem_object_frontbuffer.h too.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/gem/i915_gem_object.c | 24 -----------------
> --
> .../i915/gem/i915_gem_object_frontbuffer.c | 24
> +++++++++++++++++++
> 2 files changed, 24 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object.c
> b/drivers/gpu/drm/i915/gem/i915_gem_object.c
> index 798c920160cf..5172d3982654 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_object.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_object.c
> @@ -474,30 +474,6 @@ static void i915_gem_free_object(struct
> drm_gem_object *gem_obj)
> queue_work(i915->wq, &i915->mm.free_work);
> }
>
> -void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object
> *obj,
> - enum fb_op_origin origin)
> -{
> - struct i915_frontbuffer *front;
> -
> - front = i915_gem_object_frontbuffer_lookup(obj);
> - if (front) {
> - intel_frontbuffer_flush(&front->base, origin);
> - i915_gem_object_frontbuffer_put(front);
> - }
> -}
> -
> -void __i915_gem_object_invalidate_frontbuffer(struct
> drm_i915_gem_object *obj,
> - enum fb_op_origin
> origin)
> -{
> - struct i915_frontbuffer *front;
> -
> - front = i915_gem_object_frontbuffer_lookup(obj);
> - if (front) {
> - intel_frontbuffer_invalidate(&front->base, origin);
> - i915_gem_object_frontbuffer_put(front);
> - }
> -}
> -
> static void
> i915_gem_object_read_from_page_kmap(struct drm_i915_gem_object *obj,
> u64 offset, void *dst, int size)
> {
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> index adba3fa96c05..29076aefdfd8 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> @@ -101,3 +101,27 @@ void i915_gem_object_frontbuffer_put(struct
> i915_frontbuffer *front)
> kref_put_lock(&front->ref, frontbuffer_release,
> &i915->frontbuffer_lock);
> }
> +
> +void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object
> *obj,
> + enum fb_op_origin origin)
> +{
> + struct i915_frontbuffer *front;
> +
> + front = i915_gem_object_frontbuffer_lookup(obj);
> + if (front) {
> + intel_frontbuffer_flush(&front->base, origin);
> + i915_gem_object_frontbuffer_put(front);
> + }
> +}
> +
> +void __i915_gem_object_invalidate_frontbuffer(struct
> drm_i915_gem_object *obj,
> + enum fb_op_origin
> origin)
> +{
> + struct i915_frontbuffer *front;
> +
> + front = i915_gem_object_frontbuffer_lookup(obj);
> + if (front) {
> + intel_frontbuffer_invalidate(&front->base, origin);
> + i915_gem_object_frontbuffer_put(front);
> + }
> +}
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 2/7] drm/i915/gem: unify i915 gem object frontbuffer function names
2026-03-02 18:17 ` [PATCH 2/7] drm/i915/gem: unify i915 gem object frontbuffer function names Jani Nikula
@ 2026-03-05 6:41 ` Hogander, Jouni
0 siblings, 0 replies; 19+ messages in thread
From: Hogander, Jouni @ 2026-03-05 6:41 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Nikula, Jani,
intel-gfx@lists.freedesktop.org
On Mon, 2026-03-02 at 20:17 +0200, Jani Nikula wrote:
> Many of the i915 gem object frontbuffer function names follow the
> file
> name as prefix. Follow suit with the remaining functions, renaming
> them
> i915_gem_object_frontbuffer_*().
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/gem/i915_gem_clflush.c | 2 +-
> drivers/gpu/drm/i915/gem/i915_gem_domain.c | 6 +++---
> .../gpu/drm/i915/gem/i915_gem_object_frontbuffer.c | 4 ++--
> .../gpu/drm/i915/gem/i915_gem_object_frontbuffer.h | 12 ++++++----
> --
> drivers/gpu/drm/i915/gem/i915_gem_phys.c | 4 ++--
> drivers/gpu/drm/i915/i915_gem.c | 6 +++---
> 6 files changed, 17 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_clflush.c
> b/drivers/gpu/drm/i915/gem/i915_gem_clflush.c
> index 30cc08583cbd..7782ba44fabd 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_clflush.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_clflush.c
> @@ -22,7 +22,7 @@ static void __do_clflush(struct drm_i915_gem_object
> *obj)
> GEM_BUG_ON(!i915_gem_object_has_pages(obj));
> drm_clflush_sg(obj->mm.pages);
>
> - i915_gem_object_flush_frontbuffer(obj, ORIGIN_CPU);
> + i915_gem_object_frontbuffer_flush(obj, ORIGIN_CPU);
> }
>
> static void clflush_work(struct dma_fence_work *base)
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_domain.c
> b/drivers/gpu/drm/i915/gem/i915_gem_domain.c
> index ef3b14ae2e0d..df7502391b50 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_domain.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_domain.c
> @@ -68,7 +68,7 @@ flush_write_domain(struct drm_i915_gem_object *obj,
> unsigned int flush_domains)
> i915_vma_flush_writes(vma);
> spin_unlock(&obj->vma.lock);
>
> - i915_gem_object_flush_frontbuffer(obj, ORIGIN_CPU);
> + i915_gem_object_frontbuffer_flush(obj, ORIGIN_CPU);
> break;
>
> case I915_GEM_DOMAIN_WC:
> @@ -647,7 +647,7 @@ i915_gem_set_domain_ioctl(struct drm_device *dev,
> void *data,
> i915_gem_object_unlock(obj);
>
> if (!err && write_domain)
> - i915_gem_object_invalidate_frontbuffer(obj,
> ORIGIN_CPU);
> + i915_gem_object_frontbuffer_invalidate(obj,
> ORIGIN_CPU);
>
> out:
> i915_gem_object_put(obj);
> @@ -759,7 +759,7 @@ int i915_gem_object_prepare_write(struct
> drm_i915_gem_object *obj,
> }
>
> out:
> - i915_gem_object_invalidate_frontbuffer(obj, ORIGIN_CPU);
> + i915_gem_object_frontbuffer_invalidate(obj, ORIGIN_CPU);
> obj->mm.dirty = true;
> /* return with the pages pinned */
> return 0;
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> index 29076aefdfd8..cf0b66eaf11b 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> @@ -102,7 +102,7 @@ void i915_gem_object_frontbuffer_put(struct
> i915_frontbuffer *front)
> &i915->frontbuffer_lock);
> }
>
> -void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object
> *obj,
> +void __i915_gem_object_frontbuffer_flush(struct drm_i915_gem_object
> *obj,
> enum fb_op_origin origin)
> {
> struct i915_frontbuffer *front;
> @@ -114,7 +114,7 @@ void __i915_gem_object_flush_frontbuffer(struct
> drm_i915_gem_object *obj,
> }
> }
>
> -void __i915_gem_object_invalidate_frontbuffer(struct
> drm_i915_gem_object *obj,
> +void __i915_gem_object_frontbuffer_invalidate(struct
> drm_i915_gem_object *obj,
> enum fb_op_origin
> origin)
> {
> struct i915_frontbuffer *front;
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> index 2133e29047c5..1c250ce4ca66 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> @@ -20,25 +20,25 @@ struct i915_frontbuffer {
> struct kref ref;
> };
>
> -void __i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object
> *obj,
> +void __i915_gem_object_frontbuffer_flush(struct drm_i915_gem_object
> *obj,
> enum fb_op_origin origin);
> -void __i915_gem_object_invalidate_frontbuffer(struct
> drm_i915_gem_object *obj,
> +void __i915_gem_object_frontbuffer_invalidate(struct
> drm_i915_gem_object *obj,
> enum fb_op_origin
> origin);
>
> static inline void
> -i915_gem_object_flush_frontbuffer(struct drm_i915_gem_object *obj,
> +i915_gem_object_frontbuffer_flush(struct drm_i915_gem_object *obj,
> enum fb_op_origin origin)
> {
> if (unlikely(rcu_access_pointer(obj->frontbuffer)))
> - __i915_gem_object_flush_frontbuffer(obj, origin);
> + __i915_gem_object_frontbuffer_flush(obj, origin);
> }
>
> static inline void
> -i915_gem_object_invalidate_frontbuffer(struct drm_i915_gem_object
> *obj,
> +i915_gem_object_frontbuffer_invalidate(struct drm_i915_gem_object
> *obj,
> enum fb_op_origin origin)
> {
> if (unlikely(rcu_access_pointer(obj->frontbuffer)))
> - __i915_gem_object_invalidate_frontbuffer(obj,
> origin);
> + __i915_gem_object_frontbuffer_invalidate(obj,
> origin);
> }
>
> struct i915_frontbuffer *i915_gem_object_frontbuffer_get(struct
> drm_i915_gem_object *obj);
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_phys.c
> b/drivers/gpu/drm/i915/gem/i915_gem_phys.c
> index ce2780ef97ef..e375afbf458e 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_phys.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_phys.c
> @@ -155,7 +155,7 @@ int i915_gem_object_pwrite_phys(struct
> drm_i915_gem_object *obj,
> * We manually control the domain here and pretend that it
> * remains coherent i.e. in the GTT domain, like
> shmem_pwrite.
> */
> - i915_gem_object_invalidate_frontbuffer(obj, ORIGIN_CPU);
> + i915_gem_object_frontbuffer_invalidate(obj, ORIGIN_CPU);
>
> if (copy_from_user(vaddr, user_data, args->size))
> return -EFAULT;
> @@ -163,7 +163,7 @@ int i915_gem_object_pwrite_phys(struct
> drm_i915_gem_object *obj,
> drm_clflush_virt_range(vaddr, args->size);
> intel_gt_chipset_flush(to_gt(i915));
>
> - i915_gem_object_flush_frontbuffer(obj, ORIGIN_CPU);
> + i915_gem_object_frontbuffer_flush(obj, ORIGIN_CPU);
> return 0;
> }
>
> diff --git a/drivers/gpu/drm/i915/i915_gem.c
> b/drivers/gpu/drm/i915/i915_gem.c
> index 160733619a4a..761491750914 100644
> --- a/drivers/gpu/drm/i915/i915_gem.c
> +++ b/drivers/gpu/drm/i915/i915_gem.c
> @@ -579,7 +579,7 @@ i915_gem_gtt_pwrite_fast(struct
> drm_i915_gem_object *obj,
> goto out_rpm;
> }
>
> - i915_gem_object_invalidate_frontbuffer(obj, ORIGIN_CPU);
> + i915_gem_object_frontbuffer_invalidate(obj, ORIGIN_CPU);
>
> user_data = u64_to_user_ptr(args->data_ptr);
> offset = args->offset;
> @@ -626,7 +626,7 @@ i915_gem_gtt_pwrite_fast(struct
> drm_i915_gem_object *obj,
> }
>
> intel_gt_flush_ggtt_writes(ggtt->vm.gt);
> - i915_gem_object_flush_frontbuffer(obj, ORIGIN_CPU);
> + i915_gem_object_frontbuffer_flush(obj, ORIGIN_CPU);
>
> i915_gem_gtt_cleanup(obj, &node, vma);
> out_rpm:
> @@ -714,7 +714,7 @@ i915_gem_shmem_pwrite(struct drm_i915_gem_object
> *obj,
> offset = 0;
> }
>
> - i915_gem_object_flush_frontbuffer(obj, ORIGIN_CPU);
> + i915_gem_object_frontbuffer_flush(obj, ORIGIN_CPU);
>
> i915_gem_object_unpin_pages(obj);
> return ret;
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 3/7] drm/i915/overlay: convert from struct intel_frontbuffer to i915_frontbuffer
2026-03-02 18:17 ` [PATCH 3/7] drm/i915/overlay: convert from struct intel_frontbuffer to i915_frontbuffer Jani Nikula
@ 2026-03-05 7:07 ` Hogander, Jouni
0 siblings, 0 replies; 19+ messages in thread
From: Hogander, Jouni @ 2026-03-05 7:07 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Nikula, Jani,
intel-gfx@lists.freedesktop.org
On Mon, 2026-03-02 at 20:17 +0200, Jani Nikula wrote:
> The intel_frontbuffer_get() and intel_frontbuffer_put() calls are
> routed
> through intel_frontbuffer.c to i915_gem_object_frontbuffer.c. We
> might
> as well call the functions directly, instead of going through display
> code. This would only get worse with get/put being moved to the
> parent
> interface.
>
> To make this easier, convert overlay code from struct
> intel_frontbuffer
> to struct i915_frontbuffer, and add a
> i915_gem_object_frontbuffer_track() wrapper for clarity.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> .../gpu/drm/i915/gem/i915_gem_object_frontbuffer.h | 10 ++++++++++
> drivers/gpu/drm/i915/i915_overlay.c | 12 ++++++----
> --
> 2 files changed, 16 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> index 1c250ce4ca66..46124048a59f 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> @@ -45,6 +45,16 @@ struct i915_frontbuffer
> *i915_gem_object_frontbuffer_get(struct drm_i915_gem_obj
> void i915_gem_object_frontbuffer_ref(struct i915_frontbuffer
> *front);
> void i915_gem_object_frontbuffer_put(struct i915_frontbuffer
> *front);
>
> +static inline void i915_gem_object_frontbuffer_track(struct
> i915_frontbuffer *_old,
> + struct
> i915_frontbuffer *_new,
> + unsigned int
> frontbuffer_bits)
> +{
> + struct intel_frontbuffer *old = _old ? &_old->base : NULL;
> + struct intel_frontbuffer *new = _new ? &_new->base : NULL;
> +
> + intel_frontbuffer_track(old, new, frontbuffer_bits);
> +}
> +
> /**
> * i915_gem_object_frontbuffer_lookup - Look up the object's
> frontbuffer
> * @obj: The object whose frontbuffer to look up.
> diff --git a/drivers/gpu/drm/i915/i915_overlay.c
> b/drivers/gpu/drm/i915/i915_overlay.c
> index 28518dbb5b8e..f07a07b90b2a 100644
> --- a/drivers/gpu/drm/i915/i915_overlay.c
> +++ b/drivers/gpu/drm/i915/i915_overlay.c
> @@ -30,7 +30,7 @@ struct i915_overlay {
> struct intel_context *context;
> struct i915_vma *vma;
> struct i915_vma *old_vma;
> - struct intel_frontbuffer *frontbuffer;
> + struct i915_frontbuffer *frontbuffer;
> /* register access */
> struct drm_i915_gem_object *reg_bo;
> void __iomem *regs;
> @@ -138,18 +138,18 @@ static void i915_overlay_flip_prepare(struct
> i915_overlay *overlay,
> struct i915_vma *vma)
> {
> struct drm_i915_private *i915 = overlay->i915;
> - struct intel_frontbuffer *frontbuffer = NULL;
> + struct i915_frontbuffer *frontbuffer = NULL;
>
> drm_WARN_ON(&i915->drm, overlay->old_vma);
>
> if (vma)
> - frontbuffer =
> intel_frontbuffer_get(intel_bo_to_drm_bo(vma->obj));
> + frontbuffer = i915_gem_object_frontbuffer_get(vma-
> >obj);
>
> - intel_frontbuffer_track(overlay->frontbuffer, frontbuffer,
> - overlay->frontbuffer_bits);
> + i915_gem_object_frontbuffer_track(overlay->frontbuffer,
> frontbuffer,
> + overlay-
> >frontbuffer_bits);
>
> if (overlay->frontbuffer)
> - intel_frontbuffer_put(overlay->frontbuffer);
> + i915_gem_object_frontbuffer_put(overlay-
> >frontbuffer);
> overlay->frontbuffer = frontbuffer;
>
> overlay->old_vma = overlay->vma;
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 4/7] drm/intel: fix @dpt kernel-doc for parent interface
2026-03-02 18:17 ` [PATCH 4/7] drm/intel: fix @dpt kernel-doc for parent interface Jani Nikula
@ 2026-03-05 11:37 ` Hogander, Jouni
0 siblings, 0 replies; 19+ messages in thread
From: Hogander, Jouni @ 2026-03-05 11:37 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Nikula, Jani,
intel-gfx@lists.freedesktop.org
On Mon, 2026-03-02 at 20:17 +0200, Jani Nikula wrote:
> Fix the copy-paste fail.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> include/drm/intel/display_parent_interface.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/drm/intel/display_parent_interface.h
> b/include/drm/intel/display_parent_interface.h
> index b4b0f58ae3ee..b439e513c0c5 100644
> --- a/include/drm/intel/display_parent_interface.h
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -162,7 +162,7 @@ struct intel_display_stolen_interface {
> * check the optional pointers.
> */
> struct intel_display_parent_interface {
> - /** @dsb: DPT interface. Optional. */
> + /** @dpt: DPT interface. Optional. */
> const struct intel_display_dpt_interface *dpt;
>
> /** @dsb: DSB buffer interface */
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 5/7] drm/{i915, xe}/frontbuffer: move frontbuffer handling to parent interface
2026-03-02 18:17 ` [PATCH 5/7] drm/{i915, xe}/frontbuffer: move frontbuffer handling to " Jani Nikula
@ 2026-03-06 6:54 ` Hogander, Jouni
0 siblings, 0 replies; 19+ messages in thread
From: Hogander, Jouni @ 2026-03-06 6:54 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Nikula, Jani,
intel-gfx@lists.freedesktop.org
On Mon, 2026-03-02 at 20:17 +0200, Jani Nikula wrote:
> Move the get/put/ref/flush_for_display calls to the display parent
> interface.
>
> For i915, move the hooks next to the other i915 core frontbuffer code
> in
> i915_gem_object_frontbuffer.c. For xe, add new file xe_frontbuffer.c
> for
> the same.
>
> Note: The intel_frontbuffer_flush() calls from
> i915_gem_object_frontbuffer.c will partially route back to i915 core
> via
> the parent interface. This is less than stellar.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_bo.c | 36 ----------
> drivers/gpu/drm/i915/display/intel_bo.h | 5 --
> .../gpu/drm/i915/display/intel_frontbuffer.c | 12 ++--
> drivers/gpu/drm/i915/display/intel_parent.c | 21 ++++++
> drivers/gpu/drm/i915/display/intel_parent.h | 7 ++
> .../i915/gem/i915_gem_object_frontbuffer.c | 45 ++++++++++++
> .../i915/gem/i915_gem_object_frontbuffer.h | 2 +
> drivers/gpu/drm/i915/i915_driver.c | 2 +
> drivers/gpu/drm/xe/Makefile | 1 +
> drivers/gpu/drm/xe/display/intel_bo.c | 56 ---------------
> drivers/gpu/drm/xe/display/xe_display.c | 2 +
> drivers/gpu/drm/xe/display/xe_frontbuffer.c | 71
> +++++++++++++++++++
> drivers/gpu/drm/xe/display/xe_frontbuffer.h | 9 +++
> include/drm/intel/display_parent_interface.h | 11 +++
> 14 files changed, 178 insertions(+), 102 deletions(-)
> create mode 100644 drivers/gpu/drm/xe/display/xe_frontbuffer.c
> create mode 100644 drivers/gpu/drm/xe/display/xe_frontbuffer.h
>
> diff --git a/drivers/gpu/drm/i915/display/intel_bo.c
> b/drivers/gpu/drm/i915/display/intel_bo.c
> index 8f372b33d48b..2b6eaec351d8 100644
> --- a/drivers/gpu/drm/i915/display/intel_bo.c
> +++ b/drivers/gpu/drm/i915/display/intel_bo.c
> @@ -45,42 +45,6 @@ int intel_bo_read_from_page(struct drm_gem_object
> *obj, u64 offset, void *dst, i
> return i915_gem_object_read_from_page(to_intel_bo(obj),
> offset, dst, size);
> }
>
> -struct intel_frontbuffer *intel_bo_frontbuffer_get(struct
> drm_gem_object *_obj)
> -{
> - struct drm_i915_gem_object *obj = to_intel_bo(_obj);
> - struct i915_frontbuffer *front;
> -
> - front = i915_gem_object_frontbuffer_get(obj);
> - if (!front)
> - return NULL;
> -
> - return &front->base;
> -}
> -
> -void intel_bo_frontbuffer_ref(struct intel_frontbuffer *_front)
> -{
> - struct i915_frontbuffer *front =
> - container_of(_front, typeof(*front), base);
> -
> - i915_gem_object_frontbuffer_ref(front);
> -}
> -
> -void intel_bo_frontbuffer_put(struct intel_frontbuffer *_front)
> -{
> - struct i915_frontbuffer *front =
> - container_of(_front, typeof(*front), base);
> -
> - return i915_gem_object_frontbuffer_put(front);
> -}
> -
> -void intel_bo_frontbuffer_flush_for_display(struct intel_frontbuffer
> *_front)
> -{
> - struct i915_frontbuffer *front =
> - container_of(_front, typeof(*front), base);
> -
> - i915_gem_object_flush_if_display(front->obj);
> -}
> -
> void intel_bo_describe(struct seq_file *m, struct drm_gem_object
> *obj)
> {
> i915_debugfs_describe_obj(m, to_intel_bo(obj));
> diff --git a/drivers/gpu/drm/i915/display/intel_bo.h
> b/drivers/gpu/drm/i915/display/intel_bo.h
> index 516a3836a6bc..40390ed92ceb 100644
> --- a/drivers/gpu/drm/i915/display/intel_bo.h
> +++ b/drivers/gpu/drm/i915/display/intel_bo.h
> @@ -20,11 +20,6 @@ int intel_bo_key_check(struct drm_gem_object
> *obj);
> int intel_bo_fb_mmap(struct drm_gem_object *obj, struct
> vm_area_struct *vma);
> int intel_bo_read_from_page(struct drm_gem_object *obj, u64 offset,
> void *dst, int size);
>
> -struct intel_frontbuffer *intel_bo_frontbuffer_get(struct
> drm_gem_object *obj);
> -void intel_bo_frontbuffer_ref(struct intel_frontbuffer *front);
> -void intel_bo_frontbuffer_put(struct intel_frontbuffer *front);
> -void intel_bo_frontbuffer_flush_for_display(struct intel_frontbuffer
> *front);
> -
> void intel_bo_describe(struct seq_file *m, struct drm_gem_object
> *obj);
>
> #endif /* __INTEL_BO__ */
> diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> index 03c4978fa5ec..a355dc064528 100644
> --- a/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> +++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> @@ -58,13 +58,13 @@
> #include <drm/drm_gem.h>
> #include <drm/drm_print.h>
>
> -#include "intel_bo.h"
> #include "intel_display_trace.h"
> #include "intel_display_types.h"
> #include "intel_dp.h"
> #include "intel_drrs.h"
> #include "intel_fbc.h"
> #include "intel_frontbuffer.h"
> +#include "intel_parent.h"
> #include "intel_psr.h"
> #include "intel_tdf.h"
>
> @@ -150,7 +150,7 @@ void __intel_fb_flush(struct intel_frontbuffer
> *front,
> struct intel_display *display = front->display;
>
> if (origin == ORIGIN_DIRTYFB)
> - intel_bo_frontbuffer_flush_for_display(front);
> + intel_parent_frontbuffer_flush_for_display(display,
> front);
>
> if (origin == ORIGIN_CS) {
> spin_lock(&display->fb_tracking.lock);
> @@ -166,7 +166,7 @@ void __intel_fb_flush(struct intel_frontbuffer
> *front,
>
> static void intel_frontbuffer_ref(struct intel_frontbuffer *front)
> {
> - intel_bo_frontbuffer_ref(front);
> + intel_parent_frontbuffer_ref(front->display, front);
> }
>
> static void intel_frontbuffer_flush_work(struct work_struct *work)
> @@ -209,12 +209,14 @@ void intel_frontbuffer_fini(struct
> intel_frontbuffer *front)
>
> struct intel_frontbuffer *intel_frontbuffer_get(struct
> drm_gem_object *obj)
> {
> - return intel_bo_frontbuffer_get(obj);
> + struct intel_display *display = to_intel_display(obj->dev);
> +
> + return intel_parent_frontbuffer_get(display, obj);
> }
>
> void intel_frontbuffer_put(struct intel_frontbuffer *front)
> {
> - intel_bo_frontbuffer_put(front);
> + intel_parent_frontbuffer_put(front->display, front);
> }
>
> /**
> diff --git a/drivers/gpu/drm/i915/display/intel_parent.c
> b/drivers/gpu/drm/i915/display/intel_parent.c
> index 89f78ca1cd15..4142fe3eed7c 100644
> --- a/drivers/gpu/drm/i915/display/intel_parent.c
> +++ b/drivers/gpu/drm/i915/display/intel_parent.c
> @@ -51,6 +51,27 @@ void intel_parent_dpt_resume(struct intel_display
> *display, struct intel_dpt *dp
> display->parent->dpt->resume(dpt);
> }
>
> +/* frontbuffer */
> +struct intel_frontbuffer *intel_parent_frontbuffer_get(struct
> intel_display *display, struct drm_gem_object *obj)
> +{
> + return display->parent->frontbuffer->get(obj);
> +}
> +
> +void intel_parent_frontbuffer_ref(struct intel_display *display,
> struct intel_frontbuffer *front)
> +{
> + display->parent->frontbuffer->ref(front);
> +}
> +
> +void intel_parent_frontbuffer_put(struct intel_display *display,
> struct intel_frontbuffer *front)
> +{
> + display->parent->frontbuffer->put(front);
> +}
> +
> +void intel_parent_frontbuffer_flush_for_display(struct intel_display
> *display, struct intel_frontbuffer *front)
> +{
> + display->parent->frontbuffer->flush_for_display(front);
> +}
> +
> /* hdcp */
> ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display
> *display,
> struct intel_hdcp_gsc_context
> *gsc_context,
> diff --git a/drivers/gpu/drm/i915/display/intel_parent.h
> b/drivers/gpu/drm/i915/display/intel_parent.h
> index 2317482ef072..c1214d3329a8 100644
> --- a/drivers/gpu/drm/i915/display/intel_parent.h
> +++ b/drivers/gpu/drm/i915/display/intel_parent.h
> @@ -13,6 +13,7 @@ struct drm_scanout_buffer;
> struct i915_vma;
> struct intel_display;
> struct intel_dpt;
> +struct intel_frontbuffer;
> struct intel_hdcp_gsc_context;
> struct intel_panic;
> struct intel_stolen_node;
> @@ -24,6 +25,12 @@ void intel_parent_dpt_destroy(struct intel_display
> *display, struct intel_dpt *d
> void intel_parent_dpt_suspend(struct intel_display *display, struct
> intel_dpt *dpt);
> void intel_parent_dpt_resume(struct intel_display *display, struct
> intel_dpt *dpt);
>
> +/* frontbuffer */
> +struct intel_frontbuffer *intel_parent_frontbuffer_get(struct
> intel_display *display, struct drm_gem_object *obj);
> +void intel_parent_frontbuffer_ref(struct intel_display *display,
> struct intel_frontbuffer *front);
> +void intel_parent_frontbuffer_put(struct intel_display *display,
> struct intel_frontbuffer *front);
> +void intel_parent_frontbuffer_flush_for_display(struct intel_display
> *display, struct intel_frontbuffer *front);
> +
> /* hdcp */
> ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display
> *display,
> struct intel_hdcp_gsc_context
> *gsc_context,
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> index cf0b66eaf11b..f885c4fb1326 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.c
> @@ -1,6 +1,8 @@
> // SPDX-License-Identifier: MIT
> /* Copyright © 2025 Intel Corporation */
>
> +#include <drm/intel/display_parent_interface.h>
> +
> #include "i915_drv.h"
> #include "i915_gem_object_frontbuffer.h"
>
> @@ -125,3 +127,46 @@ void
> __i915_gem_object_frontbuffer_invalidate(struct drm_i915_gem_object
> *obj,
> i915_gem_object_frontbuffer_put(front);
> }
> }
> +
> +static struct intel_frontbuffer *i915_frontbuffer_get(struct
> drm_gem_object *_obj)
> +{
> + struct drm_i915_gem_object *obj = to_intel_bo(_obj);
> + struct i915_frontbuffer *front;
> +
> + front = i915_gem_object_frontbuffer_get(obj);
> + if (!front)
> + return NULL;
> +
> + return &front->base;
> +}
> +
> +static void i915_frontbuffer_ref(struct intel_frontbuffer *_front)
> +{
> + struct i915_frontbuffer *front =
> + container_of(_front, typeof(*front), base);
> +
> + i915_gem_object_frontbuffer_ref(front);
> +}
> +
> +static void i915_frontbuffer_put(struct intel_frontbuffer *_front)
> +{
> + struct i915_frontbuffer *front =
> + container_of(_front, typeof(*front), base);
> +
> + return i915_gem_object_frontbuffer_put(front);
> +}
> +
> +static void i915_frontbuffer_flush_for_display(struct
> intel_frontbuffer *_front)
> +{
> + struct i915_frontbuffer *front =
> + container_of(_front, typeof(*front), base);
> +
> + i915_gem_object_flush_if_display(front->obj);
> +}
> +
> +const struct intel_display_frontbuffer_interface
> i915_display_frontbuffer_interface = {
> + .get = i915_frontbuffer_get,
> + .ref = i915_frontbuffer_ref,
> + .put = i915_frontbuffer_put,
> + .flush_for_display = i915_frontbuffer_flush_for_display,
> +};
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> index 46124048a59f..9c6d91f21c19 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_object_frontbuffer.h
> @@ -91,4 +91,6 @@ i915_gem_object_frontbuffer_lookup(const struct
> drm_i915_gem_object *obj)
> return front;
> }
>
> +extern const struct intel_display_frontbuffer_interface
> i915_display_frontbuffer_interface;
> +
> #endif
> diff --git a/drivers/gpu/drm/i915/i915_driver.c
> b/drivers/gpu/drm/i915/i915_driver.c
> index 5f77e891604d..8c3a8bffc691 100644
> --- a/drivers/gpu/drm/i915/i915_driver.c
> +++ b/drivers/gpu/drm/i915/i915_driver.c
> @@ -78,6 +78,7 @@
> #include "gem/i915_gem_dmabuf.h"
> #include "gem/i915_gem_ioctls.h"
> #include "gem/i915_gem_mman.h"
> +#include "gem/i915_gem_object_frontbuffer.h"
> #include "gem/i915_gem_pm.h"
> #include "gt/intel_gt.h"
> #include "gt/intel_gt_pm.h"
> @@ -765,6 +766,7 @@ static bool vgpu_active(struct drm_device *drm)
> static const struct intel_display_parent_interface parent = {
> .dpt = &i915_display_dpt_interface,
> .dsb = &i915_display_dsb_interface,
> + .frontbuffer = &i915_display_frontbuffer_interface,
> .hdcp = &i915_display_hdcp_interface,
> .initial_plane = &i915_display_initial_plane_interface,
> .irq = &i915_display_irq_interface,
> diff --git a/drivers/gpu/drm/xe/Makefile
> b/drivers/gpu/drm/xe/Makefile
> index ff778fb2d4ff..9b3f8ad40d50 100644
> --- a/drivers/gpu/drm/xe/Makefile
> +++ b/drivers/gpu/drm/xe/Makefile
> @@ -219,6 +219,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
> display/xe_display_wa.o \
> display/xe_dsb_buffer.o \
> display/xe_fb_pin.o \
> + display/xe_frontbuffer.o \
> display/xe_hdcp_gsc.o \
> display/xe_initial_plane.o \
> display/xe_panic.o \
> diff --git a/drivers/gpu/drm/xe/display/intel_bo.c
> b/drivers/gpu/drm/xe/display/intel_bo.c
> index 05d5e5c0a0de..fa1f2c796b81 100644
> --- a/drivers/gpu/drm/xe/display/intel_bo.c
> +++ b/drivers/gpu/drm/xe/display/intel_bo.c
> @@ -47,62 +47,6 @@ int intel_bo_read_from_page(struct drm_gem_object
> *obj, u64 offset, void *dst, i
> return xe_bo_read(bo, offset, dst, size);
> }
>
> -struct xe_frontbuffer {
> - struct intel_frontbuffer base;
> - struct drm_gem_object *obj;
> - struct kref ref;
> -};
> -
> -struct intel_frontbuffer *intel_bo_frontbuffer_get(struct
> drm_gem_object *obj)
> -{
> - struct xe_frontbuffer *front;
> -
> - front = kmalloc_obj(*front);
> - if (!front)
> - return NULL;
> -
> - intel_frontbuffer_init(&front->base, obj->dev);
> -
> - kref_init(&front->ref);
> -
> - drm_gem_object_get(obj);
> - front->obj = obj;
> -
> - return &front->base;
> -}
> -
> -void intel_bo_frontbuffer_ref(struct intel_frontbuffer *_front)
> -{
> - struct xe_frontbuffer *front =
> - container_of(_front, typeof(*front), base);
> -
> - kref_get(&front->ref);
> -}
> -
> -static void frontbuffer_release(struct kref *ref)
> -{
> - struct xe_frontbuffer *front =
> - container_of(ref, typeof(*front), ref);
> -
> - intel_frontbuffer_fini(&front->base);
> -
> - drm_gem_object_put(front->obj);
> -
> - kfree(front);
> -}
> -
> -void intel_bo_frontbuffer_put(struct intel_frontbuffer *_front)
> -{
> - struct xe_frontbuffer *front =
> - container_of(_front, typeof(*front), base);
> -
> - kref_put(&front->ref, frontbuffer_release);
> -}
> -
> -void intel_bo_frontbuffer_flush_for_display(struct intel_frontbuffer
> *front)
> -{
> -}
> -
> void intel_bo_describe(struct seq_file *m, struct drm_gem_object
> *obj)
> {
> /* FIXME */
> diff --git a/drivers/gpu/drm/xe/display/xe_display.c
> b/drivers/gpu/drm/xe/display/xe_display.c
> index c8dd3faa9b97..f1e1889a52d3 100644
> --- a/drivers/gpu/drm/xe/display/xe_display.c
> +++ b/drivers/gpu/drm/xe/display/xe_display.c
> @@ -38,6 +38,7 @@
> #include "xe_display_pcode.h"
> #include "xe_display_rpm.h"
> #include "xe_dsb_buffer.h"
> +#include "xe_frontbuffer.h"
> #include "xe_hdcp_gsc.h"
> #include "xe_initial_plane.h"
> #include "xe_module.h"
> @@ -541,6 +542,7 @@ static const struct intel_display_irq_interface
> xe_display_irq_interface = {
>
> static const struct intel_display_parent_interface parent = {
> .dsb = &xe_display_dsb_interface,
> + .frontbuffer = &xe_display_frontbuffer_interface,
> .hdcp = &xe_display_hdcp_interface,
> .initial_plane = &xe_display_initial_plane_interface,
> .irq = &xe_display_irq_interface,
> diff --git a/drivers/gpu/drm/xe/display/xe_frontbuffer.c
> b/drivers/gpu/drm/xe/display/xe_frontbuffer.c
> new file mode 100644
> index 000000000000..113fc017ee94
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/display/xe_frontbuffer.c
> @@ -0,0 +1,71 @@
> +// SPDX-License-Identifier: MIT
> +/* Copyright © 2026 Intel Corporation */
> +
> +#include <drm/drm_gem.h>
> +#include <drm/intel/display_parent_interface.h>
> +
> +#include "intel_frontbuffer.h"
> +#include "xe_frontbuffer.h"
> +
> +struct xe_frontbuffer {
> + struct intel_frontbuffer base;
> + struct drm_gem_object *obj;
> + struct kref ref;
> +};
> +
> +static struct intel_frontbuffer *xe_frontbuffer_get(struct
> drm_gem_object *obj)
> +{
> + struct xe_frontbuffer *front;
> +
> + front = kmalloc_obj(*front);
> + if (!front)
> + return NULL;
> +
> + intel_frontbuffer_init(&front->base, obj->dev);
> +
> + kref_init(&front->ref);
> +
> + drm_gem_object_get(obj);
> + front->obj = obj;
> +
> + return &front->base;
> +}
> +
> +static void xe_frontbuffer_ref(struct intel_frontbuffer *_front)
> +{
> + struct xe_frontbuffer *front =
> + container_of(_front, typeof(*front), base);
> +
> + kref_get(&front->ref);
> +}
> +
> +static void frontbuffer_release(struct kref *ref)
> +{
> + struct xe_frontbuffer *front =
> + container_of(ref, typeof(*front), ref);
> +
> + intel_frontbuffer_fini(&front->base);
> +
> + drm_gem_object_put(front->obj);
> +
> + kfree(front);
> +}
> +
> +static void xe_frontbuffer_put(struct intel_frontbuffer *_front)
> +{
> + struct xe_frontbuffer *front =
> + container_of(_front, typeof(*front), base);
> +
> + kref_put(&front->ref, frontbuffer_release);
> +}
> +
> +static void xe_frontbuffer_flush_for_display(struct
> intel_frontbuffer *front)
> +{
> +}
> +
> +const struct intel_display_frontbuffer_interface
> xe_display_frontbuffer_interface = {
> + .get = xe_frontbuffer_get,
> + .ref = xe_frontbuffer_ref,
> + .put = xe_frontbuffer_put,
> + .flush_for_display = xe_frontbuffer_flush_for_display,
> +};
> diff --git a/drivers/gpu/drm/xe/display/xe_frontbuffer.h
> b/drivers/gpu/drm/xe/display/xe_frontbuffer.h
> new file mode 100644
> index 000000000000..6b4f59b42ade
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/display/xe_frontbuffer.h
> @@ -0,0 +1,9 @@
> +/* SPDX-License-Identifier: MIT */
> +/* Copyright © 2026 Intel Corporation */
> +
> +#ifndef _XE_FRONTBUFFER_H_
> +#define _XE_FRONTBUFFER_H_
> +
> +extern const struct intel_display_frontbuffer_interface
> xe_display_frontbuffer_interface;
> +
> +#endif
> diff --git a/include/drm/intel/display_parent_interface.h
> b/include/drm/intel/display_parent_interface.h
> index b439e513c0c5..5cdbce165b1f 100644
> --- a/include/drm/intel/display_parent_interface.h
> +++ b/include/drm/intel/display_parent_interface.h
> @@ -17,6 +17,7 @@ struct drm_scanout_buffer;
> struct i915_vma;
> struct intel_dpt;
> struct intel_dsb_buffer;
> +struct intel_frontbuffer;
> struct intel_hdcp_gsc_context;
> struct intel_initial_plane_config;
> struct intel_panic;
> @@ -42,6 +43,13 @@ struct intel_display_dsb_interface {
> void (*flush_map)(struct intel_dsb_buffer *dsb_buf);
> };
>
> +struct intel_display_frontbuffer_interface {
> + struct intel_frontbuffer *(*get)(struct drm_gem_object
> *obj);
> + void (*ref)(struct intel_frontbuffer *front);
> + void (*put)(struct intel_frontbuffer *front);
> + void (*flush_for_display)(struct intel_frontbuffer *front);
> +};
> +
> struct intel_display_hdcp_interface {
> ssize_t (*gsc_msg_send)(struct intel_hdcp_gsc_context
> *gsc_context,
> void *msg_in, size_t msg_in_len,
> @@ -168,6 +176,9 @@ struct intel_display_parent_interface {
> /** @dsb: DSB buffer interface */
> const struct intel_display_dsb_interface *dsb;
>
> + /** @frontbuffer: Frontbuffer interface */
> + const struct intel_display_frontbuffer_interface
> *frontbuffer;
> +
> /** @hdcp: HDCP GSC interface */
> const struct intel_display_hdcp_interface *hdcp;
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 6/7] drm/i915/frontbuffer: call parent interface directly
2026-03-02 18:17 ` [PATCH 6/7] drm/i915/frontbuffer: call parent interface directly Jani Nikula
@ 2026-03-06 7:05 ` Hogander, Jouni
0 siblings, 0 replies; 19+ messages in thread
From: Hogander, Jouni @ 2026-03-06 7:05 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Nikula, Jani,
intel-gfx@lists.freedesktop.org
On Mon, 2026-03-02 at 20:17 +0200, Jani Nikula wrote:
> Do away with the redundant intel_frontbuffer_get(),
> intel_frontbuffer_put(), and intel_frontbuffer_ref() functions, and
> call
> the parent interface functions directly.
You could have left these as they are with an idea that everything
related intel_frontbuffer goes via interfaces in intel_frontbuffer.h.
Now only these two are via parent interface. Patch is ok and I don't
have strong opinion on this:
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fb.c | 8 +++----
> .../gpu/drm/i915/display/intel_frontbuffer.c | 23 +++--------------
> --
> .../gpu/drm/i915/display/intel_frontbuffer.h | 5 ----
> 3 files changed, 7 insertions(+), 29 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fb.c
> b/drivers/gpu/drm/i915/display/intel_fb.c
> index 6be07d8a7e81..49c6ca9d94c6 100644
> --- a/drivers/gpu/drm/i915/display/intel_fb.c
> +++ b/drivers/gpu/drm/i915/display/intel_fb.c
> @@ -2113,7 +2113,7 @@ static void
> intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
>
> intel_fb_bo_framebuffer_fini(intel_fb_bo(fb));
>
> - intel_frontbuffer_put(intel_fb->frontbuffer);
> + intel_parent_frontbuffer_put(display, intel_fb-
> >frontbuffer);
>
> kfree(intel_fb->panic);
> kfree(intel_fb);
> @@ -2221,10 +2221,10 @@ int intel_framebuffer_init(struct
> intel_framebuffer *intel_fb,
> return -ENOMEM;
>
> /*
> - * intel_frontbuffer_get() must be done before
> + * intel_parent_frontbuffer_get() must be done before
> * intel_fb_bo_framebuffer_init() to avoid set_tiling vs.
> addfb race.
> */
> - intel_fb->frontbuffer = intel_frontbuffer_get(obj);
> + intel_fb->frontbuffer =
> intel_parent_frontbuffer_get(display, obj);
> if (!intel_fb->frontbuffer) {
> ret = -ENOMEM;
> goto err_free_panic;
> @@ -2335,7 +2335,7 @@ int intel_framebuffer_init(struct
> intel_framebuffer *intel_fb,
> err_bo_framebuffer_fini:
> intel_fb_bo_framebuffer_fini(obj);
> err_frontbuffer_put:
> - intel_frontbuffer_put(intel_fb->frontbuffer);
> + intel_parent_frontbuffer_put(display, intel_fb-
> >frontbuffer);
> err_free_panic:
> kfree(intel_fb->panic);
>
> diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> index a355dc064528..61ce82f85dad 100644
> --- a/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> +++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> @@ -164,18 +164,13 @@ void __intel_fb_flush(struct intel_frontbuffer
> *front,
> frontbuffer_flush(display, frontbuffer_bits,
> origin);
> }
>
> -static void intel_frontbuffer_ref(struct intel_frontbuffer *front)
> -{
> - intel_parent_frontbuffer_ref(front->display, front);
> -}
> -
> static void intel_frontbuffer_flush_work(struct work_struct *work)
> {
> struct intel_frontbuffer *front =
> container_of(work, struct intel_frontbuffer,
> flush_work);
>
> intel_frontbuffer_flush(front, ORIGIN_DIRTYFB);
> - intel_frontbuffer_put(front);
> + intel_parent_frontbuffer_put(front->display, front);
> }
>
> /**
> @@ -190,9 +185,9 @@ void intel_frontbuffer_queue_flush(struct
> intel_frontbuffer *front)
> if (!front)
> return;
>
> - intel_frontbuffer_ref(front);
> + intel_parent_frontbuffer_ref(front->display, front);
> if (!schedule_work(&front->flush_work))
> - intel_frontbuffer_put(front);
> + intel_parent_frontbuffer_put(front->display, front);
> }
>
> void intel_frontbuffer_init(struct intel_frontbuffer *front, struct
> drm_device *drm)
> @@ -207,18 +202,6 @@ void intel_frontbuffer_fini(struct
> intel_frontbuffer *front)
> drm_WARN_ON(front->display->drm, atomic_read(&front->bits));
> }
>
> -struct intel_frontbuffer *intel_frontbuffer_get(struct
> drm_gem_object *obj)
> -{
> - struct intel_display *display = to_intel_display(obj->dev);
> -
> - return intel_parent_frontbuffer_get(display, obj);
> -}
> -
> -void intel_frontbuffer_put(struct intel_frontbuffer *front)
> -{
> - intel_parent_frontbuffer_put(front->display, front);
> -}
> -
> /**
> * intel_frontbuffer_track - update frontbuffer tracking
> * @old: current buffer for the frontbuffer slots
> diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.h
> b/drivers/gpu/drm/i915/display/intel_frontbuffer.h
> index 22677acb4c06..c9a22b6ccfd6 100644
> --- a/drivers/gpu/drm/i915/display/intel_frontbuffer.h
> +++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.h
> @@ -66,11 +66,6 @@ struct intel_frontbuffer {
> void intel_frontbuffer_flip(struct intel_display *display,
> unsigned frontbuffer_bits);
>
> -void intel_frontbuffer_put(struct intel_frontbuffer *front);
> -
> -struct intel_frontbuffer *
> -intel_frontbuffer_get(struct drm_gem_object *obj);
> -
> void __intel_fb_invalidate(struct intel_frontbuffer *front,
> enum fb_op_origin origin,
> unsigned int frontbuffer_bits);
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 7/7] drm/i915/frontbuffer: reduce fb for frontbuffer abbreviation usage
2026-03-02 18:17 ` [PATCH 7/7] drm/i915/frontbuffer: reduce fb for frontbuffer abbreviation usage Jani Nikula
@ 2026-03-06 7:25 ` Hogander, Jouni
0 siblings, 0 replies; 19+ messages in thread
From: Hogander, Jouni @ 2026-03-06 7:25 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Nikula, Jani,
intel-gfx@lists.freedesktop.org
On Mon, 2026-03-02 at 20:17 +0200, Jani Nikula wrote:
> Using fb for frontbuffer is a bit misleading, as framebuffer is the
> more
> common fb. Reduce fb usage in frontbuffer function naming.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_frontbuffer.c | 12 ++++++------
> drivers/gpu/drm/i915/display/intel_frontbuffer.h | 16 ++++++++------
> --
> 2 files changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> index 61ce82f85dad..705742e117ca 100644
> --- a/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> +++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.c
> @@ -123,9 +123,9 @@ void intel_frontbuffer_flip(struct intel_display
> *display,
> frontbuffer_flush(display, frontbuffer_bits, ORIGIN_FLIP);
> }
>
> -void __intel_fb_invalidate(struct intel_frontbuffer *front,
> - enum fb_op_origin origin,
> - unsigned int frontbuffer_bits)
> +void __intel_frontbuffer_invalidate(struct intel_frontbuffer *front,
> + enum fb_op_origin origin,
> + unsigned int frontbuffer_bits)
> {
> struct intel_display *display = front->display;
>
> @@ -143,9 +143,9 @@ void __intel_fb_invalidate(struct
> intel_frontbuffer *front,
> intel_fbc_invalidate(display, frontbuffer_bits, origin);
> }
>
> -void __intel_fb_flush(struct intel_frontbuffer *front,
> - enum fb_op_origin origin,
> - unsigned int frontbuffer_bits)
> +void __intel_frontbuffer_flush(struct intel_frontbuffer *front,
> + enum fb_op_origin origin,
> + unsigned int frontbuffer_bits)
> {
> struct intel_display *display = front->display;
>
> diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.h
> b/drivers/gpu/drm/i915/display/intel_frontbuffer.h
> index c9a22b6ccfd6..a89ce352b12b 100644
> --- a/drivers/gpu/drm/i915/display/intel_frontbuffer.h
> +++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.h
> @@ -66,9 +66,9 @@ struct intel_frontbuffer {
> void intel_frontbuffer_flip(struct intel_display *display,
> unsigned frontbuffer_bits);
>
> -void __intel_fb_invalidate(struct intel_frontbuffer *front,
> - enum fb_op_origin origin,
> - unsigned int frontbuffer_bits);
> +void __intel_frontbuffer_invalidate(struct intel_frontbuffer *front,
> + enum fb_op_origin origin,
> + unsigned int frontbuffer_bits);
>
> /**
> * intel_frontbuffer_invalidate - invalidate frontbuffer object
> @@ -93,13 +93,13 @@ static inline bool
> intel_frontbuffer_invalidate(struct intel_frontbuffer *front,
> if (!frontbuffer_bits)
> return false;
>
> - __intel_fb_invalidate(front, origin, frontbuffer_bits);
> + __intel_frontbuffer_invalidate(front, origin,
> frontbuffer_bits);
> return true;
> }
>
> -void __intel_fb_flush(struct intel_frontbuffer *front,
> - enum fb_op_origin origin,
> - unsigned int frontbuffer_bits);
> +void __intel_frontbuffer_flush(struct intel_frontbuffer *front,
> + enum fb_op_origin origin,
> + unsigned int frontbuffer_bits);
>
> /**
> * intel_frontbuffer_flush - flush frontbuffer object
> @@ -121,7 +121,7 @@ static inline void intel_frontbuffer_flush(struct
> intel_frontbuffer *front,
> if (!frontbuffer_bits)
> return;
>
> - __intel_fb_flush(front, origin, frontbuffer_bits);
> + __intel_frontbuffer_flush(front, origin, frontbuffer_bits);
> }
>
> void intel_frontbuffer_queue_flush(struct intel_frontbuffer *front);
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ i915.CI.BAT: success for drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface (rev2)
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
` (7 preceding siblings ...)
2026-03-03 1:00 ` ✗ i915.CI.BAT: failure for drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Patchwork
@ 2026-03-10 19:06 ` Patchwork
2026-03-11 4:53 ` ✓ i915.CI.Full: " Patchwork
9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-10 19:06 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 6925 bytes --]
== Series Details ==
Series: drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface (rev2)
URL : https://patchwork.freedesktop.org/series/162449/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18121 -> Patchwork_162449v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/index.html
Participating hosts (41 -> 39)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_162449v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-mtlp-9: NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-mtlp-9: NOTRUN -> [SKIP][2] ([i915#4083])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-9: NOTRUN -> [SKIP][3] ([i915#4079])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-mtlp-9: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- bat-mtlp-9: NOTRUN -> [SKIP][5] ([i915#15657])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-9: NOTRUN -> [SKIP][6] ([i915#11681] / [i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@i915_pm_rps@basic-api.html
* igt@intel_hwmon@hwmon-read:
- bat-mtlp-9: NOTRUN -> [SKIP][7] ([i915#7707]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-9: NOTRUN -> [SKIP][8] ([i915#5190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-9: NOTRUN -> [SKIP][9] ([i915#4212]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-9: NOTRUN -> [SKIP][10] ([i915#4213]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-9: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840] / [i915#9159])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-9: NOTRUN -> [SKIP][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-mtlp-9: NOTRUN -> [SKIP][13] ([i915#4077] / [i915#9688]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-9: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#8809])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-gtt:
- bat-mtlp-9: NOTRUN -> [SKIP][15] ([i915#3708] / [i915#4077]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- bat-mtlp-9: NOTRUN -> [SKIP][16] ([i915#3708]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-mtlp-9: NOTRUN -> [SKIP][17] ([i915#10216] / [i915#3708])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_exec_store@basic:
- bat-mtlp-9: [INCOMPLETE][18] -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/bat-mtlp-9/igt@gem_exec_store@basic.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/bat-mtlp-9/igt@gem_exec_store@basic.html
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
Build changes
-------------
* Linux: CI_DRM_18121 -> Patchwork_162449v2
CI-20190529: 20190529
CI_DRM_18121: bf3ba6a508ffb59323357535a459eb64f02d94f7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8791: b319fd1815d426b3f24094113d614d08dee374d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_162449v2: bf3ba6a508ffb59323357535a459eb64f02d94f7 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/index.html
[-- Attachment #2: Type: text/html, Size: 8335 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ i915.CI.Full: success for drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface (rev2)
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
` (8 preceding siblings ...)
2026-03-10 19:06 ` ✓ i915.CI.BAT: success for drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface (rev2) Patchwork
@ 2026-03-11 4:53 ` Patchwork
9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-11 4:53 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 92462 bytes --]
== Series Details ==
Series: drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface (rev2)
URL : https://patchwork.freedesktop.org/series/162449/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18121_full -> Patchwork_162449v2_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in Patchwork_162449v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][1] ([i915#6230])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@api_intel_bb@crc32.html
* igt@drm_buddy@drm_buddy:
- shard-tglu: NOTRUN -> [SKIP][2] ([i915#15678])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@drm_buddy@drm_buddy.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#9323])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#7697])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#6335])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#6335])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8555])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#280])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#4525]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#4525])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@sliced:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#4812])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#3539] / [i915#4852])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#3281]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3281])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#7276])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#4860])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#2190])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#4613]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4613])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][20] ([i915#4613]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#4613])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#4613]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap@bad-size:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4083])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@gem_mmap@bad-size.html
* igt@gem_mmap_gtt@basic-write-gtt:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4077])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#3282]) +5 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-glk10: NOTRUN -> [WARN][26] ([i915#2658])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@gem_pread@exhaustion.html
* igt@gem_readwrite@new-obj:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3282])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8428])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#8411])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@access-control:
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#3297])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu: NOTRUN -> [SKIP][31] ([i915#3297]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#3297] / [i915#3323])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#3297]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3297])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3297])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen3_render_linear_blits:
- shard-mtlp: NOTRUN -> [SKIP][36] +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#2527] / [i915#2856]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#2527])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@gen9_exec_parse@bb-chained.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk10: NOTRUN -> [ABORT][39] ([i915#15342]) +1 other test abort
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@intel_gt_init-enodev:
- shard-glk10: NOTRUN -> [SKIP][40] +214 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@i915_module_load@fault-injection@intel_gt_init-enodev.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#6412])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#8399]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#6590]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#14498])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][45] ([i915#13356] / [i915#15172])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk8/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][46] -> [SKIP][47] ([i915#7984])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-mtlp-5/igt@i915_power@sanity.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-2/igt@i915_power@sanity.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk11: NOTRUN -> [INCOMPLETE][48] ([i915#4817])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk11/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][49] -> [INCOMPLETE][50] ([i915#4817])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#7707])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [PASS][52] -> [INCOMPLETE][53] ([i915#12761]) +1 other test incomplete
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-4/igt@kms_async_flips@async-flip-suspend-resume.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#9531])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [PASS][55] -> [FAIL][56] ([i915#5956]) +1 other test fail
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][57] ([i915#1769])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#5286]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#5286]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][60]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#5286]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3638]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3828]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#10307] / [i915#6095]) +16 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#14544] / [i915#6095]) +9 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#12313])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#6095]) +63 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#12313])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#6095]) +15 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#6095]) +49 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#6095]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#6095]) +39 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#14098] / [i915#6095]) +40 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4423] / [i915#6095])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#6095]) +198 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3742]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#11151] / [i915#7828]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-read.html
- shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#11151] / [i915#7828]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#11151] / [i915#7828]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#15330] / [i915#3116])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#15330] / [i915#3116] / [i915#3299])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#15330])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#6944] / [i915#9424])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#6944])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-5/igt@kms_content_protection@lic-type-0-hdcp14.html
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#6944])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#6944])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#6944] / [i915#7118] / [i915#9424])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-glk11: NOTRUN -> [SKIP][90] +63 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk11/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][91] ([i915#13566])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#3555]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][93] -> [FAIL][94] ([i915#13566]) +1 other test fail
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#3555]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][96] ([i915#13566]) +1 other test fail
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][97] -> [FAIL][98] ([i915#13566]) +1 other test fail
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#13049])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#4103])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4103] / [i915#4213])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][102] -> [FAIL][103] ([i915#15804])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#13691])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#3555] / [i915#3804])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#3804])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#13749])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#3555] / [i915#3840])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#3555] / [i915#3840])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#3469])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#1839])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#9337])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html
- shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#9337])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#3637] / [i915#9934]) +6 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][115] -> [INCOMPLETE][116] ([i915#12314]) +1 other test incomplete
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-snb1/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#9934]) +11 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#9934])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][119] ([i915#12745] / [i915#4839])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk11/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk11: NOTRUN -> [INCOMPLETE][120] ([i915#4839])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk11/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#3637] / [i915#9934]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#9934])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][123] ([i915#12745] / [i915#4839])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#12745] / [i915#4839] / [i915#6113])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][125] ([i915#12745])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk10: NOTRUN -> [INCOMPLETE][126] ([i915#12745])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#15643]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#15643]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][129] +34 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#1825]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg1: [PASS][131] -> [DMESG-WARN][132] ([i915#4423])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#8708])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][134] -> [INCOMPLETE][135] ([i915#10056])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-suspend.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#5439]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#15102]) +16 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#1825]) +32 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-glk: NOTRUN -> [SKIP][139] +66 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#15102]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#8708])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][142] +39 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#15102] / [i915#3458])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#15102]) +13 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#15102] / [i915#3023]) +18 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: [PASS][146] -> [SKIP][147] ([i915#3555] / [i915#8228])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#15459])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#15458]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#15458])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#6301])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#6301])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][153] +13 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#15709]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#15709]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#15608]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#15709]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk10: NOTRUN -> [FAIL][158] ([i915#12178])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][159] ([i915#7862]) +1 other test fail
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#13958]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#14259])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#15329]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#15329] / [i915#6953])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#15329]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3828]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#9685])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#9685])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#15739])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#15073]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][170] -> [SKIP][171] ([i915#15073])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [PASS][172] -> [SKIP][173] ([i915#14544] / [i915#15073])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg1: [PASS][174] -> [SKIP][175] ([i915#15073]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#15073])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#6524])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk11: NOTRUN -> [SKIP][178] ([i915#11520])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk11/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][179] ([i915#11520]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#11520]) +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#11520]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][182] ([i915#11520]) +4 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#11520]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#11520]) +7 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#9683])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#9732]) +15 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#1072] / [i915#9732]) +13 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr-sprite-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#9688]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@kms_psr@fbc-psr-sprite-blt@edp-1.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#9732]) +8 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#1072] / [i915#9732])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@kms_psr@psr-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#9685])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk11: NOTRUN -> [INCOMPLETE][192] ([i915#15492])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk11/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk10: NOTRUN -> [ABORT][193] ([i915#13179]) +1 other test abort
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#8623])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8808])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#15243] / [i915#3555])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@negative-basic:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#9906])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-7/igt@kms_vrr@negative-basic.html
* igt@perf@blocking@0-rcs0:
- shard-tglu: [PASS][198] -> [FAIL][199] ([i915#10538]) +1 other test fail
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-tglu-10/igt@perf@blocking@0-rcs0.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-tglu-10/igt@perf@blocking@0-rcs0.html
* igt@perf_pmu@module-unload:
- shard-glk10: NOTRUN -> [ABORT][200] ([i915#15778])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-glk10/igt@perf_pmu@module-unload.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#3708])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9917])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][203] ([i915#13356] / [i915#13820]) -> [PASS][204] +1 other test pass
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg1: [DMESG-WARN][205] ([i915#4423]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg1-17/igt@i915_pm_rpm@system-suspend-execbuf.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [INCOMPLETE][207] ([i915#4817]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-4/igt@i915_suspend@debugfs-reader.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-4/igt@i915_suspend@debugfs-reader.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][209] ([i915#15733] / [i915#5138]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [INCOMPLETE][211] ([i915#15582]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][213] ([i915#14033]) -> [PASS][214] +1 other test pass
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [INCOMPLETE][215] ([i915#6113]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_flip@flip-vs-suspend.html
- shard-snb: [DMESG-WARN][217] ([i915#13899]) -> [PASS][218] +1 other test pass
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-snb4/igt@kms_flip@flip-vs-suspend.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-snb1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-mtlp: [ABORT][219] ([i915#13562]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [SKIP][221] ([i915#3555] / [i915#8228]) -> [PASS][222] +1 other test pass
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-5/igt@kms_hdr@static-toggle.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-1/igt@kms_hdr@static-toggle.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [ABORT][223] ([i915#15132]) -> [PASS][224] +2 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][225] ([i915#15073]) -> [PASS][226] +1 other test pass
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@perf@blocking:
- shard-mtlp: [FAIL][227] ([i915#10538]) -> [PASS][228] +1 other test pass
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-mtlp-1/igt@perf@blocking.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-mtlp-5/igt@perf@blocking.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][229] ([i915#4349]) -> [PASS][230] +4 other tests pass
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: [SKIP][231] ([i915#7697]) -> [SKIP][232] ([i915#14544] / [i915#7697])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: [SKIP][233] ([i915#14544] / [i915#4525]) -> [SKIP][234] ([i915#4525])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][235] ([i915#6344]) -> [SKIP][236] ([i915#14544] / [i915#6344])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: [SKIP][237] ([i915#3281]) -> [SKIP][238] ([i915#14544] / [i915#3281])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: [SKIP][239] ([i915#14544] / [i915#3281]) -> [SKIP][240] ([i915#3281]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: [SKIP][241] ([i915#4613]) -> [SKIP][242] ([i915#14544] / [i915#4613])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@gem_lmem_swapping@verify.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@gem_lmem_swapping@verify.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: [SKIP][243] ([i915#3282]) -> [SKIP][244] ([i915#14544] / [i915#3282]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: [SKIP][245] ([i915#3297]) -> [SKIP][246] ([i915#14544] / [i915#3297])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: [SKIP][247] ([i915#2527]) -> [SKIP][248] ([i915#14544] / [i915#2527]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: [SKIP][249] ([i915#14544] / [i915#2527]) -> [SKIP][250] ([i915#2527]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][251] ([i915#8399]) -> [SKIP][252] ([i915#14544] / [i915#8399])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: [SKIP][253] ([i915#14544] / [i915#6590]) -> [SKIP][254] ([i915#6590]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][255] ([i915#5286]) -> [SKIP][256] ([i915#14544] / [i915#5286])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][257] ([i915#14544] / [i915#3638]) -> [SKIP][258] ([i915#3638])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][259] ([i915#3638]) -> [SKIP][260] ([i915#14544] / [i915#3638]) +2 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][261] ([i915#14544]) -> [SKIP][262] +4 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
- shard-dg1: [SKIP][263] ([i915#4423] / [i915#6095]) -> [SKIP][264] ([i915#6095])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg1-12/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg1-18/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][265] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][266] ([i915#14098] / [i915#6095]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][267] ([i915#14098] / [i915#6095]) -> [SKIP][268] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][269] ([i915#12313] / [i915#14544]) -> [SKIP][270] ([i915#12313])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][271] ([i915#12805]) -> [SKIP][272] ([i915#12805] / [i915#14544])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][273] ([i915#12313]) -> [SKIP][274] ([i915#12313] / [i915#14544])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-rkl: [SKIP][275] ([i915#11151] / [i915#7828]) -> [SKIP][276] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: [SKIP][277] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][278] ([i915#11151] / [i915#7828]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][279] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][280] ([i915#15330] / [i915#3116])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-rkl: [SKIP][281] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][282] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_content_protection@uevent.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][283] ([i915#3555]) -> [SKIP][284] ([i915#14544] / [i915#3555])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-rkl: [SKIP][285] ([i915#14544] / [i915#3555]) -> [SKIP][286] ([i915#3555])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][287] -> [SKIP][288] ([i915#14544]) +7 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][289] ([i915#14544] / [i915#4103]) -> [SKIP][290] ([i915#4103])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: [SKIP][291] ([i915#4103]) -> [SKIP][292] ([i915#14544] / [i915#4103])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][293] ([i915#13691] / [i915#14544]) -> [SKIP][294] ([i915#13691])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: [SKIP][295] ([i915#3840] / [i915#9053]) -> [SKIP][296] ([i915#14544] / [i915#3840] / [i915#9053])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][297] ([i915#3955]) -> [SKIP][298] ([i915#14544] / [i915#3955])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: [SKIP][299] ([i915#14544] / [i915#4854]) -> [SKIP][300] ([i915#4854])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: [SKIP][301] ([i915#9934]) -> [SKIP][302] ([i915#14544] / [i915#9934]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-dg1: [SKIP][303] ([i915#4423] / [i915#9934]) -> [SKIP][304] ([i915#9934])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: [SKIP][305] ([i915#14544] / [i915#9934]) -> [SKIP][306] ([i915#9934])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: [SKIP][307] ([i915#15643]) -> [SKIP][308] ([i915#14544] / [i915#15643]) +2 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][309] ([i915#1825]) -> [SKIP][310] ([i915#14544] / [i915#1825]) +8 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][311] ([i915#14544] / [i915#15102]) -> [SKIP][312] ([i915#15102]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][313] ([i915#15102] / [i915#3023]) -> [SKIP][314] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][315] ([i915#14544] / [i915#1825]) -> [SKIP][316] ([i915#1825]) +7 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][317] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][318] ([i915#15102] / [i915#3458])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: [SKIP][319] ([i915#9766]) -> [SKIP][320] ([i915#14544] / [i915#9766])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render:
- shard-rkl: [SKIP][321] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][322] ([i915#15102] / [i915#3023]) +3 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][323] ([i915#12713]) -> [SKIP][324] ([i915#1187] / [i915#12713])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][325] ([i915#13688]) -> [SKIP][326] ([i915#13688] / [i915#14544])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_joiner@basic-max-non-joiner.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][327] ([i915#15709]) -> [SKIP][328] ([i915#14544] / [i915#15709]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-rkl: [SKIP][329] ([i915#14544] / [i915#15709]) -> [SKIP][330] ([i915#15709])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: [SKIP][331] ([i915#15329]) -> [SKIP][332] ([i915#14544] / [i915#15329]) +3 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_backlight@fade:
- shard-rkl: [SKIP][333] ([i915#5354]) -> [SKIP][334] ([i915#14544] / [i915#5354])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_pm_backlight@fade.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_pm_backlight@fade.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: [SKIP][335] ([i915#14544] / [i915#6524]) -> [SKIP][336] ([i915#6524])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][337] ([i915#11520] / [i915#14544]) -> [SKIP][338] ([i915#11520])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][339] ([i915#11520]) -> [SKIP][340] ([i915#11520] / [i915#14544]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][341] ([i915#14544] / [i915#9683]) -> [SKIP][342] ([i915#9683])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-mmap-cpu:
- shard-rkl: [SKIP][343] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][344] ([i915#1072] / [i915#9732]) +5 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_psr@fbc-pr-primary-mmap-cpu.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-8/igt@kms_psr@fbc-pr-primary-mmap-cpu.html
* igt@kms_psr@psr2-cursor-blt:
- shard-rkl: [SKIP][345] ([i915#1072] / [i915#9732]) -> [SKIP][346] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_psr@psr2-cursor-blt.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][347] ([i915#5289]) -> [SKIP][348] ([i915#14544] / [i915#5289])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: [SKIP][349] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][350] ([i915#15243] / [i915#3555])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@kms_vrr@flip-dpms.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@kms_vrr@flip-dpms.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: [SKIP][351] ([i915#3708]) -> [SKIP][352] ([i915#14544] / [i915#3708])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: [SKIP][353] ([i915#14544] / [i915#9917]) -> [SKIP][354] ([i915#9917])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18121/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13899]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_18121 -> Patchwork_162449v2
CI-20190529: 20190529
CI_DRM_18121: bf3ba6a508ffb59323357535a459eb64f02d94f7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8791: b319fd1815d426b3f24094113d614d08dee374d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_162449v2: bf3ba6a508ffb59323357535a459eb64f02d94f7 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_162449v2/index.html
[-- Attachment #2: Type: text/html, Size: 122123 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 1/7] drm/i915/gem: relocate __i915_gem_object_{flush, invalidate}_frontbuffer()
2026-03-04 14:20 ` Hogander, Jouni
@ 2026-03-11 10:12 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2026-03-11 10:12 UTC (permalink / raw)
To: Hogander, Jouni, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
On Wed, 04 Mar 2026, "Hogander, Jouni" <jouni.hogander@intel.com> wrote:
> On Mon, 2026-03-02 at 20:17 +0200, Jani Nikula wrote:
>> Move __i915_gem_object_{flush,invalidate}_frontbuffer() to
>> i915_gem_object_frontbuffer.c. All the other i915 gem object
>> frontbuffer
>> functions are there already, and the relevant declarations are in
>> i915_gem_object_frontbuffer.h too.
>>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>
> Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
Thanks for the reviews, pushed to drm-intel-next.
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2026-03-11 10:12 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-02 18:17 [PATCH 0/7] drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Jani Nikula
2026-03-02 18:17 ` [PATCH 1/7] drm/i915/gem: relocate __i915_gem_object_{flush, invalidate}_frontbuffer() Jani Nikula
2026-03-04 14:20 ` Hogander, Jouni
2026-03-11 10:12 ` Jani Nikula
2026-03-02 18:17 ` [PATCH 2/7] drm/i915/gem: unify i915 gem object frontbuffer function names Jani Nikula
2026-03-05 6:41 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 3/7] drm/i915/overlay: convert from struct intel_frontbuffer to i915_frontbuffer Jani Nikula
2026-03-05 7:07 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 4/7] drm/intel: fix @dpt kernel-doc for parent interface Jani Nikula
2026-03-05 11:37 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 5/7] drm/{i915, xe}/frontbuffer: move frontbuffer handling to " Jani Nikula
2026-03-06 6:54 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 6/7] drm/i915/frontbuffer: call parent interface directly Jani Nikula
2026-03-06 7:05 ` Hogander, Jouni
2026-03-02 18:17 ` [PATCH 7/7] drm/i915/frontbuffer: reduce fb for frontbuffer abbreviation usage Jani Nikula
2026-03-06 7:25 ` Hogander, Jouni
2026-03-03 1:00 ` ✗ i915.CI.BAT: failure for drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface Patchwork
2026-03-10 19:06 ` ✓ i915.CI.BAT: success for drm/{i915, xe}/frontbuffer: refactor, move calls to parent interface (rev2) Patchwork
2026-03-11 4:53 ` ✓ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox