* [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces
@ 2025-09-24 16:43 Jani Nikula
2025-09-24 16:43 ` [PATCH 01/11] drm/{i915, xe}/stolen: rename i915_stolen_fb to intel_stolen_node Jani Nikula
` (16 more replies)
0 siblings, 17 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
Jani Nikula (11):
drm/{i915,xe}/stolen: rename i915_stolen_fb to intel_stolen_node
drm/xe/stolen: rename fb to node in stolen compat header
drm/xe/stolen: convert compat stolen macros to inline functions
drm/xe/stolen: switch from BUG_ON() to WARN_ON() in compat
drm/i915/stolen: convert intel_stolen_node into a real struct of its
own
drm/xe/stolen: convert compat static inlines to proper functions
drm/{i915,xe}/stolen: make struct intel_stolen_node opaque
drm/{i915,xe}/stolen: add device pointer to struct intel_stolen_node
drm/{i915,xe}/stolen: use the stored i915/xe device pointer
drm/{i915,xe}/stolen: convert stolen interface to struct drm_device
drm/xe/stolen: use the same types as i915 interface
drivers/gpu/drm/i915/display/intel_fbc.c | 76 ++++++-----
drivers/gpu/drm/i915/gem/i915_gem_stolen.c | 104 +++++++++++----
drivers/gpu/drm/i915/gem/i915_gem_stolen.h | 34 +++--
drivers/gpu/drm/xe/Makefile | 1 +
.../compat-i915-headers/gem/i915_gem_stolen.h | 105 +++++----------
drivers/gpu/drm/xe/display/xe_stolen.c | 123 ++++++++++++++++++
6 files changed, 290 insertions(+), 153 deletions(-)
create mode 100644 drivers/gpu/drm/xe/display/xe_stolen.c
--
2.47.3
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH 01/11] drm/{i915, xe}/stolen: rename i915_stolen_fb to intel_stolen_node
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 16:43 ` [PATCH 02/11] drm/xe/stolen: rename fb to node in stolen compat header Jani Nikula
` (15 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
Use a more generic name than one that refers to "i915" and "fb".
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 2 +-
drivers/gpu/drm/i915/gem/i915_gem_stolen.h | 2 +-
| 10 +++++-----
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 0d380c825791..6a7357fa89db 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -102,7 +102,7 @@ struct intel_fbc {
struct mutex lock;
unsigned int busy_bits;
- struct i915_stolen_fb compressed_fb, compressed_llb;
+ struct intel_stolen_node compressed_fb, compressed_llb;
enum intel_fbc_id id;
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
index dfe0db8bb1b9..c2f9c994e0ae 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
@@ -12,7 +12,7 @@ struct drm_i915_private;
struct drm_mm_node;
struct drm_i915_gem_object;
-#define i915_stolen_fb drm_mm_node
+#define intel_stolen_node drm_mm_node
int i915_gem_stolen_insert_node(struct drm_i915_private *i915,
struct drm_mm_node *node, u64 size,
--git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
index f097fc6d5127..62389b290907 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
@@ -12,12 +12,12 @@
struct xe_bo;
-struct i915_stolen_fb {
+struct intel_stolen_node {
struct xe_bo *bo;
};
static inline int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
- struct i915_stolen_fb *fb,
+ struct intel_stolen_node *fb,
u32 size, u32 align,
u32 start, u32 end)
{
@@ -47,7 +47,7 @@ static inline int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
}
static inline int i915_gem_stolen_insert_node(struct xe_device *xe,
- struct i915_stolen_fb *fb,
+ struct intel_stolen_node *fb,
u32 size, u32 align)
{
/* Not used on xe */
@@ -56,7 +56,7 @@ static inline int i915_gem_stolen_insert_node(struct xe_device *xe,
}
static inline void i915_gem_stolen_remove_node(struct xe_device *xe,
- struct i915_stolen_fb *fb)
+ struct intel_stolen_node *fb)
{
xe_bo_unpin_map_no_vm(fb->bo);
fb->bo = NULL;
@@ -65,7 +65,7 @@ static inline void i915_gem_stolen_remove_node(struct xe_device *xe,
#define i915_gem_stolen_initialized(xe) (!!ttm_manager_type(&(xe)->ttm, XE_PL_STOLEN))
#define i915_gem_stolen_node_allocated(fb) (!!((fb)->bo))
-static inline u32 i915_gem_stolen_node_offset(struct i915_stolen_fb *fb)
+static inline u32 i915_gem_stolen_node_offset(struct intel_stolen_node *fb)
{
struct xe_res_cursor res;
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 02/11] drm/xe/stolen: rename fb to node in stolen compat header
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
2025-09-24 16:43 ` [PATCH 01/11] drm/{i915, xe}/stolen: rename i915_stolen_fb to intel_stolen_node Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 16:43 ` [PATCH 03/11] drm/xe/stolen: convert compat stolen macros to inline functions Jani Nikula
` (14 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
It's more about node than fb, and this makes more sense now that the
struct is also named intel_stolen_node.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
| 24 +++++++++----------
1 file changed, 12 insertions(+), 12 deletions(-)
--git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
index 62389b290907..b45575b15322 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
@@ -17,7 +17,7 @@ struct intel_stolen_node {
};
static inline int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
- struct intel_stolen_node *fb,
+ struct intel_stolen_node *node,
u32 size, u32 align,
u32 start, u32 end)
{
@@ -41,13 +41,13 @@ static inline int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
return err;
}
- fb->bo = bo;
+ node->bo = bo;
return err;
}
static inline int i915_gem_stolen_insert_node(struct xe_device *xe,
- struct intel_stolen_node *fb,
+ struct intel_stolen_node *node,
u32 size, u32 align)
{
/* Not used on xe */
@@ -56,20 +56,20 @@ static inline int i915_gem_stolen_insert_node(struct xe_device *xe,
}
static inline void i915_gem_stolen_remove_node(struct xe_device *xe,
- struct intel_stolen_node *fb)
+ struct intel_stolen_node *node)
{
- xe_bo_unpin_map_no_vm(fb->bo);
- fb->bo = NULL;
+ xe_bo_unpin_map_no_vm(node->bo);
+ node->bo = NULL;
}
#define i915_gem_stolen_initialized(xe) (!!ttm_manager_type(&(xe)->ttm, XE_PL_STOLEN))
-#define i915_gem_stolen_node_allocated(fb) (!!((fb)->bo))
+#define i915_gem_stolen_node_allocated(node) (!!((node)->bo))
-static inline u32 i915_gem_stolen_node_offset(struct intel_stolen_node *fb)
+static inline u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node)
{
struct xe_res_cursor res;
- xe_res_first(fb->bo->ttm.resource, 0, 4096, &res);
+ xe_res_first(node->bo->ttm.resource, 0, 4096, &res);
return res.start;
}
@@ -78,8 +78,8 @@ static inline u32 i915_gem_stolen_node_offset(struct intel_stolen_node *fb)
/* Used for gen9 specific WA. Gen9 is not supported by Xe */
#define i915_gem_stolen_area_size(xe) (!WARN_ON(1))
-#define i915_gem_stolen_node_address(xe, fb) (xe_ttm_stolen_gpu_offset(xe) + \
- i915_gem_stolen_node_offset(fb))
-#define i915_gem_stolen_node_size(fb) ((u64)((fb)->bo->ttm.base.size))
+#define i915_gem_stolen_node_address(xe, node) (xe_ttm_stolen_gpu_offset(xe) + \
+ i915_gem_stolen_node_offset(node))
+#define i915_gem_stolen_node_size(node) ((u64)((node)->bo->ttm.base.size))
#endif
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 03/11] drm/xe/stolen: convert compat stolen macros to inline functions
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
2025-09-24 16:43 ` [PATCH 01/11] drm/{i915, xe}/stolen: rename i915_stolen_fb to intel_stolen_node Jani Nikula
2025-09-24 16:43 ` [PATCH 02/11] drm/xe/stolen: rename fb to node in stolen compat header Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 16:43 ` [PATCH 04/11] drm/xe/stolen: switch from BUG_ON() to WARN_ON() in compat Jani Nikula
` (13 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
Improve type safety. Allows getting rid of a __maybe_unused annotation
too.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 2 +-
| 39 +++++++++++++++----
2 files changed, 33 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 6a7357fa89db..cc67de6c06cf 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -797,7 +797,7 @@ static u64 intel_fbc_cfb_base_max(struct intel_display *display)
static u64 intel_fbc_stolen_end(struct intel_display *display)
{
- struct drm_i915_private __maybe_unused *i915 = to_i915(display->drm);
+ struct drm_i915_private *i915 = to_i915(display->drm);
u64 end;
/* The FBC hardware for BDW/SKL doesn't have access to the stolen
--git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
index b45575b15322..2c77457837e4 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
@@ -62,8 +62,15 @@ static inline void i915_gem_stolen_remove_node(struct xe_device *xe,
node->bo = NULL;
}
-#define i915_gem_stolen_initialized(xe) (!!ttm_manager_type(&(xe)->ttm, XE_PL_STOLEN))
-#define i915_gem_stolen_node_allocated(node) (!!((node)->bo))
+static inline bool i915_gem_stolen_initialized(struct xe_device *xe)
+{
+ return ttm_manager_type(&xe->ttm, XE_PL_STOLEN);
+}
+
+static inline bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node)
+{
+ return node->bo;
+}
static inline u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node)
{
@@ -74,12 +81,30 @@ static inline u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node)
}
/* Used for < gen4. These are not supported by Xe */
-#define i915_gem_stolen_area_address(xe) (!WARN_ON(1))
+static inline u64 i915_gem_stolen_area_address(const struct xe_device *xe)
+{
+ WARN_ON(1);
+
+ return 0;
+}
+
/* Used for gen9 specific WA. Gen9 is not supported by Xe */
-#define i915_gem_stolen_area_size(xe) (!WARN_ON(1))
+static inline u64 i915_gem_stolen_area_size(const struct xe_device *xe)
+{
+ WARN_ON(1);
+
+ return 0;
+}
-#define i915_gem_stolen_node_address(xe, node) (xe_ttm_stolen_gpu_offset(xe) + \
- i915_gem_stolen_node_offset(node))
-#define i915_gem_stolen_node_size(node) ((u64)((node)->bo->ttm.base.size))
+static inline u64 i915_gem_stolen_node_address(struct xe_device *xe,
+ struct intel_stolen_node *node)
+{
+ return xe_ttm_stolen_gpu_offset(xe) + i915_gem_stolen_node_offset(node);
+}
+
+static inline u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node)
+{
+ return node->bo->ttm.base.size;
+}
#endif
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 04/11] drm/xe/stolen: switch from BUG_ON() to WARN_ON() in compat
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (2 preceding siblings ...)
2025-09-24 16:43 ` [PATCH 03/11] drm/xe/stolen: convert compat stolen macros to inline functions Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 16:43 ` [PATCH 05/11] drm/i915/stolen: convert intel_stolen_node into a real struct of its own Jani Nikula
` (12 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
We're pretty much never supposed to be using BUG_ON(). Switch to
WARN_ON().
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
| 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
index 2c77457837e4..be249f51231d 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
@@ -51,7 +51,8 @@ static inline int i915_gem_stolen_insert_node(struct xe_device *xe,
u32 size, u32 align)
{
/* Not used on xe */
- BUG_ON(1);
+ WARN_ON(1);
+
return -ENODEV;
}
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 05/11] drm/i915/stolen: convert intel_stolen_node into a real struct of its own
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (3 preceding siblings ...)
2025-09-24 16:43 ` [PATCH 04/11] drm/xe/stolen: switch from BUG_ON() to WARN_ON() in compat Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 16:43 ` [PATCH 06/11] drm/xe/stolen: convert compat static inlines to proper functions Jani Nikula
` (11 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
i915_gem_stolen.h simply defines intel_stolen_node as drm_mm_node. Make
struct intel_stolen_node an actual struct of its own right, and embed
struct drm_mm_node inside. This allow better unification between i915
and xe.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/gem/i915_gem_stolen.c | 66 ++++++++++++++--------
drivers/gpu/drm/i915/gem/i915_gem_stolen.h | 22 ++++----
2 files changed, 56 insertions(+), 32 deletions(-)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
index 3380151edfc1..70ee34303e36 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
@@ -36,9 +36,9 @@
* for is a boon.
*/
-int i915_gem_stolen_insert_node_in_range(struct drm_i915_private *i915,
- struct drm_mm_node *node, u64 size,
- unsigned alignment, u64 start, u64 end)
+static int __i915_gem_stolen_insert_node_in_range(struct drm_i915_private *i915,
+ struct drm_mm_node *node, u64 size,
+ unsigned int alignment, u64 start, u64 end)
{
int ret;
@@ -58,24 +58,46 @@ int i915_gem_stolen_insert_node_in_range(struct drm_i915_private *i915,
return ret;
}
+int i915_gem_stolen_insert_node_in_range(struct drm_i915_private *i915,
+ struct intel_stolen_node *node, u64 size,
+ unsigned int alignment, u64 start, u64 end)
+{
+ return __i915_gem_stolen_insert_node_in_range(i915, &node->node,
+ size, alignment,
+ start, end);
+}
+
+static int __i915_gem_stolen_insert_node(struct drm_i915_private *i915,
+ struct drm_mm_node *node, u64 size,
+ unsigned int alignment)
+{
+ return __i915_gem_stolen_insert_node_in_range(i915, node,
+ size, alignment,
+ I915_GEM_STOLEN_BIAS,
+ U64_MAX);
+}
+
int i915_gem_stolen_insert_node(struct drm_i915_private *i915,
- struct drm_mm_node *node, u64 size,
- unsigned alignment)
+ struct intel_stolen_node *node, u64 size,
+ unsigned int alignment)
{
- return i915_gem_stolen_insert_node_in_range(i915, node,
- size, alignment,
- I915_GEM_STOLEN_BIAS,
- U64_MAX);
+ return __i915_gem_stolen_insert_node(i915, &node->node, size, alignment);
}
-void i915_gem_stolen_remove_node(struct drm_i915_private *i915,
- struct drm_mm_node *node)
+static void __i915_gem_stolen_remove_node(struct drm_i915_private *i915,
+ struct drm_mm_node *node)
{
mutex_lock(&i915->mm.stolen_lock);
drm_mm_remove_node(node);
mutex_unlock(&i915->mm.stolen_lock);
}
+void i915_gem_stolen_remove_node(struct drm_i915_private *i915,
+ struct intel_stolen_node *node)
+{
+ __i915_gem_stolen_remove_node(i915, &node->node);
+}
+
static bool valid_stolen_size(struct drm_i915_private *i915, struct resource *dsm)
{
return (dsm->start != 0 || HAS_LMEMBAR_SMEM_STOLEN(i915)) && dsm->end > dsm->start;
@@ -683,7 +705,7 @@ i915_gem_object_release_stolen(struct drm_i915_gem_object *obj)
struct drm_mm_node *stolen = fetch_and_zero(&obj->stolen);
GEM_BUG_ON(!stolen);
- i915_gem_stolen_remove_node(i915, stolen);
+ __i915_gem_stolen_remove_node(i915, stolen);
kfree(stolen);
i915_gem_object_release_memory_region(obj);
@@ -772,8 +794,8 @@ static int _i915_gem_object_stolen_init(struct intel_memory_region *mem,
ret = drm_mm_reserve_node(&i915->mm.stolen, stolen);
mutex_unlock(&i915->mm.stolen_lock);
} else {
- ret = i915_gem_stolen_insert_node(i915, stolen, size,
- mem->min_page_size);
+ ret = __i915_gem_stolen_insert_node(i915, stolen, size,
+ mem->min_page_size);
}
if (ret)
goto err_free;
@@ -785,7 +807,7 @@ static int _i915_gem_object_stolen_init(struct intel_memory_region *mem,
return 0;
err_remove:
- i915_gem_stolen_remove_node(i915, stolen);
+ __i915_gem_stolen_remove_node(i915, stolen);
err_free:
kfree(stolen);
return ret;
@@ -1016,22 +1038,22 @@ u64 i915_gem_stolen_area_size(const struct drm_i915_private *i915)
}
u64 i915_gem_stolen_node_address(const struct drm_i915_private *i915,
- const struct drm_mm_node *node)
+ const struct intel_stolen_node *node)
{
return i915->dsm.stolen.start + i915_gem_stolen_node_offset(node);
}
-bool i915_gem_stolen_node_allocated(const struct drm_mm_node *node)
+bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node)
{
- return drm_mm_node_allocated(node);
+ return drm_mm_node_allocated(&node->node);
}
-u64 i915_gem_stolen_node_offset(const struct drm_mm_node *node)
+u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node)
{
- return node->start;
+ return node->node.start;
}
-u64 i915_gem_stolen_node_size(const struct drm_mm_node *node)
+u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node)
{
- return node->size;
+ return node->node.size;
}
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
index c2f9c994e0ae..9e42d5a4cf13 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
@@ -7,22 +7,24 @@
#define __I915_GEM_STOLEN_H__
#include <linux/types.h>
+#include <drm/drm_mm.h>
-struct drm_i915_private;
-struct drm_mm_node;
struct drm_i915_gem_object;
+struct drm_i915_private;
-#define intel_stolen_node drm_mm_node
+struct intel_stolen_node {
+ struct drm_mm_node node;
+};
int i915_gem_stolen_insert_node(struct drm_i915_private *i915,
- struct drm_mm_node *node, u64 size,
+ struct intel_stolen_node *node, u64 size,
unsigned alignment);
int i915_gem_stolen_insert_node_in_range(struct drm_i915_private *i915,
- struct drm_mm_node *node, u64 size,
+ struct intel_stolen_node *node, u64 size,
unsigned alignment, u64 start,
u64 end);
void i915_gem_stolen_remove_node(struct drm_i915_private *i915,
- struct drm_mm_node *node);
+ struct intel_stolen_node *node);
struct intel_memory_region *
i915_gem_stolen_smem_setup(struct drm_i915_private *i915, u16 type,
u16 instance);
@@ -43,10 +45,10 @@ u64 i915_gem_stolen_area_address(const struct drm_i915_private *i915);
u64 i915_gem_stolen_area_size(const struct drm_i915_private *i915);
u64 i915_gem_stolen_node_address(const struct drm_i915_private *i915,
- const struct drm_mm_node *node);
+ const struct intel_stolen_node *node);
-bool i915_gem_stolen_node_allocated(const struct drm_mm_node *node);
-u64 i915_gem_stolen_node_offset(const struct drm_mm_node *node);
-u64 i915_gem_stolen_node_size(const struct drm_mm_node *node);
+bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node);
+u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node);
+u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node);
#endif /* __I915_GEM_STOLEN_H__ */
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 06/11] drm/xe/stolen: convert compat static inlines to proper functions
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (4 preceding siblings ...)
2025-09-24 16:43 ` [PATCH 05/11] drm/i915/stolen: convert intel_stolen_node into a real struct of its own Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 16:43 ` [PATCH 07/11] drm/{i915, xe}/stolen: make struct intel_stolen_node opaque Jani Nikula
` (10 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
Add display/xe_stolen.c as the implementation for the stolen interface
exposed to display. This allows hiding the implementation details that
shouldn't be exposed to display.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/xe/Makefile | 1 +
| 104 ++++--------------
drivers/gpu/drm/xe/display/xe_stolen.c | 99 +++++++++++++++++
3 files changed, 119 insertions(+), 85 deletions(-)
create mode 100644 drivers/gpu/drm/xe/display/xe_stolen.c
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index d9c6cf0f189e..ac65722e5d38 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -214,6 +214,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
display/xe_hdcp_gsc.o \
display/xe_panic.o \
display/xe_plane_initial.o \
+ display/xe_stolen.o \
display/xe_tdf.o
# SOC code shared with i915
--git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
index be249f51231d..10f110b9bf77 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
@@ -6,106 +6,40 @@
#ifndef _I915_GEM_STOLEN_H_
#define _I915_GEM_STOLEN_H_
-#include "xe_ttm_stolen_mgr.h"
-#include "xe_res_cursor.h"
-#include "xe_validation.h"
+#include <linux/types.h>
struct xe_bo;
+struct xe_device;
struct intel_stolen_node {
struct xe_bo *bo;
};
-static inline int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
- struct intel_stolen_node *node,
- u32 size, u32 align,
- u32 start, u32 end)
-{
- struct xe_bo *bo;
- int err = 0;
- u32 flags = XE_BO_FLAG_PINNED | XE_BO_FLAG_STOLEN;
-
- if (start < SZ_4K)
- start = SZ_4K;
-
- if (align) {
- size = ALIGN(size, align);
- start = ALIGN(start, align);
- }
-
- bo = xe_bo_create_pin_range_novm(xe, xe_device_get_root_tile(xe),
- size, start, end, ttm_bo_type_kernel, flags);
- if (IS_ERR(bo)) {
- err = PTR_ERR(bo);
- bo = NULL;
- return err;
- }
-
- node->bo = bo;
-
- return err;
-}
-
-static inline int i915_gem_stolen_insert_node(struct xe_device *xe,
- struct intel_stolen_node *node,
- u32 size, u32 align)
-{
- /* Not used on xe */
- WARN_ON(1);
-
- return -ENODEV;
-}
-
-static inline void i915_gem_stolen_remove_node(struct xe_device *xe,
- struct intel_stolen_node *node)
-{
- xe_bo_unpin_map_no_vm(node->bo);
- node->bo = NULL;
-}
-
-static inline bool i915_gem_stolen_initialized(struct xe_device *xe)
-{
- return ttm_manager_type(&xe->ttm, XE_PL_STOLEN);
-}
+int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
+ struct intel_stolen_node *node,
+ u32 size, u32 align,
+ u32 start, u32 end);
-static inline bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node)
-{
- return node->bo;
-}
+int i915_gem_stolen_insert_node(struct xe_device *xe,
+ struct intel_stolen_node *node,
+ u32 size, u32 align);
-static inline u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node)
-{
- struct xe_res_cursor res;
+void i915_gem_stolen_remove_node(struct xe_device *xe,
+ struct intel_stolen_node *node);
- xe_res_first(node->bo->ttm.resource, 0, 4096, &res);
- return res.start;
-}
+bool i915_gem_stolen_initialized(struct xe_device *xe);
-/* Used for < gen4. These are not supported by Xe */
-static inline u64 i915_gem_stolen_area_address(const struct xe_device *xe)
-{
- WARN_ON(1);
+bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node);
- return 0;
-}
+u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node);
-/* Used for gen9 specific WA. Gen9 is not supported by Xe */
-static inline u64 i915_gem_stolen_area_size(const struct xe_device *xe)
-{
- WARN_ON(1);
+u64 i915_gem_stolen_area_address(const struct xe_device *xe);
- return 0;
-}
+u64 i915_gem_stolen_area_size(const struct xe_device *xe);
-static inline u64 i915_gem_stolen_node_address(struct xe_device *xe,
- struct intel_stolen_node *node)
-{
- return xe_ttm_stolen_gpu_offset(xe) + i915_gem_stolen_node_offset(node);
-}
+u64 i915_gem_stolen_node_address(struct xe_device *xe,
+ struct intel_stolen_node *node);
-static inline u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node)
-{
- return node->bo->ttm.base.size;
-}
+u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node);
#endif
diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c b/drivers/gpu/drm/xe/display/xe_stolen.c
new file mode 100644
index 000000000000..ab156a9f2c26
--- /dev/null
+++ b/drivers/gpu/drm/xe/display/xe_stolen.c
@@ -0,0 +1,99 @@
+// SPDX-License-Identifier: MIT
+/* Copyright © 2025 Intel Corporation */
+
+#include "gem/i915_gem_stolen.h"
+#include "xe_res_cursor.h"
+#include "xe_ttm_stolen_mgr.h"
+#include "xe_validation.h"
+
+int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
+ struct intel_stolen_node *node,
+ u32 size, u32 align,
+ u32 start, u32 end)
+{
+ struct xe_bo *bo;
+ int err = 0;
+ u32 flags = XE_BO_FLAG_PINNED | XE_BO_FLAG_STOLEN;
+
+ if (start < SZ_4K)
+ start = SZ_4K;
+
+ if (align) {
+ size = ALIGN(size, align);
+ start = ALIGN(start, align);
+ }
+
+ bo = xe_bo_create_pin_range_novm(xe, xe_device_get_root_tile(xe),
+ size, start, end, ttm_bo_type_kernel, flags);
+ if (IS_ERR(bo)) {
+ err = PTR_ERR(bo);
+ bo = NULL;
+ return err;
+ }
+
+ node->bo = bo;
+
+ return err;
+}
+
+int i915_gem_stolen_insert_node(struct xe_device *xe,
+ struct intel_stolen_node *node,
+ u32 size, u32 align)
+{
+ /* Not used on xe */
+ WARN_ON(1);
+
+ return -ENODEV;
+}
+
+void i915_gem_stolen_remove_node(struct xe_device *xe,
+ struct intel_stolen_node *node)
+{
+ xe_bo_unpin_map_no_vm(node->bo);
+ node->bo = NULL;
+}
+
+bool i915_gem_stolen_initialized(struct xe_device *xe)
+{
+ return ttm_manager_type(&xe->ttm, XE_PL_STOLEN);
+}
+
+bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node)
+{
+ return node->bo;
+}
+
+u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node)
+{
+ struct xe_res_cursor res;
+
+ xe_res_first(node->bo->ttm.resource, 0, 4096, &res);
+ return res.start;
+}
+
+/* Used for < gen4. These are not supported by Xe */
+u64 i915_gem_stolen_area_address(const struct xe_device *xe)
+{
+ WARN_ON(1);
+
+ return 0;
+}
+
+/* Used for gen9 specific WA. Gen9 is not supported by Xe */
+u64 i915_gem_stolen_area_size(const struct xe_device *xe)
+{
+ WARN_ON(1);
+
+ return 0;
+}
+
+u64 i915_gem_stolen_node_address(struct xe_device *xe,
+ struct intel_stolen_node *node)
+{
+ return xe_ttm_stolen_gpu_offset(xe) + i915_gem_stolen_node_offset(node);
+}
+
+u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node)
+{
+ return node->bo->ttm.base.size;
+}
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 07/11] drm/{i915, xe}/stolen: make struct intel_stolen_node opaque
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (5 preceding siblings ...)
2025-09-24 16:43 ` [PATCH 06/11] drm/xe/stolen: convert compat static inlines to proper functions Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 16:43 ` [PATCH 08/11] drm/{i915, xe}/stolen: add device pointer to struct intel_stolen_node Jani Nikula
` (9 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
Add i915_gem_stolen_node_alloc() and i915_gem_stolen_node_free(),
returning struct intel_stolen_node pointer. Make struct
intel_stolen_node an opaque pointer, with different implementations in
i915 and xe.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 58 ++++++++++++-------
drivers/gpu/drm/i915/gem/i915_gem_stolen.c | 20 +++++++
drivers/gpu/drm/i915/gem/i915_gem_stolen.h | 10 ++--
| 11 ++--
drivers/gpu/drm/xe/display/xe_stolen.c | 20 +++++++
5 files changed, 89 insertions(+), 30 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index cc67de6c06cf..05199434cb7c 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -102,7 +102,8 @@ struct intel_fbc {
struct mutex lock;
unsigned int busy_bits;
- struct intel_stolen_node compressed_fb, compressed_llb;
+ struct intel_stolen_node *compressed_fb;
+ struct intel_stolen_node *compressed_llb;
enum intel_fbc_id id;
@@ -380,16 +381,16 @@ static void i8xx_fbc_program_cfb(struct intel_fbc *fbc)
drm_WARN_ON(display->drm,
range_end_overflows_t(u64, i915_gem_stolen_area_address(i915),
- i915_gem_stolen_node_offset(&fbc->compressed_fb),
+ i915_gem_stolen_node_offset(fbc->compressed_fb),
U32_MAX));
drm_WARN_ON(display->drm,
range_end_overflows_t(u64, i915_gem_stolen_area_address(i915),
- i915_gem_stolen_node_offset(&fbc->compressed_llb),
+ i915_gem_stolen_node_offset(fbc->compressed_llb),
U32_MAX));
intel_de_write(display, FBC_CFB_BASE,
- i915_gem_stolen_node_address(i915, &fbc->compressed_fb));
+ i915_gem_stolen_node_address(i915, fbc->compressed_fb));
intel_de_write(display, FBC_LL_BASE,
- i915_gem_stolen_node_address(i915, &fbc->compressed_llb));
+ i915_gem_stolen_node_address(i915, fbc->compressed_llb));
}
static const struct intel_fbc_funcs i8xx_fbc_funcs = {
@@ -497,7 +498,7 @@ static void g4x_fbc_program_cfb(struct intel_fbc *fbc)
struct intel_display *display = fbc->display;
intel_de_write(display, DPFC_CB_BASE,
- i915_gem_stolen_node_offset(&fbc->compressed_fb));
+ i915_gem_stolen_node_offset(fbc->compressed_fb));
}
static const struct intel_fbc_funcs g4x_fbc_funcs = {
@@ -566,7 +567,7 @@ static void ilk_fbc_program_cfb(struct intel_fbc *fbc)
struct intel_display *display = fbc->display;
intel_de_write(display, ILK_DPFC_CB_BASE(fbc->id),
- i915_gem_stolen_node_offset(&fbc->compressed_fb));
+ i915_gem_stolen_node_offset(fbc->compressed_fb));
}
static const struct intel_fbc_funcs ilk_fbc_funcs = {
@@ -842,13 +843,13 @@ static int find_compression_limit(struct intel_fbc *fbc,
size /= limit;
/* Try to over-allocate to reduce reallocations and fragmentation. */
- ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
+ ret = i915_gem_stolen_insert_node_in_range(i915, fbc->compressed_fb,
size <<= 1, 4096, 0, end);
if (ret == 0)
return limit;
for (; limit <= intel_fbc_max_limit(display); limit <<= 1) {
- ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
+ ret = i915_gem_stolen_insert_node_in_range(i915, fbc->compressed_fb,
size >>= 1, 4096, 0, end);
if (ret == 0)
return limit;
@@ -865,12 +866,12 @@ static int intel_fbc_alloc_cfb(struct intel_fbc *fbc,
int ret;
drm_WARN_ON(display->drm,
- i915_gem_stolen_node_allocated(&fbc->compressed_fb));
+ i915_gem_stolen_node_allocated(fbc->compressed_fb));
drm_WARN_ON(display->drm,
- i915_gem_stolen_node_allocated(&fbc->compressed_llb));
+ i915_gem_stolen_node_allocated(fbc->compressed_llb));
if (DISPLAY_VER(display) < 5 && !display->platform.g4x) {
- ret = i915_gem_stolen_insert_node(i915, &fbc->compressed_llb,
+ ret = i915_gem_stolen_insert_node(i915, fbc->compressed_llb,
4096, 4096);
if (ret)
goto err;
@@ -887,12 +888,12 @@ static int intel_fbc_alloc_cfb(struct intel_fbc *fbc,
drm_dbg_kms(display->drm,
"reserved %llu bytes of contiguous stolen space for FBC, limit: %d\n",
- i915_gem_stolen_node_size(&fbc->compressed_fb), fbc->limit);
+ i915_gem_stolen_node_size(fbc->compressed_fb), fbc->limit);
return 0;
err_llb:
- if (i915_gem_stolen_node_allocated(&fbc->compressed_llb))
- i915_gem_stolen_remove_node(i915, &fbc->compressed_llb);
+ if (i915_gem_stolen_node_allocated(fbc->compressed_llb))
+ i915_gem_stolen_remove_node(i915, fbc->compressed_llb);
err:
if (i915_gem_stolen_initialized(i915))
drm_info_once(display->drm,
@@ -951,10 +952,10 @@ static void __intel_fbc_cleanup_cfb(struct intel_fbc *fbc)
if (WARN_ON(intel_fbc_hw_is_active(fbc)))
return;
- if (i915_gem_stolen_node_allocated(&fbc->compressed_llb))
- i915_gem_stolen_remove_node(i915, &fbc->compressed_llb);
- if (i915_gem_stolen_node_allocated(&fbc->compressed_fb))
- i915_gem_stolen_remove_node(i915, &fbc->compressed_fb);
+ if (i915_gem_stolen_node_allocated(fbc->compressed_llb))
+ i915_gem_stolen_remove_node(i915, fbc->compressed_llb);
+ if (i915_gem_stolen_node_allocated(fbc->compressed_fb))
+ i915_gem_stolen_remove_node(i915, fbc->compressed_fb);
}
void intel_fbc_cleanup(struct intel_display *display)
@@ -967,6 +968,9 @@ void intel_fbc_cleanup(struct intel_display *display)
__intel_fbc_cleanup_cfb(fbc);
mutex_unlock(&fbc->lock);
+ i915_gem_stolen_node_free(fbc->compressed_fb);
+ i915_gem_stolen_node_free(fbc->compressed_llb);
+
kfree(fbc);
}
}
@@ -1355,7 +1359,7 @@ static bool intel_fbc_is_cfb_ok(const struct intel_plane_state *plane_state)
return intel_fbc_min_limit(plane_state) <= fbc->limit &&
intel_fbc_cfb_size(plane_state) <= fbc->limit *
- i915_gem_stolen_node_size(&fbc->compressed_fb);
+ i915_gem_stolen_node_size(fbc->compressed_fb);
}
static bool intel_fbc_is_ok(const struct intel_plane_state *plane_state)
@@ -2083,6 +2087,13 @@ static struct intel_fbc *intel_fbc_create(struct intel_display *display,
if (!fbc)
return NULL;
+ fbc->compressed_fb = i915_gem_stolen_node_alloc(display->drm);
+ if (!fbc->compressed_fb)
+ goto err;
+ fbc->compressed_llb = i915_gem_stolen_node_alloc(display->drm);
+ if (!fbc->compressed_llb)
+ goto err;
+
fbc->id = fbc_id;
fbc->display = display;
INIT_WORK(&fbc->underrun_work, intel_fbc_underrun_work_fn);
@@ -2102,6 +2113,13 @@ static struct intel_fbc *intel_fbc_create(struct intel_display *display,
fbc->funcs = &i8xx_fbc_funcs;
return fbc;
+
+err:
+ i915_gem_stolen_node_free(fbc->compressed_llb);
+ i915_gem_stolen_node_free(fbc->compressed_fb);
+ kfree(fbc);
+
+ return NULL;
}
/**
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
index 70ee34303e36..5991ccd3f328 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
@@ -24,6 +24,10 @@
#include "intel_mchbar_regs.h"
#include "intel_pci_config.h"
+struct intel_stolen_node {
+ struct drm_mm_node node;
+};
+
/*
* The BIOS typically reserves some of the system's memory for the exclusive
* use of the integrated graphics. This memory is no longer available for
@@ -1057,3 +1061,19 @@ u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node)
{
return node->node.size;
}
+
+struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm)
+{
+ struct intel_stolen_node *node;
+
+ node = kzalloc(sizeof(*node), GFP_KERNEL);
+ if (!node)
+ return NULL;
+
+ return node;
+}
+
+void i915_gem_stolen_node_free(const struct intel_stolen_node *node)
+{
+ kfree(node);
+}
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
index 9e42d5a4cf13..25ec8325fb29 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
@@ -7,14 +7,11 @@
#define __I915_GEM_STOLEN_H__
#include <linux/types.h>
-#include <drm/drm_mm.h>
+struct drm_device;
struct drm_i915_gem_object;
struct drm_i915_private;
-
-struct intel_stolen_node {
- struct drm_mm_node node;
-};
+struct intel_stolen_node;
int i915_gem_stolen_insert_node(struct drm_i915_private *i915,
struct intel_stolen_node *node, u64 size,
@@ -51,4 +48,7 @@ bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node);
u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node);
u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node);
+struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm);
+void i915_gem_stolen_node_free(const struct intel_stolen_node *node);
+
#endif /* __I915_GEM_STOLEN_H__ */
--git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
index 10f110b9bf77..b0bc3efcaf6c 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
@@ -8,13 +8,10 @@
#include <linux/types.h>
-struct xe_bo;
+struct drm_device;
+struct intel_stolen_node;
struct xe_device;
-struct intel_stolen_node {
- struct xe_bo *bo;
-};
-
int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
struct intel_stolen_node *node,
u32 size, u32 align,
@@ -42,4 +39,8 @@ u64 i915_gem_stolen_node_address(struct xe_device *xe,
u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node);
+struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm);
+
+void i915_gem_stolen_node_free(const struct intel_stolen_node *node);
+
#endif
diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c b/drivers/gpu/drm/xe/display/xe_stolen.c
index ab156a9f2c26..b218df40324a 100644
--- a/drivers/gpu/drm/xe/display/xe_stolen.c
+++ b/drivers/gpu/drm/xe/display/xe_stolen.c
@@ -6,6 +6,10 @@
#include "xe_ttm_stolen_mgr.h"
#include "xe_validation.h"
+struct intel_stolen_node {
+ struct xe_bo *bo;
+};
+
int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
struct intel_stolen_node *node,
u32 size, u32 align,
@@ -97,3 +101,19 @@ u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node)
{
return node->bo->ttm.base.size;
}
+
+struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm)
+{
+ struct intel_stolen_node *node;
+
+ node = kzalloc(sizeof(*node), GFP_KERNEL);
+ if (!node)
+ return NULL;
+
+ return node;
+}
+
+void i915_gem_stolen_node_free(const struct intel_stolen_node *node)
+{
+ kfree(node);
+}
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 08/11] drm/{i915, xe}/stolen: add device pointer to struct intel_stolen_node
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (6 preceding siblings ...)
2025-09-24 16:43 ` [PATCH 07/11] drm/{i915, xe}/stolen: make struct intel_stolen_node opaque Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 16:43 ` [PATCH 09/11] drm/{i915, xe}/stolen: use the stored i915/xe device pointer Jani Nikula
` (8 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
Add backpointers to i915/xe to allow simplifying some interfaces in
follow-up.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/gem/i915_gem_stolen.c | 4 ++++
drivers/gpu/drm/xe/display/xe_stolen.c | 4 ++++
2 files changed, 8 insertions(+)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
index 5991ccd3f328..8bc71fb2a765 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
@@ -25,6 +25,7 @@
#include "intel_pci_config.h"
struct intel_stolen_node {
+ struct drm_i915_private *i915;
struct drm_mm_node node;
};
@@ -1064,12 +1065,15 @@ u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node)
struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm)
{
+ struct drm_i915_private *i915 = to_i915(drm);
struct intel_stolen_node *node;
node = kzalloc(sizeof(*node), GFP_KERNEL);
if (!node)
return NULL;
+ node->i915 = i915;
+
return node;
}
diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c b/drivers/gpu/drm/xe/display/xe_stolen.c
index b218df40324a..eea182b569a1 100644
--- a/drivers/gpu/drm/xe/display/xe_stolen.c
+++ b/drivers/gpu/drm/xe/display/xe_stolen.c
@@ -7,6 +7,7 @@
#include "xe_validation.h"
struct intel_stolen_node {
+ struct xe_device *xe;
struct xe_bo *bo;
};
@@ -104,12 +105,15 @@ u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node)
struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm)
{
+ struct xe_device *xe = to_xe_device(drm);
struct intel_stolen_node *node;
node = kzalloc(sizeof(*node), GFP_KERNEL);
if (!node)
return NULL;
+ node->xe = xe;
+
return node;
}
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 09/11] drm/{i915, xe}/stolen: use the stored i915/xe device pointer
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (7 preceding siblings ...)
2025-09-24 16:43 ` [PATCH 08/11] drm/{i915, xe}/stolen: add device pointer to struct intel_stolen_node Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 16:43 ` [PATCH 10/11] drm/{i915, xe}/stolen: convert stolen interface to struct drm_device Jani Nikula
` (7 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
Now that we store the i915/xe device pointer in struct
intel_stolen_node, we can reduce parameter passing in a number of
functions.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 21 +++++++------------
drivers/gpu/drm/i915/gem/i915_gem_stolen.c | 20 ++++++++----------
drivers/gpu/drm/i915/gem/i915_gem_stolen.h | 12 ++++-------
| 13 ++++--------
drivers/gpu/drm/xe/display/xe_stolen.c | 17 +++++++--------
5 files changed, 33 insertions(+), 50 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 05199434cb7c..0d837527aaab 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -388,9 +388,9 @@ static void i8xx_fbc_program_cfb(struct intel_fbc *fbc)
i915_gem_stolen_node_offset(fbc->compressed_llb),
U32_MAX));
intel_de_write(display, FBC_CFB_BASE,
- i915_gem_stolen_node_address(i915, fbc->compressed_fb));
+ i915_gem_stolen_node_address(fbc->compressed_fb));
intel_de_write(display, FBC_LL_BASE,
- i915_gem_stolen_node_address(i915, fbc->compressed_llb));
+ i915_gem_stolen_node_address(fbc->compressed_llb));
}
static const struct intel_fbc_funcs i8xx_fbc_funcs = {
@@ -836,20 +836,19 @@ static int find_compression_limit(struct intel_fbc *fbc,
unsigned int size, int min_limit)
{
struct intel_display *display = fbc->display;
- struct drm_i915_private *i915 = to_i915(display->drm);
u64 end = intel_fbc_stolen_end(display);
int ret, limit = min_limit;
size /= limit;
/* Try to over-allocate to reduce reallocations and fragmentation. */
- ret = i915_gem_stolen_insert_node_in_range(i915, fbc->compressed_fb,
+ ret = i915_gem_stolen_insert_node_in_range(fbc->compressed_fb,
size <<= 1, 4096, 0, end);
if (ret == 0)
return limit;
for (; limit <= intel_fbc_max_limit(display); limit <<= 1) {
- ret = i915_gem_stolen_insert_node_in_range(i915, fbc->compressed_fb,
+ ret = i915_gem_stolen_insert_node_in_range(fbc->compressed_fb,
size >>= 1, 4096, 0, end);
if (ret == 0)
return limit;
@@ -871,8 +870,7 @@ static int intel_fbc_alloc_cfb(struct intel_fbc *fbc,
i915_gem_stolen_node_allocated(fbc->compressed_llb));
if (DISPLAY_VER(display) < 5 && !display->platform.g4x) {
- ret = i915_gem_stolen_insert_node(i915, fbc->compressed_llb,
- 4096, 4096);
+ ret = i915_gem_stolen_insert_node(fbc->compressed_llb, 4096, 4096);
if (ret)
goto err;
}
@@ -893,7 +891,7 @@ static int intel_fbc_alloc_cfb(struct intel_fbc *fbc,
err_llb:
if (i915_gem_stolen_node_allocated(fbc->compressed_llb))
- i915_gem_stolen_remove_node(i915, fbc->compressed_llb);
+ i915_gem_stolen_remove_node(fbc->compressed_llb);
err:
if (i915_gem_stolen_initialized(i915))
drm_info_once(display->drm,
@@ -946,16 +944,13 @@ static void intel_fbc_program_workarounds(struct intel_fbc *fbc)
static void __intel_fbc_cleanup_cfb(struct intel_fbc *fbc)
{
- struct intel_display *display = fbc->display;
- struct drm_i915_private *i915 = to_i915(display->drm);
-
if (WARN_ON(intel_fbc_hw_is_active(fbc)))
return;
if (i915_gem_stolen_node_allocated(fbc->compressed_llb))
- i915_gem_stolen_remove_node(i915, fbc->compressed_llb);
+ i915_gem_stolen_remove_node(fbc->compressed_llb);
if (i915_gem_stolen_node_allocated(fbc->compressed_fb))
- i915_gem_stolen_remove_node(i915, fbc->compressed_fb);
+ i915_gem_stolen_remove_node(fbc->compressed_fb);
}
void intel_fbc_cleanup(struct intel_display *display)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
index 8bc71fb2a765..b2812ec79d19 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
@@ -63,11 +63,10 @@ static int __i915_gem_stolen_insert_node_in_range(struct drm_i915_private *i915,
return ret;
}
-int i915_gem_stolen_insert_node_in_range(struct drm_i915_private *i915,
- struct intel_stolen_node *node, u64 size,
+int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 size,
unsigned int alignment, u64 start, u64 end)
{
- return __i915_gem_stolen_insert_node_in_range(i915, &node->node,
+ return __i915_gem_stolen_insert_node_in_range(node->i915, &node->node,
size, alignment,
start, end);
}
@@ -82,11 +81,10 @@ static int __i915_gem_stolen_insert_node(struct drm_i915_private *i915,
U64_MAX);
}
-int i915_gem_stolen_insert_node(struct drm_i915_private *i915,
- struct intel_stolen_node *node, u64 size,
+int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 size,
unsigned int alignment)
{
- return __i915_gem_stolen_insert_node(i915, &node->node, size, alignment);
+ return __i915_gem_stolen_insert_node(node->i915, &node->node, size, alignment);
}
static void __i915_gem_stolen_remove_node(struct drm_i915_private *i915,
@@ -97,10 +95,9 @@ static void __i915_gem_stolen_remove_node(struct drm_i915_private *i915,
mutex_unlock(&i915->mm.stolen_lock);
}
-void i915_gem_stolen_remove_node(struct drm_i915_private *i915,
- struct intel_stolen_node *node)
+void i915_gem_stolen_remove_node(struct intel_stolen_node *node)
{
- __i915_gem_stolen_remove_node(i915, &node->node);
+ __i915_gem_stolen_remove_node(node->i915, &node->node);
}
static bool valid_stolen_size(struct drm_i915_private *i915, struct resource *dsm)
@@ -1042,9 +1039,10 @@ u64 i915_gem_stolen_area_size(const struct drm_i915_private *i915)
return resource_size(&i915->dsm.stolen);
}
-u64 i915_gem_stolen_node_address(const struct drm_i915_private *i915,
- const struct intel_stolen_node *node)
+u64 i915_gem_stolen_node_address(const struct intel_stolen_node *node)
{
+ struct drm_i915_private *i915 = node->i915;
+
return i915->dsm.stolen.start + i915_gem_stolen_node_offset(node);
}
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
index 25ec8325fb29..c670736f09e1 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
@@ -13,15 +13,12 @@ struct drm_i915_gem_object;
struct drm_i915_private;
struct intel_stolen_node;
-int i915_gem_stolen_insert_node(struct drm_i915_private *i915,
- struct intel_stolen_node *node, u64 size,
+int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 size,
unsigned alignment);
-int i915_gem_stolen_insert_node_in_range(struct drm_i915_private *i915,
- struct intel_stolen_node *node, u64 size,
+int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 size,
unsigned alignment, u64 start,
u64 end);
-void i915_gem_stolen_remove_node(struct drm_i915_private *i915,
- struct intel_stolen_node *node);
+void i915_gem_stolen_remove_node(struct intel_stolen_node *node);
struct intel_memory_region *
i915_gem_stolen_smem_setup(struct drm_i915_private *i915, u16 type,
u16 instance);
@@ -41,8 +38,7 @@ bool i915_gem_stolen_initialized(const struct drm_i915_private *i915);
u64 i915_gem_stolen_area_address(const struct drm_i915_private *i915);
u64 i915_gem_stolen_area_size(const struct drm_i915_private *i915);
-u64 i915_gem_stolen_node_address(const struct drm_i915_private *i915,
- const struct intel_stolen_node *node);
+u64 i915_gem_stolen_node_address(const struct intel_stolen_node *node);
bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node);
u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node);
--git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
index b0bc3efcaf6c..7bdf73fad8bf 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
@@ -12,17 +12,13 @@ struct drm_device;
struct intel_stolen_node;
struct xe_device;
-int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
- struct intel_stolen_node *node,
+int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node,
u32 size, u32 align,
u32 start, u32 end);
-int i915_gem_stolen_insert_node(struct xe_device *xe,
- struct intel_stolen_node *node,
- u32 size, u32 align);
+int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u32 size, u32 align);
-void i915_gem_stolen_remove_node(struct xe_device *xe,
- struct intel_stolen_node *node);
+void i915_gem_stolen_remove_node(struct intel_stolen_node *node);
bool i915_gem_stolen_initialized(struct xe_device *xe);
@@ -34,8 +30,7 @@ u64 i915_gem_stolen_area_address(const struct xe_device *xe);
u64 i915_gem_stolen_area_size(const struct xe_device *xe);
-u64 i915_gem_stolen_node_address(struct xe_device *xe,
- struct intel_stolen_node *node);
+u64 i915_gem_stolen_node_address(struct intel_stolen_node *node);
u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node);
diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c b/drivers/gpu/drm/xe/display/xe_stolen.c
index eea182b569a1..c1afe70454d1 100644
--- a/drivers/gpu/drm/xe/display/xe_stolen.c
+++ b/drivers/gpu/drm/xe/display/xe_stolen.c
@@ -11,11 +11,12 @@ struct intel_stolen_node {
struct xe_bo *bo;
};
-int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
- struct intel_stolen_node *node,
+int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node,
u32 size, u32 align,
u32 start, u32 end)
{
+ struct xe_device *xe = node->xe;
+
struct xe_bo *bo;
int err = 0;
u32 flags = XE_BO_FLAG_PINNED | XE_BO_FLAG_STOLEN;
@@ -41,9 +42,7 @@ int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
return err;
}
-int i915_gem_stolen_insert_node(struct xe_device *xe,
- struct intel_stolen_node *node,
- u32 size, u32 align)
+int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u32 size, u32 align)
{
/* Not used on xe */
WARN_ON(1);
@@ -51,8 +50,7 @@ int i915_gem_stolen_insert_node(struct xe_device *xe,
return -ENODEV;
}
-void i915_gem_stolen_remove_node(struct xe_device *xe,
- struct intel_stolen_node *node)
+void i915_gem_stolen_remove_node(struct intel_stolen_node *node)
{
xe_bo_unpin_map_no_vm(node->bo);
node->bo = NULL;
@@ -92,9 +90,10 @@ u64 i915_gem_stolen_area_size(const struct xe_device *xe)
return 0;
}
-u64 i915_gem_stolen_node_address(struct xe_device *xe,
- struct intel_stolen_node *node)
+u64 i915_gem_stolen_node_address(struct intel_stolen_node *node)
{
+ struct xe_device *xe = node->xe;
+
return xe_ttm_stolen_gpu_offset(xe) + i915_gem_stolen_node_offset(node);
}
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 10/11] drm/{i915, xe}/stolen: convert stolen interface to struct drm_device
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (8 preceding siblings ...)
2025-09-24 16:43 ` [PATCH 09/11] drm/{i915, xe}/stolen: use the stored i915/xe device pointer Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 16:43 ` [PATCH 11/11] drm/xe/stolen: use the same types as i915 interface Jani Nikula
` (6 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
Make the stolen interface agnostic to i915/xe, and pass struct
drm_device instead.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 13 +++++--------
drivers/gpu/drm/i915/gem/i915_gem_stolen.c | 12 +++++++++---
drivers/gpu/drm/i915/gem/i915_gem_stolen.h | 6 +++---
| 7 +++----
drivers/gpu/drm/xe/display/xe_stolen.c | 8 +++++---
5 files changed, 25 insertions(+), 21 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 0d837527aaab..4edb4342833e 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -377,14 +377,13 @@ static void i8xx_fbc_nuke(struct intel_fbc *fbc)
static void i8xx_fbc_program_cfb(struct intel_fbc *fbc)
{
struct intel_display *display = fbc->display;
- struct drm_i915_private *i915 = to_i915(display->drm);
drm_WARN_ON(display->drm,
- range_end_overflows_t(u64, i915_gem_stolen_area_address(i915),
+ range_end_overflows_t(u64, i915_gem_stolen_area_address(display->drm),
i915_gem_stolen_node_offset(fbc->compressed_fb),
U32_MAX));
drm_WARN_ON(display->drm,
- range_end_overflows_t(u64, i915_gem_stolen_area_address(i915),
+ range_end_overflows_t(u64, i915_gem_stolen_area_address(display->drm),
i915_gem_stolen_node_offset(fbc->compressed_llb),
U32_MAX));
intel_de_write(display, FBC_CFB_BASE,
@@ -798,7 +797,6 @@ static u64 intel_fbc_cfb_base_max(struct intel_display *display)
static u64 intel_fbc_stolen_end(struct intel_display *display)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
u64 end;
/* The FBC hardware for BDW/SKL doesn't have access to the stolen
@@ -807,7 +805,7 @@ static u64 intel_fbc_stolen_end(struct intel_display *display)
* underruns, even if that range is not reserved by the BIOS. */
if (display->platform.broadwell ||
(DISPLAY_VER(display) == 9 && !display->platform.broxton))
- end = i915_gem_stolen_area_size(i915) - 8 * 1024 * 1024;
+ end = i915_gem_stolen_area_size(display->drm) - 8 * 1024 * 1024;
else
end = U64_MAX;
@@ -861,7 +859,6 @@ static int intel_fbc_alloc_cfb(struct intel_fbc *fbc,
unsigned int size, int min_limit)
{
struct intel_display *display = fbc->display;
- struct drm_i915_private *i915 = to_i915(display->drm);
int ret;
drm_WARN_ON(display->drm,
@@ -893,7 +890,7 @@ static int intel_fbc_alloc_cfb(struct intel_fbc *fbc,
if (i915_gem_stolen_node_allocated(fbc->compressed_llb))
i915_gem_stolen_remove_node(fbc->compressed_llb);
err:
- if (i915_gem_stolen_initialized(i915))
+ if (i915_gem_stolen_initialized(display->drm))
drm_info_once(display->drm,
"not enough stolen space for compressed buffer (need %d more bytes), disabling. Hint: you may be able to increase stolen memory size in the BIOS to avoid this.\n", size);
return -ENOSPC;
@@ -1435,7 +1432,7 @@ static int intel_fbc_check_plane(struct intel_atomic_state *state,
if (!fbc)
return 0;
- if (!i915_gem_stolen_initialized(i915)) {
+ if (!i915_gem_stolen_initialized(display->drm)) {
plane_state->no_fbc_reason = "stolen memory not initialised";
return 0;
}
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
index b2812ec79d19..e73b369c3347 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c
@@ -1024,18 +1024,24 @@ bool i915_gem_object_is_stolen(const struct drm_i915_gem_object *obj)
return obj->ops == &i915_gem_object_stolen_ops;
}
-bool i915_gem_stolen_initialized(const struct drm_i915_private *i915)
+bool i915_gem_stolen_initialized(struct drm_device *drm)
{
+ struct drm_i915_private *i915 = to_i915(drm);
+
return drm_mm_initialized(&i915->mm.stolen);
}
-u64 i915_gem_stolen_area_address(const struct drm_i915_private *i915)
+u64 i915_gem_stolen_area_address(struct drm_device *drm)
{
+ struct drm_i915_private *i915 = to_i915(drm);
+
return i915->dsm.stolen.start;
}
-u64 i915_gem_stolen_area_size(const struct drm_i915_private *i915)
+u64 i915_gem_stolen_area_size(struct drm_device *drm)
{
+ struct drm_i915_private *i915 = to_i915(drm);
+
return resource_size(&i915->dsm.stolen);
}
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
index c670736f09e1..7b0386002ed4 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h
@@ -34,9 +34,9 @@ bool i915_gem_object_is_stolen(const struct drm_i915_gem_object *obj);
#define I915_GEM_STOLEN_BIAS SZ_128K
-bool i915_gem_stolen_initialized(const struct drm_i915_private *i915);
-u64 i915_gem_stolen_area_address(const struct drm_i915_private *i915);
-u64 i915_gem_stolen_area_size(const struct drm_i915_private *i915);
+bool i915_gem_stolen_initialized(struct drm_device *drm);
+u64 i915_gem_stolen_area_address(struct drm_device *drm);
+u64 i915_gem_stolen_area_size(struct drm_device *drm);
u64 i915_gem_stolen_node_address(const struct intel_stolen_node *node);
--git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
index 7bdf73fad8bf..42927326e567 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
@@ -10,7 +10,6 @@
struct drm_device;
struct intel_stolen_node;
-struct xe_device;
int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node,
u32 size, u32 align,
@@ -20,15 +19,15 @@ int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u32 size, u32 al
void i915_gem_stolen_remove_node(struct intel_stolen_node *node);
-bool i915_gem_stolen_initialized(struct xe_device *xe);
+bool i915_gem_stolen_initialized(struct drm_device *drm);
bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node);
u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node);
-u64 i915_gem_stolen_area_address(const struct xe_device *xe);
+u64 i915_gem_stolen_area_address(struct drm_device *drm);
-u64 i915_gem_stolen_area_size(const struct xe_device *xe);
+u64 i915_gem_stolen_area_size(struct drm_device *drm);
u64 i915_gem_stolen_node_address(struct intel_stolen_node *node);
diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c b/drivers/gpu/drm/xe/display/xe_stolen.c
index c1afe70454d1..d7af731d9c90 100644
--- a/drivers/gpu/drm/xe/display/xe_stolen.c
+++ b/drivers/gpu/drm/xe/display/xe_stolen.c
@@ -56,8 +56,10 @@ void i915_gem_stolen_remove_node(struct intel_stolen_node *node)
node->bo = NULL;
}
-bool i915_gem_stolen_initialized(struct xe_device *xe)
+bool i915_gem_stolen_initialized(struct drm_device *drm)
{
+ struct xe_device *xe = to_xe_device(drm);
+
return ttm_manager_type(&xe->ttm, XE_PL_STOLEN);
}
@@ -75,7 +77,7 @@ u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node)
}
/* Used for < gen4. These are not supported by Xe */
-u64 i915_gem_stolen_area_address(const struct xe_device *xe)
+u64 i915_gem_stolen_area_address(struct drm_device *drm)
{
WARN_ON(1);
@@ -83,7 +85,7 @@ u64 i915_gem_stolen_area_address(const struct xe_device *xe)
}
/* Used for gen9 specific WA. Gen9 is not supported by Xe */
-u64 i915_gem_stolen_area_size(const struct xe_device *xe)
+u64 i915_gem_stolen_area_size(struct drm_device *drm)
{
WARN_ON(1);
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 11/11] drm/xe/stolen: use the same types as i915 interface
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (9 preceding siblings ...)
2025-09-24 16:43 ` [PATCH 10/11] drm/{i915, xe}/stolen: convert stolen interface to struct drm_device Jani Nikula
@ 2025-09-24 16:43 ` Jani Nikula
2025-09-24 17:03 ` ✗ CI.checkpatch: warning for drm/{i915,xe}/stolen: refactor and unify interfaces Patchwork
` (5 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-24 16:43 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
Unify the i915 and xe interfaces by switching to the same types as i915.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
| 8 ++++----
drivers/gpu/drm/xe/display/xe_stolen.c | 7 +++----
2 files changed, 7 insertions(+), 8 deletions(-)
--git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
index 42927326e567..48e3256ba37e 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
@@ -11,11 +11,11 @@
struct drm_device;
struct intel_stolen_node;
-int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node,
- u32 size, u32 align,
- u32 start, u32 end);
+int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 size,
+ unsigned int align, u64 start, u64 end);
-int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u32 size, u32 align);
+int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 size,
+ unsigned int align);
void i915_gem_stolen_remove_node(struct intel_stolen_node *node);
diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c b/drivers/gpu/drm/xe/display/xe_stolen.c
index d7af731d9c90..9f04ba36e930 100644
--- a/drivers/gpu/drm/xe/display/xe_stolen.c
+++ b/drivers/gpu/drm/xe/display/xe_stolen.c
@@ -11,9 +11,8 @@ struct intel_stolen_node {
struct xe_bo *bo;
};
-int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node,
- u32 size, u32 align,
- u32 start, u32 end)
+int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 size,
+ unsigned int align, u64 start, u64 end)
{
struct xe_device *xe = node->xe;
@@ -42,7 +41,7 @@ int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node,
return err;
}
-int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u32 size, u32 align)
+int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 size, unsigned int align)
{
/* Not used on xe */
WARN_ON(1);
--
2.47.3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* ✗ CI.checkpatch: warning for drm/{i915,xe}/stolen: refactor and unify interfaces
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (10 preceding siblings ...)
2025-09-24 16:43 ` [PATCH 11/11] drm/xe/stolen: use the same types as i915 interface Jani Nikula
@ 2025-09-24 17:03 ` Patchwork
2025-09-24 17:04 ` ✓ CI.KUnit: success " Patchwork
` (4 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-24 17:03 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/{i915,xe}/stolen: refactor and unify interfaces
URL : https://patchwork.freedesktop.org/series/154984/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit e00da6f6b5d161fee363decfa480024a458ea771
Author: Jani Nikula <jani.nikula@intel.com>
Date: Wed Sep 24 19:43:40 2025 +0300
drm/xe/stolen: use the same types as i915 interface
Unify the i915 and xe interfaces by switching to the same types as i915.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch a4d9163251f4832a7d34d4b59449f9a68b9b7adf drm-intel
dac5dcf41f51 drm/{i915, xe}/stolen: rename i915_stolen_fb to intel_stolen_node
957630f94d54 drm/xe/stolen: rename fb to node in stolen compat header
fa714620d819 drm/xe/stolen: convert compat stolen macros to inline functions
7c6c6511572f drm/xe/stolen: switch from BUG_ON() to WARN_ON() in compat
d9143b3712b0 drm/i915/stolen: convert intel_stolen_node into a real struct of its own
835739a752a4 drm/xe/stolen: convert compat static inlines to proper functions
-:156: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#156:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 231 lines checked
5691e34c09f3 drm/{i915, xe}/stolen: make struct intel_stolen_node opaque
da47b233ec84 drm/{i915, xe}/stolen: add device pointer to struct intel_stolen_node
bb76c4bae564 drm/{i915, xe}/stolen: use the stored i915/xe device pointer
2655b4c90402 drm/{i915, xe}/stolen: convert stolen interface to struct drm_device
e00da6f6b5d1 drm/xe/stolen: use the same types as i915 interface
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ CI.KUnit: success for drm/{i915,xe}/stolen: refactor and unify interfaces
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (11 preceding siblings ...)
2025-09-24 17:03 ` ✗ CI.checkpatch: warning for drm/{i915,xe}/stolen: refactor and unify interfaces Patchwork
@ 2025-09-24 17:04 ` Patchwork
2025-09-24 17:19 ` ✗ CI.checksparse: warning " Patchwork
` (3 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-24 17:04 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/{i915,xe}/stolen: refactor and unify interfaces
URL : https://patchwork.freedesktop.org/series/154984/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:03:03] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:03:07] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:03:36] Starting KUnit Kernel (1/1)...
[17:03:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:03:36] ================== guc_buf (11 subtests) ===================
[17:03:36] [PASSED] test_smallest
[17:03:36] [PASSED] test_largest
[17:03:36] [PASSED] test_granular
[17:03:36] [PASSED] test_unique
[17:03:36] [PASSED] test_overlap
[17:03:36] [PASSED] test_reusable
[17:03:36] [PASSED] test_too_big
[17:03:36] [PASSED] test_flush
[17:03:36] [PASSED] test_lookup
[17:03:36] [PASSED] test_data
[17:03:36] [PASSED] test_class
[17:03:36] ===================== [PASSED] guc_buf =====================
[17:03:36] =================== guc_dbm (7 subtests) ===================
[17:03:36] [PASSED] test_empty
[17:03:36] [PASSED] test_default
[17:03:36] ======================== test_size ========================
[17:03:36] [PASSED] 4
[17:03:36] [PASSED] 8
[17:03:36] [PASSED] 32
[17:03:36] [PASSED] 256
[17:03:36] ==================== [PASSED] test_size ====================
[17:03:36] ======================= test_reuse ========================
[17:03:36] [PASSED] 4
[17:03:36] [PASSED] 8
[17:03:36] [PASSED] 32
[17:03:36] [PASSED] 256
[17:03:36] =================== [PASSED] test_reuse ====================
[17:03:36] =================== test_range_overlap ====================
[17:03:36] [PASSED] 4
[17:03:37] [PASSED] 8
[17:03:37] [PASSED] 32
[17:03:37] [PASSED] 256
[17:03:37] =============== [PASSED] test_range_overlap ================
[17:03:37] =================== test_range_compact ====================
[17:03:37] [PASSED] 4
[17:03:37] [PASSED] 8
[17:03:37] [PASSED] 32
[17:03:37] [PASSED] 256
[17:03:37] =============== [PASSED] test_range_compact ================
[17:03:37] ==================== test_range_spare =====================
[17:03:37] [PASSED] 4
[17:03:37] [PASSED] 8
[17:03:37] [PASSED] 32
[17:03:37] [PASSED] 256
[17:03:37] ================ [PASSED] test_range_spare =================
[17:03:37] ===================== [PASSED] guc_dbm =====================
[17:03:37] =================== guc_idm (6 subtests) ===================
[17:03:37] [PASSED] bad_init
[17:03:37] [PASSED] no_init
[17:03:37] [PASSED] init_fini
[17:03:37] [PASSED] check_used
[17:03:37] [PASSED] check_quota
[17:03:37] [PASSED] check_all
[17:03:37] ===================== [PASSED] guc_idm =====================
[17:03:37] ================== no_relay (3 subtests) ===================
[17:03:37] [PASSED] xe_drops_guc2pf_if_not_ready
[17:03:37] [PASSED] xe_drops_guc2vf_if_not_ready
[17:03:37] [PASSED] xe_rejects_send_if_not_ready
[17:03:37] ==================== [PASSED] no_relay =====================
[17:03:37] ================== pf_relay (14 subtests) ==================
[17:03:37] [PASSED] pf_rejects_guc2pf_too_short
[17:03:37] [PASSED] pf_rejects_guc2pf_too_long
[17:03:37] [PASSED] pf_rejects_guc2pf_no_payload
[17:03:37] [PASSED] pf_fails_no_payload
[17:03:37] [PASSED] pf_fails_bad_origin
[17:03:37] [PASSED] pf_fails_bad_type
[17:03:37] [PASSED] pf_txn_reports_error
[17:03:37] [PASSED] pf_txn_sends_pf2guc
[17:03:37] [PASSED] pf_sends_pf2guc
[17:03:37] [SKIPPED] pf_loopback_nop
[17:03:37] [SKIPPED] pf_loopback_echo
[17:03:37] [SKIPPED] pf_loopback_fail
[17:03:37] [SKIPPED] pf_loopback_busy
[17:03:37] [SKIPPED] pf_loopback_retry
[17:03:37] ==================== [PASSED] pf_relay =====================
[17:03:37] ================== vf_relay (3 subtests) ===================
[17:03:37] [PASSED] vf_rejects_guc2vf_too_short
[17:03:37] [PASSED] vf_rejects_guc2vf_too_long
[17:03:37] [PASSED] vf_rejects_guc2vf_no_payload
[17:03:37] ==================== [PASSED] vf_relay =====================
[17:03:37] ===================== lmtt (1 subtest) =====================
[17:03:37] ======================== test_ops =========================
[17:03:37] [PASSED] 2-level
[17:03:37] [PASSED] multi-level
[17:03:37] ==================== [PASSED] test_ops =====================
[17:03:37] ====================== [PASSED] lmtt =======================
[17:03:37] ================= pf_service (11 subtests) =================
[17:03:37] [PASSED] pf_negotiate_any
[17:03:37] [PASSED] pf_negotiate_base_match
[17:03:37] [PASSED] pf_negotiate_base_newer
[17:03:37] [PASSED] pf_negotiate_base_next
[17:03:37] [SKIPPED] pf_negotiate_base_older
[17:03:37] [PASSED] pf_negotiate_base_prev
[17:03:37] [PASSED] pf_negotiate_latest_match
[17:03:37] [PASSED] pf_negotiate_latest_newer
[17:03:37] [PASSED] pf_negotiate_latest_next
[17:03:37] [SKIPPED] pf_negotiate_latest_older
[17:03:37] [SKIPPED] pf_negotiate_latest_prev
[17:03:37] =================== [PASSED] pf_service ====================
[17:03:37] ================= xe_guc_g2g (2 subtests) ==================
[17:03:37] ============== xe_live_guc_g2g_kunit_default ==============
[17:03:37] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[17:03:37] ============== xe_live_guc_g2g_kunit_allmem ===============
[17:03:37] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[17:03:37] =================== [SKIPPED] xe_guc_g2g ===================
[17:03:37] =================== xe_mocs (2 subtests) ===================
[17:03:37] ================ xe_live_mocs_kernel_kunit ================
[17:03:37] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[17:03:37] ================ xe_live_mocs_reset_kunit =================
[17:03:37] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[17:03:37] ==================== [SKIPPED] xe_mocs =====================
[17:03:37] ================= xe_migrate (2 subtests) ==================
[17:03:37] ================= xe_migrate_sanity_kunit =================
[17:03:37] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[17:03:37] ================== xe_validate_ccs_kunit ==================
[17:03:37] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[17:03:37] =================== [SKIPPED] xe_migrate ===================
[17:03:37] ================== xe_dma_buf (1 subtest) ==================
[17:03:37] ==================== xe_dma_buf_kunit =====================
[17:03:37] ================ [SKIPPED] xe_dma_buf_kunit ================
[17:03:37] =================== [SKIPPED] xe_dma_buf ===================
[17:03:37] ================= xe_bo_shrink (1 subtest) =================
[17:03:37] =================== xe_bo_shrink_kunit ====================
[17:03:37] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[17:03:37] ================== [SKIPPED] xe_bo_shrink ==================
[17:03:37] ==================== xe_bo (2 subtests) ====================
[17:03:37] ================== xe_ccs_migrate_kunit ===================
[17:03:37] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[17:03:37] ==================== xe_bo_evict_kunit ====================
[17:03:37] =============== [SKIPPED] xe_bo_evict_kunit ================
[17:03:37] ===================== [SKIPPED] xe_bo ======================
[17:03:37] ==================== args (11 subtests) ====================
[17:03:37] [PASSED] count_args_test
[17:03:37] [PASSED] call_args_example
[17:03:37] [PASSED] call_args_test
[17:03:37] [PASSED] drop_first_arg_example
[17:03:37] [PASSED] drop_first_arg_test
[17:03:37] [PASSED] first_arg_example
[17:03:37] [PASSED] first_arg_test
[17:03:37] [PASSED] last_arg_example
[17:03:37] [PASSED] last_arg_test
[17:03:37] [PASSED] pick_arg_example
[17:03:37] [PASSED] sep_comma_example
[17:03:37] ====================== [PASSED] args =======================
[17:03:37] =================== xe_pci (3 subtests) ====================
[17:03:37] ==================== check_graphics_ip ====================
[17:03:37] [PASSED] 12.00 Xe_LP
[17:03:37] [PASSED] 12.10 Xe_LP+
[17:03:37] [PASSED] 12.55 Xe_HPG
[17:03:37] [PASSED] 12.60 Xe_HPC
[17:03:37] [PASSED] 12.70 Xe_LPG
[17:03:37] [PASSED] 12.71 Xe_LPG
[17:03:37] [PASSED] 12.74 Xe_LPG+
[17:03:37] [PASSED] 20.01 Xe2_HPG
[17:03:37] [PASSED] 20.02 Xe2_HPG
[17:03:37] [PASSED] 20.04 Xe2_LPG
[17:03:37] [PASSED] 30.00 Xe3_LPG
[17:03:37] [PASSED] 30.01 Xe3_LPG
[17:03:37] [PASSED] 30.03 Xe3_LPG
[17:03:37] ================ [PASSED] check_graphics_ip ================
[17:03:37] ===================== check_media_ip ======================
[17:03:37] [PASSED] 12.00 Xe_M
[17:03:37] [PASSED] 12.55 Xe_HPM
[17:03:37] [PASSED] 13.00 Xe_LPM+
[17:03:37] [PASSED] 13.01 Xe2_HPM
[17:03:37] [PASSED] 20.00 Xe2_LPM
[17:03:37] [PASSED] 30.00 Xe3_LPM
[17:03:37] [PASSED] 30.02 Xe3_LPM
[17:03:37] ================= [PASSED] check_media_ip ==================
[17:03:37] ================= check_platform_gt_count =================
[17:03:37] [PASSED] 0x9A60 (TIGERLAKE)
[17:03:37] [PASSED] 0x9A68 (TIGERLAKE)
[17:03:37] [PASSED] 0x9A70 (TIGERLAKE)
[17:03:37] [PASSED] 0x9A40 (TIGERLAKE)
[17:03:37] [PASSED] 0x9A49 (TIGERLAKE)
[17:03:37] [PASSED] 0x9A59 (TIGERLAKE)
[17:03:37] [PASSED] 0x9A78 (TIGERLAKE)
[17:03:37] [PASSED] 0x9AC0 (TIGERLAKE)
[17:03:37] [PASSED] 0x9AC9 (TIGERLAKE)
[17:03:37] [PASSED] 0x9AD9 (TIGERLAKE)
[17:03:37] [PASSED] 0x9AF8 (TIGERLAKE)
[17:03:37] [PASSED] 0x4C80 (ROCKETLAKE)
[17:03:37] [PASSED] 0x4C8A (ROCKETLAKE)
[17:03:37] [PASSED] 0x4C8B (ROCKETLAKE)
[17:03:37] [PASSED] 0x4C8C (ROCKETLAKE)
[17:03:37] [PASSED] 0x4C90 (ROCKETLAKE)
[17:03:37] [PASSED] 0x4C9A (ROCKETLAKE)
[17:03:37] [PASSED] 0x4680 (ALDERLAKE_S)
[17:03:37] [PASSED] 0x4682 (ALDERLAKE_S)
[17:03:37] [PASSED] 0x4688 (ALDERLAKE_S)
[17:03:37] [PASSED] 0x468A (ALDERLAKE_S)
[17:03:37] [PASSED] 0x468B (ALDERLAKE_S)
[17:03:37] [PASSED] 0x4690 (ALDERLAKE_S)
[17:03:37] [PASSED] 0x4692 (ALDERLAKE_S)
[17:03:37] [PASSED] 0x4693 (ALDERLAKE_S)
[17:03:37] [PASSED] 0x46A0 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46A1 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46A2 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46A3 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46A6 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46A8 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46AA (ALDERLAKE_P)
[17:03:37] [PASSED] 0x462A (ALDERLAKE_P)
[17:03:37] [PASSED] 0x4626 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x4628 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46B0 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46B1 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46B2 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46B3 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46C0 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46C1 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46C2 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46C3 (ALDERLAKE_P)
[17:03:37] [PASSED] 0x46D0 (ALDERLAKE_N)
[17:03:37] [PASSED] 0x46D1 (ALDERLAKE_N)
[17:03:37] [PASSED] 0x46D2 (ALDERLAKE_N)
[17:03:37] [PASSED] 0x46D3 (ALDERLAKE_N)
[17:03:37] [PASSED] 0x46D4 (ALDERLAKE_N)
[17:03:37] [PASSED] 0xA721 (ALDERLAKE_P)
[17:03:37] [PASSED] 0xA7A1 (ALDERLAKE_P)
[17:03:37] [PASSED] 0xA7A9 (ALDERLAKE_P)
[17:03:37] [PASSED] 0xA7AC (ALDERLAKE_P)
[17:03:37] [PASSED] 0xA7AD (ALDERLAKE_P)
[17:03:37] [PASSED] 0xA720 (ALDERLAKE_P)
[17:03:37] [PASSED] 0xA7A0 (ALDERLAKE_P)
[17:03:37] [PASSED] 0xA7A8 (ALDERLAKE_P)
[17:03:37] [PASSED] 0xA7AA (ALDERLAKE_P)
[17:03:37] [PASSED] 0xA7AB (ALDERLAKE_P)
[17:03:37] [PASSED] 0xA780 (ALDERLAKE_S)
[17:03:37] [PASSED] 0xA781 (ALDERLAKE_S)
[17:03:37] [PASSED] 0xA782 (ALDERLAKE_S)
[17:03:37] [PASSED] 0xA783 (ALDERLAKE_S)
[17:03:37] [PASSED] 0xA788 (ALDERLAKE_S)
[17:03:37] [PASSED] 0xA789 (ALDERLAKE_S)
[17:03:37] [PASSED] 0xA78A (ALDERLAKE_S)
[17:03:37] [PASSED] 0xA78B (ALDERLAKE_S)
[17:03:37] [PASSED] 0x4905 (DG1)
[17:03:37] [PASSED] 0x4906 (DG1)
[17:03:37] [PASSED] 0x4907 (DG1)
[17:03:37] [PASSED] 0x4908 (DG1)
[17:03:37] [PASSED] 0x4909 (DG1)
[17:03:37] [PASSED] 0x56C0 (DG2)
[17:03:37] [PASSED] 0x56C2 (DG2)
[17:03:37] [PASSED] 0x56C1 (DG2)
[17:03:37] [PASSED] 0x7D51 (METEORLAKE)
[17:03:37] [PASSED] 0x7DD1 (METEORLAKE)
[17:03:37] [PASSED] 0x7D41 (METEORLAKE)
[17:03:37] [PASSED] 0x7D67 (METEORLAKE)
[17:03:37] [PASSED] 0xB640 (METEORLAKE)
[17:03:37] [PASSED] 0x56A0 (DG2)
[17:03:37] [PASSED] 0x56A1 (DG2)
[17:03:37] [PASSED] 0x56A2 (DG2)
[17:03:37] [PASSED] 0x56BE (DG2)
[17:03:37] [PASSED] 0x56BF (DG2)
[17:03:37] [PASSED] 0x5690 (DG2)
[17:03:37] [PASSED] 0x5691 (DG2)
[17:03:37] [PASSED] 0x5692 (DG2)
[17:03:37] [PASSED] 0x56A5 (DG2)
[17:03:37] [PASSED] 0x56A6 (DG2)
[17:03:37] [PASSED] 0x56B0 (DG2)
[17:03:37] [PASSED] 0x56B1 (DG2)
[17:03:37] [PASSED] 0x56BA (DG2)
[17:03:37] [PASSED] 0x56BB (DG2)
[17:03:37] [PASSED] 0x56BC (DG2)
[17:03:37] [PASSED] 0x56BD (DG2)
[17:03:37] [PASSED] 0x5693 (DG2)
[17:03:37] [PASSED] 0x5694 (DG2)
[17:03:37] [PASSED] 0x5695 (DG2)
[17:03:37] [PASSED] 0x56A3 (DG2)
[17:03:37] [PASSED] 0x56A4 (DG2)
[17:03:37] [PASSED] 0x56B2 (DG2)
[17:03:37] [PASSED] 0x56B3 (DG2)
[17:03:37] [PASSED] 0x5696 (DG2)
[17:03:37] [PASSED] 0x5697 (DG2)
[17:03:37] [PASSED] 0xB69 (PVC)
[17:03:37] [PASSED] 0xB6E (PVC)
[17:03:37] [PASSED] 0xBD4 (PVC)
[17:03:37] [PASSED] 0xBD5 (PVC)
[17:03:37] [PASSED] 0xBD6 (PVC)
[17:03:37] [PASSED] 0xBD7 (PVC)
[17:03:37] [PASSED] 0xBD8 (PVC)
[17:03:37] [PASSED] 0xBD9 (PVC)
[17:03:37] [PASSED] 0xBDA (PVC)
[17:03:37] [PASSED] 0xBDB (PVC)
[17:03:37] [PASSED] 0xBE0 (PVC)
[17:03:37] [PASSED] 0xBE1 (PVC)
[17:03:37] [PASSED] 0xBE5 (PVC)
[17:03:37] [PASSED] 0x7D40 (METEORLAKE)
[17:03:37] [PASSED] 0x7D45 (METEORLAKE)
[17:03:37] [PASSED] 0x7D55 (METEORLAKE)
[17:03:37] [PASSED] 0x7D60 (METEORLAKE)
[17:03:37] [PASSED] 0x7DD5 (METEORLAKE)
[17:03:37] [PASSED] 0x6420 (LUNARLAKE)
[17:03:37] [PASSED] 0x64A0 (LUNARLAKE)
[17:03:37] [PASSED] 0x64B0 (LUNARLAKE)
[17:03:37] [PASSED] 0xE202 (BATTLEMAGE)
[17:03:37] [PASSED] 0xE209 (BATTLEMAGE)
[17:03:37] [PASSED] 0xE20B (BATTLEMAGE)
[17:03:37] [PASSED] 0xE20C (BATTLEMAGE)
[17:03:37] [PASSED] 0xE20D (BATTLEMAGE)
[17:03:37] [PASSED] 0xE210 (BATTLEMAGE)
[17:03:37] [PASSED] 0xE211 (BATTLEMAGE)
[17:03:37] [PASSED] 0xE212 (BATTLEMAGE)
[17:03:37] [PASSED] 0xE216 (BATTLEMAGE)
[17:03:37] [PASSED] 0xE220 (BATTLEMAGE)
[17:03:37] [PASSED] 0xE221 (BATTLEMAGE)
[17:03:37] [PASSED] 0xE222 (BATTLEMAGE)
[17:03:37] [PASSED] 0xE223 (BATTLEMAGE)
[17:03:37] [PASSED] 0xB080 (PANTHERLAKE)
[17:03:37] [PASSED] 0xB081 (PANTHERLAKE)
[17:03:37] [PASSED] 0xB082 (PANTHERLAKE)
[17:03:37] [PASSED] 0xB083 (PANTHERLAKE)
[17:03:37] [PASSED] 0xB084 (PANTHERLAKE)
[17:03:37] [PASSED] 0xB085 (PANTHERLAKE)
[17:03:37] [PASSED] 0xB086 (PANTHERLAKE)
[17:03:37] [PASSED] 0xB087 (PANTHERLAKE)
[17:03:37] [PASSED] 0xB08F (PANTHERLAKE)
[17:03:37] [PASSED] 0xB090 (PANTHERLAKE)
[17:03:37] [PASSED] 0xB0A0 (PANTHERLAKE)
[17:03:37] [PASSED] 0xB0B0 (PANTHERLAKE)
[17:03:37] [PASSED] 0xFD80 (PANTHERLAKE)
[17:03:37] [PASSED] 0xFD81 (PANTHERLAKE)
[17:03:37] ============= [PASSED] check_platform_gt_count =============
[17:03:37] ===================== [PASSED] xe_pci ======================
[17:03:37] =================== xe_rtp (2 subtests) ====================
[17:03:37] =============== xe_rtp_process_to_sr_tests ================
[17:03:37] [PASSED] coalesce-same-reg
[17:03:37] [PASSED] no-match-no-add
[17:03:37] [PASSED] match-or
[17:03:37] [PASSED] match-or-xfail
[17:03:37] [PASSED] no-match-no-add-multiple-rules
[17:03:37] [PASSED] two-regs-two-entries
[17:03:37] [PASSED] clr-one-set-other
[17:03:37] [PASSED] set-field
[17:03:37] [PASSED] conflict-duplicate
[17:03:37] [PASSED] conflict-not-disjoint
[17:03:37] [PASSED] conflict-reg-type
[17:03:37] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[17:03:37] ================== xe_rtp_process_tests ===================
[17:03:37] [PASSED] active1
[17:03:37] [PASSED] active2
[17:03:37] [PASSED] active-inactive
[17:03:37] [PASSED] inactive-active
[17:03:37] [PASSED] inactive-1st_or_active-inactive
[17:03:37] [PASSED] inactive-2nd_or_active-inactive
[17:03:37] [PASSED] inactive-last_or_active-inactive
[17:03:37] [PASSED] inactive-no_or_active-inactive
[17:03:37] ============== [PASSED] xe_rtp_process_tests ===============
[17:03:37] ===================== [PASSED] xe_rtp ======================
[17:03:37] ==================== xe_wa (1 subtest) =====================
[17:03:37] ======================== xe_wa_gt =========================
[17:03:37] [PASSED] TIGERLAKE B0
[17:03:37] [PASSED] DG1 A0
[17:03:37] [PASSED] DG1 B0
[17:03:37] [PASSED] ALDERLAKE_S A0
[17:03:37] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[17:03:37] [PASSED] ALDERLAKE_S C0
[17:03:37] [PASSED] ALDERLAKE_S D0
[17:03:37] [PASSED] ALDERLAKE_P A0
[17:03:37] [PASSED] ALDERLAKE_P B0
[17:03:37] [PASSED] ALDERLAKE_P C0
[17:03:37] [PASSED] ALDERLAKE_S RPLS D0
[17:03:37] [PASSED] ALDERLAKE_P RPLU E0
[17:03:37] [PASSED] DG2 G10 C0
[17:03:37] [PASSED] DG2 G11 B1
[17:03:37] [PASSED] DG2 G12 A1
[17:03:37] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:03:37] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:03:37] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[17:03:37] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[17:03:37] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[17:03:37] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[17:03:37] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[17:03:37] ==================== [PASSED] xe_wa_gt =====================
[17:03:37] ====================== [PASSED] xe_wa ======================
[17:03:37] ============================================================
[17:03:37] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[17:03:37] Elapsed time: 33.701s total, 4.332s configuring, 29.002s building, 0.330s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[17:03:37] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:03:38] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:04:02] Starting KUnit Kernel (1/1)...
[17:04:02] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:04:02] ============ drm_test_pick_cmdline (2 subtests) ============
[17:04:02] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[17:04:02] =============== drm_test_pick_cmdline_named ===============
[17:04:02] [PASSED] NTSC
[17:04:02] [PASSED] NTSC-J
[17:04:02] [PASSED] PAL
[17:04:02] [PASSED] PAL-M
[17:04:02] =========== [PASSED] drm_test_pick_cmdline_named ===========
[17:04:02] ============== [PASSED] drm_test_pick_cmdline ==============
[17:04:02] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[17:04:02] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[17:04:02] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[17:04:02] =========== drm_validate_clone_mode (2 subtests) ===========
[17:04:02] ============== drm_test_check_in_clone_mode ===============
[17:04:02] [PASSED] in_clone_mode
[17:04:02] [PASSED] not_in_clone_mode
[17:04:02] ========== [PASSED] drm_test_check_in_clone_mode ===========
[17:04:02] =============== drm_test_check_valid_clones ===============
[17:04:02] [PASSED] not_in_clone_mode
[17:04:02] [PASSED] valid_clone
[17:04:02] [PASSED] invalid_clone
[17:04:02] =========== [PASSED] drm_test_check_valid_clones ===========
[17:04:02] ============= [PASSED] drm_validate_clone_mode =============
[17:04:02] ============= drm_validate_modeset (1 subtest) =============
[17:04:02] [PASSED] drm_test_check_connector_changed_modeset
[17:04:02] ============== [PASSED] drm_validate_modeset ===============
[17:04:02] ====== drm_test_bridge_get_current_state (2 subtests) ======
[17:04:02] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[17:04:02] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[17:04:02] ======== [PASSED] drm_test_bridge_get_current_state ========
[17:04:02] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[17:04:02] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[17:04:02] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[17:04:02] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[17:04:02] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[17:04:02] ============== drm_bridge_alloc (2 subtests) ===============
[17:04:02] [PASSED] drm_test_drm_bridge_alloc_basic
[17:04:02] [PASSED] drm_test_drm_bridge_alloc_get_put
[17:04:02] ================ [PASSED] drm_bridge_alloc =================
[17:04:02] ================== drm_buddy (7 subtests) ==================
[17:04:02] [PASSED] drm_test_buddy_alloc_limit
[17:04:02] [PASSED] drm_test_buddy_alloc_optimistic
[17:04:02] [PASSED] drm_test_buddy_alloc_pessimistic
[17:04:02] [PASSED] drm_test_buddy_alloc_pathological
[17:04:02] [PASSED] drm_test_buddy_alloc_contiguous
[17:04:02] [PASSED] drm_test_buddy_alloc_clear
[17:04:02] [PASSED] drm_test_buddy_alloc_range_bias
[17:04:02] ==================== [PASSED] drm_buddy ====================
[17:04:02] ============= drm_cmdline_parser (40 subtests) =============
[17:04:02] [PASSED] drm_test_cmdline_force_d_only
[17:04:02] [PASSED] drm_test_cmdline_force_D_only_dvi
[17:04:02] [PASSED] drm_test_cmdline_force_D_only_hdmi
[17:04:02] [PASSED] drm_test_cmdline_force_D_only_not_digital
[17:04:02] [PASSED] drm_test_cmdline_force_e_only
[17:04:02] [PASSED] drm_test_cmdline_res
[17:04:02] [PASSED] drm_test_cmdline_res_vesa
[17:04:02] [PASSED] drm_test_cmdline_res_vesa_rblank
[17:04:02] [PASSED] drm_test_cmdline_res_rblank
[17:04:02] [PASSED] drm_test_cmdline_res_bpp
[17:04:02] [PASSED] drm_test_cmdline_res_refresh
[17:04:02] [PASSED] drm_test_cmdline_res_bpp_refresh
[17:04:02] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[17:04:02] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[17:04:02] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[17:04:02] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[17:04:02] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[17:04:02] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[17:04:02] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[17:04:02] [PASSED] drm_test_cmdline_res_margins_force_on
[17:04:02] [PASSED] drm_test_cmdline_res_vesa_margins
[17:04:02] [PASSED] drm_test_cmdline_name
[17:04:02] [PASSED] drm_test_cmdline_name_bpp
[17:04:02] [PASSED] drm_test_cmdline_name_option
[17:04:02] [PASSED] drm_test_cmdline_name_bpp_option
[17:04:02] [PASSED] drm_test_cmdline_rotate_0
[17:04:02] [PASSED] drm_test_cmdline_rotate_90
[17:04:02] [PASSED] drm_test_cmdline_rotate_180
[17:04:02] [PASSED] drm_test_cmdline_rotate_270
[17:04:02] [PASSED] drm_test_cmdline_hmirror
[17:04:02] [PASSED] drm_test_cmdline_vmirror
[17:04:02] [PASSED] drm_test_cmdline_margin_options
[17:04:02] [PASSED] drm_test_cmdline_multiple_options
[17:04:02] [PASSED] drm_test_cmdline_bpp_extra_and_option
[17:04:02] [PASSED] drm_test_cmdline_extra_and_option
[17:04:02] [PASSED] drm_test_cmdline_freestanding_options
[17:04:02] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[17:04:02] [PASSED] drm_test_cmdline_panel_orientation
[17:04:02] ================ drm_test_cmdline_invalid =================
[17:04:02] [PASSED] margin_only
[17:04:02] [PASSED] interlace_only
[17:04:02] [PASSED] res_missing_x
[17:04:02] [PASSED] res_missing_y
[17:04:02] [PASSED] res_bad_y
[17:04:02] [PASSED] res_missing_y_bpp
[17:04:02] [PASSED] res_bad_bpp
[17:04:02] [PASSED] res_bad_refresh
[17:04:02] [PASSED] res_bpp_refresh_force_on_off
[17:04:02] [PASSED] res_invalid_mode
[17:04:02] [PASSED] res_bpp_wrong_place_mode
[17:04:02] [PASSED] name_bpp_refresh
[17:04:02] [PASSED] name_refresh
[17:04:02] [PASSED] name_refresh_wrong_mode
[17:04:02] [PASSED] name_refresh_invalid_mode
[17:04:02] [PASSED] rotate_multiple
[17:04:02] [PASSED] rotate_invalid_val
[17:04:02] [PASSED] rotate_truncated
[17:04:02] [PASSED] invalid_option
[17:04:02] [PASSED] invalid_tv_option
[17:04:02] [PASSED] truncated_tv_option
[17:04:02] ============ [PASSED] drm_test_cmdline_invalid =============
[17:04:02] =============== drm_test_cmdline_tv_options ===============
[17:04:02] [PASSED] NTSC
[17:04:02] [PASSED] NTSC_443
[17:04:02] [PASSED] NTSC_J
[17:04:02] [PASSED] PAL
[17:04:02] [PASSED] PAL_M
[17:04:02] [PASSED] PAL_N
[17:04:02] [PASSED] SECAM
[17:04:02] [PASSED] MONO_525
[17:04:02] [PASSED] MONO_625
[17:04:02] =========== [PASSED] drm_test_cmdline_tv_options ===========
[17:04:02] =============== [PASSED] drm_cmdline_parser ================
[17:04:02] ========== drmm_connector_hdmi_init (20 subtests) ==========
[17:04:02] [PASSED] drm_test_connector_hdmi_init_valid
[17:04:02] [PASSED] drm_test_connector_hdmi_init_bpc_8
[17:04:02] [PASSED] drm_test_connector_hdmi_init_bpc_10
[17:04:02] [PASSED] drm_test_connector_hdmi_init_bpc_12
[17:04:02] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[17:04:02] [PASSED] drm_test_connector_hdmi_init_bpc_null
[17:04:02] [PASSED] drm_test_connector_hdmi_init_formats_empty
[17:04:02] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[17:04:02] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:04:02] [PASSED] supported_formats=0x9 yuv420_allowed=1
[17:04:02] [PASSED] supported_formats=0x9 yuv420_allowed=0
[17:04:02] [PASSED] supported_formats=0x3 yuv420_allowed=1
[17:04:02] [PASSED] supported_formats=0x3 yuv420_allowed=0
[17:04:02] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:04:02] [PASSED] drm_test_connector_hdmi_init_null_ddc
[17:04:02] [PASSED] drm_test_connector_hdmi_init_null_product
[17:04:02] [PASSED] drm_test_connector_hdmi_init_null_vendor
[17:04:02] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[17:04:02] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[17:04:02] [PASSED] drm_test_connector_hdmi_init_product_valid
[17:04:02] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[17:04:02] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[17:04:02] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[17:04:02] ========= drm_test_connector_hdmi_init_type_valid =========
[17:04:02] [PASSED] HDMI-A
[17:04:02] [PASSED] HDMI-B
[17:04:02] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[17:04:02] ======== drm_test_connector_hdmi_init_type_invalid ========
[17:04:02] [PASSED] Unknown
[17:04:02] [PASSED] VGA
[17:04:02] [PASSED] DVI-I
[17:04:02] [PASSED] DVI-D
[17:04:02] [PASSED] DVI-A
[17:04:02] [PASSED] Composite
[17:04:02] [PASSED] SVIDEO
[17:04:02] [PASSED] LVDS
[17:04:02] [PASSED] Component
[17:04:02] [PASSED] DIN
[17:04:02] [PASSED] DP
[17:04:02] [PASSED] TV
[17:04:02] [PASSED] eDP
[17:04:02] [PASSED] Virtual
[17:04:02] [PASSED] DSI
[17:04:02] [PASSED] DPI
[17:04:02] [PASSED] Writeback
[17:04:02] [PASSED] SPI
[17:04:02] [PASSED] USB
[17:04:02] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[17:04:02] ============ [PASSED] drmm_connector_hdmi_init =============
[17:04:02] ============= drmm_connector_init (3 subtests) =============
[17:04:02] [PASSED] drm_test_drmm_connector_init
[17:04:02] [PASSED] drm_test_drmm_connector_init_null_ddc
[17:04:02] ========= drm_test_drmm_connector_init_type_valid =========
[17:04:02] [PASSED] Unknown
[17:04:02] [PASSED] VGA
[17:04:02] [PASSED] DVI-I
[17:04:02] [PASSED] DVI-D
[17:04:02] [PASSED] DVI-A
[17:04:02] [PASSED] Composite
[17:04:02] [PASSED] SVIDEO
[17:04:02] [PASSED] LVDS
[17:04:02] [PASSED] Component
[17:04:02] [PASSED] DIN
[17:04:02] [PASSED] DP
[17:04:02] [PASSED] HDMI-A
[17:04:02] [PASSED] HDMI-B
[17:04:02] [PASSED] TV
[17:04:02] [PASSED] eDP
[17:04:02] [PASSED] Virtual
[17:04:02] [PASSED] DSI
[17:04:02] [PASSED] DPI
[17:04:02] [PASSED] Writeback
[17:04:02] [PASSED] SPI
[17:04:02] [PASSED] USB
[17:04:02] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[17:04:02] =============== [PASSED] drmm_connector_init ===============
[17:04:02] ========= drm_connector_dynamic_init (6 subtests) ==========
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_init
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_init_properties
[17:04:02] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[17:04:02] [PASSED] Unknown
[17:04:02] [PASSED] VGA
[17:04:02] [PASSED] DVI-I
[17:04:02] [PASSED] DVI-D
[17:04:02] [PASSED] DVI-A
[17:04:02] [PASSED] Composite
[17:04:02] [PASSED] SVIDEO
[17:04:02] [PASSED] LVDS
[17:04:02] [PASSED] Component
[17:04:02] [PASSED] DIN
[17:04:02] [PASSED] DP
[17:04:02] [PASSED] HDMI-A
[17:04:02] [PASSED] HDMI-B
[17:04:02] [PASSED] TV
[17:04:02] [PASSED] eDP
[17:04:02] [PASSED] Virtual
[17:04:02] [PASSED] DSI
[17:04:02] [PASSED] DPI
[17:04:02] [PASSED] Writeback
[17:04:02] [PASSED] SPI
[17:04:02] [PASSED] USB
[17:04:02] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[17:04:02] ======== drm_test_drm_connector_dynamic_init_name =========
[17:04:02] [PASSED] Unknown
[17:04:02] [PASSED] VGA
[17:04:02] [PASSED] DVI-I
[17:04:02] [PASSED] DVI-D
[17:04:02] [PASSED] DVI-A
[17:04:02] [PASSED] Composite
[17:04:02] [PASSED] SVIDEO
[17:04:02] [PASSED] LVDS
[17:04:02] [PASSED] Component
[17:04:02] [PASSED] DIN
[17:04:02] [PASSED] DP
[17:04:02] [PASSED] HDMI-A
[17:04:02] [PASSED] HDMI-B
[17:04:02] [PASSED] TV
[17:04:02] [PASSED] eDP
[17:04:02] [PASSED] Virtual
[17:04:02] [PASSED] DSI
[17:04:02] [PASSED] DPI
[17:04:02] [PASSED] Writeback
[17:04:02] [PASSED] SPI
[17:04:02] [PASSED] USB
[17:04:02] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[17:04:02] =========== [PASSED] drm_connector_dynamic_init ============
[17:04:02] ==== drm_connector_dynamic_register_early (4 subtests) =====
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[17:04:02] ====== [PASSED] drm_connector_dynamic_register_early =======
[17:04:02] ======= drm_connector_dynamic_register (7 subtests) ========
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[17:04:02] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[17:04:02] ========= [PASSED] drm_connector_dynamic_register ==========
[17:04:02] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[17:04:02] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[17:04:02] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[17:04:02] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[17:04:02] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[17:04:02] ========== drm_test_get_tv_mode_from_name_valid ===========
[17:04:02] [PASSED] NTSC
[17:04:02] [PASSED] NTSC-443
[17:04:02] [PASSED] NTSC-J
[17:04:02] [PASSED] PAL
[17:04:02] [PASSED] PAL-M
[17:04:02] [PASSED] PAL-N
[17:04:02] [PASSED] SECAM
[17:04:02] [PASSED] Mono
[17:04:02] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[17:04:02] [PASSED] drm_test_get_tv_mode_from_name_truncated
[17:04:02] ============ [PASSED] drm_get_tv_mode_from_name ============
[17:04:02] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[17:04:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[17:04:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[17:04:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[17:04:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[17:04:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[17:04:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[17:04:02] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[17:04:02] [PASSED] VIC 96
[17:04:02] [PASSED] VIC 97
[17:04:02] [PASSED] VIC 101
[17:04:02] [PASSED] VIC 102
[17:04:02] [PASSED] VIC 106
[17:04:02] [PASSED] VIC 107
[17:04:02] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[17:04:02] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[17:04:02] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[17:04:02] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[17:04:02] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[17:04:02] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[17:04:02] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[17:04:02] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[17:04:02] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[17:04:02] [PASSED] Automatic
[17:04:02] [PASSED] Full
[17:04:02] [PASSED] Limited 16:235
[17:04:02] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[17:04:02] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[17:04:02] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[17:04:02] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[17:04:02] === drm_test_drm_hdmi_connector_get_output_format_name ====
[17:04:02] [PASSED] RGB
[17:04:02] [PASSED] YUV 4:2:0
[17:04:02] [PASSED] YUV 4:2:2
[17:04:02] [PASSED] YUV 4:4:4
[17:04:02] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[17:04:02] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[17:04:02] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[17:04:02] ============= drm_damage_helper (21 subtests) ==============
[17:04:02] [PASSED] drm_test_damage_iter_no_damage
[17:04:02] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[17:04:02] [PASSED] drm_test_damage_iter_no_damage_src_moved
[17:04:02] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[17:04:02] [PASSED] drm_test_damage_iter_no_damage_not_visible
[17:04:02] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[17:04:02] [PASSED] drm_test_damage_iter_no_damage_no_fb
[17:04:02] [PASSED] drm_test_damage_iter_simple_damage
[17:04:02] [PASSED] drm_test_damage_iter_single_damage
[17:04:02] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[17:04:02] [PASSED] drm_test_damage_iter_single_damage_outside_src
[17:04:02] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[17:04:02] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[17:04:02] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[17:04:02] [PASSED] drm_test_damage_iter_single_damage_src_moved
[17:04:02] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[17:04:02] [PASSED] drm_test_damage_iter_damage
[17:04:02] [PASSED] drm_test_damage_iter_damage_one_intersect
[17:04:02] [PASSED] drm_test_damage_iter_damage_one_outside
[17:04:02] [PASSED] drm_test_damage_iter_damage_src_moved
[17:04:02] [PASSED] drm_test_damage_iter_damage_not_visible
[17:04:02] ================ [PASSED] drm_damage_helper ================
[17:04:02] ============== drm_dp_mst_helper (3 subtests) ==============
[17:04:02] ============== drm_test_dp_mst_calc_pbn_mode ==============
[17:04:02] [PASSED] Clock 154000 BPP 30 DSC disabled
[17:04:02] [PASSED] Clock 234000 BPP 30 DSC disabled
[17:04:02] [PASSED] Clock 297000 BPP 24 DSC disabled
[17:04:02] [PASSED] Clock 332880 BPP 24 DSC enabled
[17:04:02] [PASSED] Clock 324540 BPP 24 DSC enabled
[17:04:02] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[17:04:02] ============== drm_test_dp_mst_calc_pbn_div ===============
[17:04:02] [PASSED] Link rate 2000000 lane count 4
[17:04:02] [PASSED] Link rate 2000000 lane count 2
[17:04:02] [PASSED] Link rate 2000000 lane count 1
[17:04:02] [PASSED] Link rate 1350000 lane count 4
[17:04:02] [PASSED] Link rate 1350000 lane count 2
[17:04:02] [PASSED] Link rate 1350000 lane count 1
[17:04:02] [PASSED] Link rate 1000000 lane count 4
[17:04:02] [PASSED] Link rate 1000000 lane count 2
[17:04:02] [PASSED] Link rate 1000000 lane count 1
[17:04:02] [PASSED] Link rate 810000 lane count 4
[17:04:02] [PASSED] Link rate 810000 lane count 2
[17:04:02] [PASSED] Link rate 810000 lane count 1
[17:04:02] [PASSED] Link rate 540000 lane count 4
[17:04:02] [PASSED] Link rate 540000 lane count 2
[17:04:02] [PASSED] Link rate 540000 lane count 1
[17:04:02] [PASSED] Link rate 270000 lane count 4
[17:04:02] [PASSED] Link rate 270000 lane count 2
[17:04:02] [PASSED] Link rate 270000 lane count 1
[17:04:02] [PASSED] Link rate 162000 lane count 4
[17:04:02] [PASSED] Link rate 162000 lane count 2
[17:04:02] [PASSED] Link rate 162000 lane count 1
[17:04:02] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[17:04:02] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[17:04:02] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[17:04:02] [PASSED] DP_POWER_UP_PHY with port number
[17:04:02] [PASSED] DP_POWER_DOWN_PHY with port number
[17:04:02] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[17:04:02] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[17:04:02] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[17:04:02] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[17:04:02] [PASSED] DP_QUERY_PAYLOAD with port number
[17:04:02] [PASSED] DP_QUERY_PAYLOAD with VCPI
[17:04:02] [PASSED] DP_REMOTE_DPCD_READ with port number
[17:04:02] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[17:04:02] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[17:04:02] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[17:04:02] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[17:04:02] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[17:04:02] [PASSED] DP_REMOTE_I2C_READ with port number
[17:04:02] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[17:04:02] [PASSED] DP_REMOTE_I2C_READ with transactions array
[17:04:02] [PASSED] DP_REMOTE_I2C_WRITE with port number
[17:04:02] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[17:04:02] [PASSED] DP_REMOTE_I2C_WRITE with data array
[17:04:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[17:04:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[17:04:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[17:04:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[17:04:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[17:04:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[17:04:02] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[17:04:02] ================ [PASSED] drm_dp_mst_helper ================
[17:04:02] ================== drm_exec (7 subtests) ===================
[17:04:02] [PASSED] sanitycheck
[17:04:02] [PASSED] test_lock
[17:04:02] [PASSED] test_lock_unlock
[17:04:02] [PASSED] test_duplicates
[17:04:02] [PASSED] test_prepare
[17:04:02] [PASSED] test_prepare_array
[17:04:02] [PASSED] test_multiple_loops
[17:04:02] ==================== [PASSED] drm_exec =====================
[17:04:02] =========== drm_format_helper_test (17 subtests) ===========
[17:04:02] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[17:04:02] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[17:04:02] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[17:04:02] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[17:04:02] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[17:04:02] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[17:04:02] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[17:04:02] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[17:04:02] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[17:04:02] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[17:04:02] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[17:04:02] ============== drm_test_fb_xrgb8888_to_mono ===============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[17:04:02] ==================== drm_test_fb_swab =====================
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ================ [PASSED] drm_test_fb_swab =================
[17:04:02] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[17:04:02] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[17:04:02] [PASSED] single_pixel_source_buffer
[17:04:02] [PASSED] single_pixel_clip_rectangle
[17:04:02] [PASSED] well_known_colors
[17:04:02] [PASSED] destination_pitch
[17:04:02] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[17:04:02] ================= drm_test_fb_clip_offset =================
[17:04:02] [PASSED] pass through
[17:04:02] [PASSED] horizontal offset
[17:04:02] [PASSED] vertical offset
[17:04:02] [PASSED] horizontal and vertical offset
[17:04:02] [PASSED] horizontal offset (custom pitch)
[17:04:02] [PASSED] vertical offset (custom pitch)
[17:04:02] [PASSED] horizontal and vertical offset (custom pitch)
[17:04:02] ============= [PASSED] drm_test_fb_clip_offset =============
[17:04:02] =================== drm_test_fb_memcpy ====================
[17:04:02] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[17:04:02] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[17:04:02] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[17:04:02] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[17:04:02] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[17:04:02] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[17:04:02] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[17:04:02] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[17:04:02] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[17:04:02] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[17:04:02] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[17:04:02] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[17:04:02] =============== [PASSED] drm_test_fb_memcpy ================
[17:04:02] ============= [PASSED] drm_format_helper_test ==============
[17:04:02] ================= drm_format (18 subtests) =================
[17:04:02] [PASSED] drm_test_format_block_width_invalid
[17:04:02] [PASSED] drm_test_format_block_width_one_plane
[17:04:02] [PASSED] drm_test_format_block_width_two_plane
[17:04:02] [PASSED] drm_test_format_block_width_three_plane
[17:04:02] [PASSED] drm_test_format_block_width_tiled
[17:04:02] [PASSED] drm_test_format_block_height_invalid
[17:04:02] [PASSED] drm_test_format_block_height_one_plane
[17:04:02] [PASSED] drm_test_format_block_height_two_plane
[17:04:02] [PASSED] drm_test_format_block_height_three_plane
[17:04:02] [PASSED] drm_test_format_block_height_tiled
[17:04:02] [PASSED] drm_test_format_min_pitch_invalid
[17:04:02] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[17:04:02] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[17:04:02] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[17:04:02] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[17:04:02] [PASSED] drm_test_format_min_pitch_two_plane
[17:04:02] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[17:04:02] [PASSED] drm_test_format_min_pitch_tiled
[17:04:02] =================== [PASSED] drm_format ====================
[17:04:02] ============== drm_framebuffer (10 subtests) ===============
[17:04:02] ========== drm_test_framebuffer_check_src_coords ==========
[17:04:02] [PASSED] Success: source fits into fb
[17:04:02] [PASSED] Fail: overflowing fb with x-axis coordinate
[17:04:02] [PASSED] Fail: overflowing fb with y-axis coordinate
[17:04:02] [PASSED] Fail: overflowing fb with source width
[17:04:02] [PASSED] Fail: overflowing fb with source height
[17:04:02] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[17:04:02] [PASSED] drm_test_framebuffer_cleanup
[17:04:02] =============== drm_test_framebuffer_create ===============
[17:04:02] [PASSED] ABGR8888 normal sizes
[17:04:02] [PASSED] ABGR8888 max sizes
[17:04:02] [PASSED] ABGR8888 pitch greater than min required
[17:04:02] [PASSED] ABGR8888 pitch less than min required
[17:04:02] [PASSED] ABGR8888 Invalid width
[17:04:02] [PASSED] ABGR8888 Invalid buffer handle
[17:04:02] [PASSED] No pixel format
[17:04:02] [PASSED] ABGR8888 Width 0
[17:04:02] [PASSED] ABGR8888 Height 0
[17:04:02] [PASSED] ABGR8888 Out of bound height * pitch combination
[17:04:02] [PASSED] ABGR8888 Large buffer offset
[17:04:02] [PASSED] ABGR8888 Buffer offset for inexistent plane
[17:04:02] [PASSED] ABGR8888 Invalid flag
[17:04:02] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[17:04:02] [PASSED] ABGR8888 Valid buffer modifier
[17:04:02] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[17:04:02] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[17:04:02] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[17:04:02] [PASSED] NV12 Normal sizes
[17:04:02] [PASSED] NV12 Max sizes
[17:04:02] [PASSED] NV12 Invalid pitch
[17:04:02] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[17:04:02] [PASSED] NV12 different modifier per-plane
[17:04:02] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[17:04:02] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[17:04:02] [PASSED] NV12 Modifier for inexistent plane
[17:04:02] [PASSED] NV12 Handle for inexistent plane
[17:04:02] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[17:04:02] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[17:04:02] [PASSED] YVU420 Normal sizes
[17:04:02] [PASSED] YVU420 Max sizes
[17:04:02] [PASSED] YVU420 Invalid pitch
[17:04:02] [PASSED] YVU420 Different pitches
[17:04:02] [PASSED] YVU420 Different buffer offsets/pitches
[17:04:02] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[17:04:02] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[17:04:02] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[17:04:02] [PASSED] YVU420 Valid modifier
[17:04:02] [PASSED] YVU420 Different modifiers per plane
[17:04:02] [PASSED] YVU420 Modifier for inexistent plane
[17:04:02] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[17:04:02] [PASSED] X0L2 Normal sizes
[17:04:02] [PASSED] X0L2 Max sizes
[17:04:02] [PASSED] X0L2 Invalid pitch
[17:04:02] [PASSED] X0L2 Pitch greater than minimum required
[17:04:02] [PASSED] X0L2 Handle for inexistent plane
[17:04:02] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[17:04:02] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[17:04:02] [PASSED] X0L2 Valid modifier
[17:04:02] [PASSED] X0L2 Modifier for inexistent plane
[17:04:02] =========== [PASSED] drm_test_framebuffer_create ===========
[17:04:02] [PASSED] drm_test_framebuffer_free
[17:04:02] [PASSED] drm_test_framebuffer_init
[17:04:02] [PASSED] drm_test_framebuffer_init_bad_format
[17:04:02] [PASSED] drm_test_framebuffer_init_dev_mismatch
[17:04:02] [PASSED] drm_test_framebuffer_lookup
[17:04:02] [PASSED] drm_test_framebuffer_lookup_inexistent
[17:04:02] [PASSED] drm_test_framebuffer_modifiers_not_supported
[17:04:02] ================= [PASSED] drm_framebuffer =================
[17:04:02] ================ drm_gem_shmem (8 subtests) ================
[17:04:02] [PASSED] drm_gem_shmem_test_obj_create
[17:04:02] [PASSED] drm_gem_shmem_test_obj_create_private
[17:04:02] [PASSED] drm_gem_shmem_test_pin_pages
[17:04:02] [PASSED] drm_gem_shmem_test_vmap
[17:04:02] [PASSED] drm_gem_shmem_test_get_pages_sgt
[17:04:02] [PASSED] drm_gem_shmem_test_get_sg_table
[17:04:02] [PASSED] drm_gem_shmem_test_madvise
[17:04:02] [PASSED] drm_gem_shmem_test_purge
[17:04:02] ================== [PASSED] drm_gem_shmem ==================
[17:04:02] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[17:04:02] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[17:04:02] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[17:04:02] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[17:04:02] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[17:04:02] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[17:04:02] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[17:04:02] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[17:04:02] [PASSED] Automatic
[17:04:02] [PASSED] Full
[17:04:02] [PASSED] Limited 16:235
[17:04:02] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[17:04:02] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[17:04:02] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[17:04:02] [PASSED] drm_test_check_disable_connector
[17:04:02] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[17:04:02] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[17:04:02] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[17:04:02] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[17:04:02] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[17:04:02] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[17:04:02] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[17:04:02] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[17:04:02] [PASSED] drm_test_check_output_bpc_dvi
[17:04:02] [PASSED] drm_test_check_output_bpc_format_vic_1
[17:04:02] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[17:04:02] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[17:04:02] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[17:04:02] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[17:04:02] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[17:04:02] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[17:04:02] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[17:04:02] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[17:04:02] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[17:04:02] [PASSED] drm_test_check_broadcast_rgb_value
[17:04:02] [PASSED] drm_test_check_bpc_8_value
[17:04:02] [PASSED] drm_test_check_bpc_10_value
[17:04:02] [PASSED] drm_test_check_bpc_12_value
[17:04:02] [PASSED] drm_test_check_format_value
[17:04:02] [PASSED] drm_test_check_tmds_char_value
[17:04:02] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[17:04:02] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[17:04:02] [PASSED] drm_test_check_mode_valid
[17:04:02] [PASSED] drm_test_check_mode_valid_reject
[17:04:02] [PASSED] drm_test_check_mode_valid_reject_rate
[17:04:02] [PASSED] drm_test_check_mode_valid_reject_max_clock
[17:04:02] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[17:04:02] ================= drm_managed (2 subtests) =================
[17:04:02] [PASSED] drm_test_managed_release_action
[17:04:02] [PASSED] drm_test_managed_run_action
[17:04:02] =================== [PASSED] drm_managed ===================
[17:04:02] =================== drm_mm (6 subtests) ====================
[17:04:02] [PASSED] drm_test_mm_init
[17:04:02] [PASSED] drm_test_mm_debug
[17:04:02] [PASSED] drm_test_mm_align32
[17:04:02] [PASSED] drm_test_mm_align64
[17:04:02] [PASSED] drm_test_mm_lowest
[17:04:02] [PASSED] drm_test_mm_highest
[17:04:02] ===================== [PASSED] drm_mm ======================
[17:04:02] ============= drm_modes_analog_tv (5 subtests) =============
[17:04:02] [PASSED] drm_test_modes_analog_tv_mono_576i
[17:04:02] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[17:04:02] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[17:04:02] [PASSED] drm_test_modes_analog_tv_pal_576i
[17:04:02] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[17:04:02] =============== [PASSED] drm_modes_analog_tv ===============
[17:04:02] ============== drm_plane_helper (2 subtests) ===============
[17:04:02] =============== drm_test_check_plane_state ================
[17:04:02] [PASSED] clipping_simple
[17:04:02] [PASSED] clipping_rotate_reflect
[17:04:02] [PASSED] positioning_simple
[17:04:02] [PASSED] upscaling
[17:04:02] [PASSED] downscaling
[17:04:02] [PASSED] rounding1
[17:04:02] [PASSED] rounding2
[17:04:02] [PASSED] rounding3
[17:04:02] [PASSED] rounding4
[17:04:02] =========== [PASSED] drm_test_check_plane_state ============
[17:04:02] =========== drm_test_check_invalid_plane_state ============
[17:04:02] [PASSED] positioning_invalid
[17:04:02] [PASSED] upscaling_invalid
[17:04:02] [PASSED] downscaling_invalid
[17:04:02] ======= [PASSED] drm_test_check_invalid_plane_state ========
[17:04:02] ================ [PASSED] drm_plane_helper =================
[17:04:02] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[17:04:02] ====== drm_test_connector_helper_tv_get_modes_check =======
[17:04:02] [PASSED] None
[17:04:02] [PASSED] PAL
[17:04:02] [PASSED] NTSC
[17:04:02] [PASSED] Both, NTSC Default
[17:04:02] [PASSED] Both, PAL Default
[17:04:02] [PASSED] Both, NTSC Default, with PAL on command-line
[17:04:02] [PASSED] Both, PAL Default, with NTSC on command-line
[17:04:02] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[17:04:02] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[17:04:02] ================== drm_rect (9 subtests) ===================
[17:04:02] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[17:04:02] [PASSED] drm_test_rect_clip_scaled_not_clipped
[17:04:02] [PASSED] drm_test_rect_clip_scaled_clipped
[17:04:02] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[17:04:02] ================= drm_test_rect_intersect =================
[17:04:02] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[17:04:02] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[17:04:02] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[17:04:02] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[17:04:02] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[17:04:02] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[17:04:02] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[17:04:02] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[17:04:02] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[17:04:02] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[17:04:02] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[17:04:02] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[17:04:02] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[17:04:02] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[17:04:02] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[17:04:02] ============= [PASSED] drm_test_rect_intersect =============
[17:04:02] ================ drm_test_rect_calc_hscale ================
[17:04:02] [PASSED] normal use
[17:04:02] [PASSED] out of max range
[17:04:02] [PASSED] out of min range
[17:04:02] [PASSED] zero dst
[17:04:02] [PASSED] negative src
[17:04:02] [PASSED] negative dst
[17:04:02] ============ [PASSED] drm_test_rect_calc_hscale ============
[17:04:02] ================ drm_test_rect_calc_vscale ================
[17:04:02] [PASSED] normal use
[17:04:02] [PASSED] out of max range
[17:04:02] [PASSED] out of min range
[17:04:02] [PASSED] zero dst
[17:04:02] [PASSED] negative src
stty: 'standard input': Inappropriate ioctl for device
[17:04:02] [PASSED] negative dst
[17:04:02] ============ [PASSED] drm_test_rect_calc_vscale ============
[17:04:02] ================== drm_test_rect_rotate ===================
[17:04:02] [PASSED] reflect-x
[17:04:02] [PASSED] reflect-y
[17:04:02] [PASSED] rotate-0
[17:04:02] [PASSED] rotate-90
[17:04:02] [PASSED] rotate-180
[17:04:02] [PASSED] rotate-270
[17:04:02] ============== [PASSED] drm_test_rect_rotate ===============
[17:04:02] ================ drm_test_rect_rotate_inv =================
[17:04:02] [PASSED] reflect-x
[17:04:02] [PASSED] reflect-y
[17:04:02] [PASSED] rotate-0
[17:04:02] [PASSED] rotate-90
[17:04:02] [PASSED] rotate-180
[17:04:02] [PASSED] rotate-270
[17:04:02] ============ [PASSED] drm_test_rect_rotate_inv =============
[17:04:02] ==================== [PASSED] drm_rect =====================
[17:04:02] ============ drm_sysfb_modeset_test (1 subtest) ============
[17:04:02] ============ drm_test_sysfb_build_fourcc_list =============
[17:04:02] [PASSED] no native formats
[17:04:02] [PASSED] XRGB8888 as native format
[17:04:02] [PASSED] remove duplicates
[17:04:02] [PASSED] convert alpha formats
[17:04:02] [PASSED] random formats
[17:04:02] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[17:04:02] ============= [PASSED] drm_sysfb_modeset_test ==============
[17:04:02] ============================================================
[17:04:02] Testing complete. Ran 621 tests: passed: 621
[17:04:02] Elapsed time: 25.539s total, 1.731s configuring, 23.639s building, 0.153s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[17:04:02] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:04:04] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:04:13] Starting KUnit Kernel (1/1)...
[17:04:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:04:13] ================= ttm_device (5 subtests) ==================
[17:04:13] [PASSED] ttm_device_init_basic
[17:04:13] [PASSED] ttm_device_init_multiple
[17:04:13] [PASSED] ttm_device_fini_basic
[17:04:13] [PASSED] ttm_device_init_no_vma_man
[17:04:13] ================== ttm_device_init_pools ==================
[17:04:13] [PASSED] No DMA allocations, no DMA32 required
[17:04:13] [PASSED] DMA allocations, DMA32 required
[17:04:13] [PASSED] No DMA allocations, DMA32 required
[17:04:13] [PASSED] DMA allocations, no DMA32 required
[17:04:13] ============== [PASSED] ttm_device_init_pools ==============
[17:04:13] =================== [PASSED] ttm_device ====================
[17:04:13] ================== ttm_pool (8 subtests) ===================
[17:04:13] ================== ttm_pool_alloc_basic ===================
[17:04:13] [PASSED] One page
[17:04:13] [PASSED] More than one page
[17:04:13] [PASSED] Above the allocation limit
[17:04:13] [PASSED] One page, with coherent DMA mappings enabled
[17:04:13] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:04:13] ============== [PASSED] ttm_pool_alloc_basic ===============
[17:04:13] ============== ttm_pool_alloc_basic_dma_addr ==============
[17:04:13] [PASSED] One page
[17:04:13] [PASSED] More than one page
[17:04:13] [PASSED] Above the allocation limit
[17:04:13] [PASSED] One page, with coherent DMA mappings enabled
[17:04:13] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:04:13] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[17:04:13] [PASSED] ttm_pool_alloc_order_caching_match
[17:04:13] [PASSED] ttm_pool_alloc_caching_mismatch
[17:04:13] [PASSED] ttm_pool_alloc_order_mismatch
[17:04:13] [PASSED] ttm_pool_free_dma_alloc
[17:04:13] [PASSED] ttm_pool_free_no_dma_alloc
[17:04:13] [PASSED] ttm_pool_fini_basic
[17:04:13] ==================== [PASSED] ttm_pool =====================
[17:04:13] ================ ttm_resource (8 subtests) =================
[17:04:13] ================= ttm_resource_init_basic =================
[17:04:13] [PASSED] Init resource in TTM_PL_SYSTEM
[17:04:13] [PASSED] Init resource in TTM_PL_VRAM
[17:04:13] [PASSED] Init resource in a private placement
[17:04:13] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[17:04:13] ============= [PASSED] ttm_resource_init_basic =============
[17:04:13] [PASSED] ttm_resource_init_pinned
[17:04:13] [PASSED] ttm_resource_fini_basic
[17:04:13] [PASSED] ttm_resource_manager_init_basic
[17:04:13] [PASSED] ttm_resource_manager_usage_basic
[17:04:13] [PASSED] ttm_resource_manager_set_used_basic
[17:04:13] [PASSED] ttm_sys_man_alloc_basic
[17:04:13] [PASSED] ttm_sys_man_free_basic
[17:04:13] ================== [PASSED] ttm_resource ===================
[17:04:13] =================== ttm_tt (15 subtests) ===================
[17:04:13] ==================== ttm_tt_init_basic ====================
[17:04:13] [PASSED] Page-aligned size
[17:04:13] [PASSED] Extra pages requested
[17:04:13] ================ [PASSED] ttm_tt_init_basic ================
[17:04:13] [PASSED] ttm_tt_init_misaligned
[17:04:13] [PASSED] ttm_tt_fini_basic
[17:04:13] [PASSED] ttm_tt_fini_sg
[17:04:13] [PASSED] ttm_tt_fini_shmem
[17:04:13] [PASSED] ttm_tt_create_basic
[17:04:13] [PASSED] ttm_tt_create_invalid_bo_type
[17:04:13] [PASSED] ttm_tt_create_ttm_exists
[17:04:13] [PASSED] ttm_tt_create_failed
[17:04:13] [PASSED] ttm_tt_destroy_basic
[17:04:13] [PASSED] ttm_tt_populate_null_ttm
[17:04:13] [PASSED] ttm_tt_populate_populated_ttm
[17:04:13] [PASSED] ttm_tt_unpopulate_basic
[17:04:13] [PASSED] ttm_tt_unpopulate_empty_ttm
[17:04:13] [PASSED] ttm_tt_swapin_basic
[17:04:13] ===================== [PASSED] ttm_tt ======================
[17:04:13] =================== ttm_bo (14 subtests) ===================
[17:04:13] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[17:04:13] [PASSED] Cannot be interrupted and sleeps
[17:04:13] [PASSED] Cannot be interrupted, locks straight away
[17:04:13] [PASSED] Can be interrupted, sleeps
[17:04:13] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[17:04:13] [PASSED] ttm_bo_reserve_locked_no_sleep
[17:04:13] [PASSED] ttm_bo_reserve_no_wait_ticket
[17:04:13] [PASSED] ttm_bo_reserve_double_resv
[17:04:13] [PASSED] ttm_bo_reserve_interrupted
[17:04:13] [PASSED] ttm_bo_reserve_deadlock
[17:04:13] [PASSED] ttm_bo_unreserve_basic
[17:04:13] [PASSED] ttm_bo_unreserve_pinned
[17:04:13] [PASSED] ttm_bo_unreserve_bulk
[17:04:13] [PASSED] ttm_bo_fini_basic
[17:04:13] [PASSED] ttm_bo_fini_shared_resv
[17:04:13] [PASSED] ttm_bo_pin_basic
[17:04:13] [PASSED] ttm_bo_pin_unpin_resource
[17:04:13] [PASSED] ttm_bo_multiple_pin_one_unpin
[17:04:13] ===================== [PASSED] ttm_bo ======================
[17:04:13] ============== ttm_bo_validate (21 subtests) ===============
[17:04:13] ============== ttm_bo_init_reserved_sys_man ===============
[17:04:13] [PASSED] Buffer object for userspace
[17:04:13] [PASSED] Kernel buffer object
[17:04:13] [PASSED] Shared buffer object
[17:04:13] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[17:04:13] ============== ttm_bo_init_reserved_mock_man ==============
[17:04:13] [PASSED] Buffer object for userspace
[17:04:13] [PASSED] Kernel buffer object
[17:04:13] [PASSED] Shared buffer object
[17:04:13] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[17:04:13] [PASSED] ttm_bo_init_reserved_resv
[17:04:13] ================== ttm_bo_validate_basic ==================
[17:04:13] [PASSED] Buffer object for userspace
[17:04:13] [PASSED] Kernel buffer object
[17:04:13] [PASSED] Shared buffer object
[17:04:13] ============== [PASSED] ttm_bo_validate_basic ==============
[17:04:13] [PASSED] ttm_bo_validate_invalid_placement
[17:04:13] ============= ttm_bo_validate_same_placement ==============
[17:04:13] [PASSED] System manager
[17:04:13] [PASSED] VRAM manager
[17:04:13] ========= [PASSED] ttm_bo_validate_same_placement ==========
[17:04:13] [PASSED] ttm_bo_validate_failed_alloc
[17:04:13] [PASSED] ttm_bo_validate_pinned
[17:04:13] [PASSED] ttm_bo_validate_busy_placement
[17:04:13] ================ ttm_bo_validate_multihop =================
[17:04:13] [PASSED] Buffer object for userspace
[17:04:13] [PASSED] Kernel buffer object
[17:04:13] [PASSED] Shared buffer object
[17:04:13] ============ [PASSED] ttm_bo_validate_multihop =============
[17:04:13] ========== ttm_bo_validate_no_placement_signaled ==========
[17:04:13] [PASSED] Buffer object in system domain, no page vector
[17:04:13] [PASSED] Buffer object in system domain with an existing page vector
[17:04:13] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[17:04:13] ======== ttm_bo_validate_no_placement_not_signaled ========
[17:04:13] [PASSED] Buffer object for userspace
[17:04:13] [PASSED] Kernel buffer object
[17:04:13] [PASSED] Shared buffer object
[17:04:13] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[17:04:13] [PASSED] ttm_bo_validate_move_fence_signaled
[17:04:13] ========= ttm_bo_validate_move_fence_not_signaled =========
[17:04:13] [PASSED] Waits for GPU
[17:04:13] [PASSED] Tries to lock straight away
[17:04:13] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[17:04:13] [PASSED] ttm_bo_validate_happy_evict
[17:04:13] [PASSED] ttm_bo_validate_all_pinned_evict
[17:04:13] [PASSED] ttm_bo_validate_allowed_only_evict
[17:04:13] [PASSED] ttm_bo_validate_deleted_evict
[17:04:13] [PASSED] ttm_bo_validate_busy_domain_evict
[17:04:13] [PASSED] ttm_bo_validate_evict_gutting
[17:04:13] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[17:04:13] ================= [PASSED] ttm_bo_validate =================
[17:04:13] ============================================================
[17:04:13] Testing complete. Ran 101 tests: passed: 101
[17:04:13] Elapsed time: 11.001s total, 1.700s configuring, 9.085s building, 0.183s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ CI.checksparse: warning for drm/{i915,xe}/stolen: refactor and unify interfaces
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (12 preceding siblings ...)
2025-09-24 17:04 ` ✓ CI.KUnit: success " Patchwork
@ 2025-09-24 17:19 ` Patchwork
2025-09-24 17:38 ` ✓ Xe.CI.BAT: success " Patchwork
` (2 subsequent siblings)
16 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-24 17:19 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/{i915,xe}/stolen: refactor and unify interfaces
URL : https://patchwork.freedesktop.org/series/154984/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast a4d9163251f4832a7d34d4b59449f9a68b9b7adf
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/i915/display/intel_cdclk.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_display_types.h:2023:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2023:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2023:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_hotplug.c: note: in included file:
+drivers/gpu/drm/i915/gt/intel_reset.c:1569:12: warning: context imbalance in '_intel_gt_reset_lock' - different lock contexts for basic block
+drivers/gpu/drm/i915/gt/intel_sseu.c:598:17: error: too long token expansion
+drivers/gpu/drm/i915/i915_active.c:1062:16: warning: context imbalance in '__i915_active_fence_set' - different lock contexts for basic block
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces):
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces):
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: expected struct list_head const *list
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: got struct list_head [noderef] __rcu *pos
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: warning: incorrect type in argument 1 (different address spaces)
+drivers/gpu/drm/i915/i915_gpu_error.c:692:3: warning: symbol 'guc_hw_reg_state' was not declared. Should it be static?
+drivers/gpu/drm/i915/i915_irq.c:466:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:466:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:474:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:474:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:479:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:479:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:479:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:517:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:517:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:525:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:525:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:530:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:530:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:530:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:574:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:574:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:577:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:577:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:581:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:581:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:588:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:588:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:588:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:588:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/intel_uncore.c:1928:1: warning: context imbalance in 'fwtable_read8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1929:1: warning: context imbalance in 'fwtable_read16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1930:1: warning: context imbalance in 'fwtable_read32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1931:1: warning: context imbalance in 'fwtable_read64' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1996:1: warning: context imbalance in 'gen6_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1997:1: warning: context imbalance in 'gen6_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1998:1: warning: context imbalance in 'gen6_write32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2018:1: warning: context imbalance in 'fwtable_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2019:1: warning: context imbalance in 'fwtable_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2020:1: warning: context imbalance in 'fwtable_write32' - unexpected unlock
+drivers/gpu/drm/i915/intel_wakeref.c:146:19: warning: context imbalance in 'wakeref_auto_timeout' - unexpected unlock
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.BAT: success for drm/{i915,xe}/stolen: refactor and unify interfaces
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (13 preceding siblings ...)
2025-09-24 17:19 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-09-24 17:38 ` Patchwork
2025-09-24 22:08 ` ✗ Xe.CI.Full: failure " Patchwork
2025-09-26 18:41 ` [PATCH 00/11] drm/{i915, xe}/stolen: " Ville Syrjälä
16 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-24 17:38 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 970 bytes --]
== Series Details ==
Series: drm/{i915,xe}/stolen: refactor and unify interfaces
URL : https://patchwork.freedesktop.org/series/154984/
State : success
== Summary ==
CI Bug Log - changes from xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf_BAT -> xe-pw-154984v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 9)
------------------------------
Missing (2): bat-adlp-vm bat-ptl-vm
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf -> xe-pw-154984v1
IGT_8550: 4f8c7886ad02e116804ec08714f17bce1755c6e4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf: a4d9163251f4832a7d34d4b59449f9a68b9b7adf
xe-pw-154984v1: 154984v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/index.html
[-- Attachment #2: Type: text/html, Size: 1518 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.Full: failure for drm/{i915,xe}/stolen: refactor and unify interfaces
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (14 preceding siblings ...)
2025-09-24 17:38 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-09-24 22:08 ` Patchwork
2025-09-26 18:41 ` [PATCH 00/11] drm/{i915, xe}/stolen: " Ville Syrjälä
16 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-24 22:08 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 51785 bytes --]
== Series Details ==
Series: drm/{i915,xe}/stolen: refactor and unify interfaces
URL : https://patchwork.freedesktop.org/series/154984/
State : failure
== Summary ==
CI Bug Log - changes from xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf_FULL -> xe-pw-154984v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-154984v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-154984v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-154984v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@plain-flip-ts-check:
- shard-bmg: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-5/igt@kms_flip@plain-flip-ts-check.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-4/igt@kms_flip@plain-flip-ts-check.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma}:
- shard-lnl: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
New tests
---------
New tests have been introduced between xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf_FULL and xe-pw-154984v1_FULL:
### New IGT tests (1) ###
* igt@xe_compute_preempt:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in xe-pw-154984v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][5] ([Intel XE#2594])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-433/igt@core_setmaster@master-drop-set-user.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-adlp: [PASS][6] -> [FAIL][7] ([Intel XE#3908]) +3 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-adlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-adlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#316]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +8 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#610])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2191])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#367])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#787]) +174 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +9 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2907])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#3442])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#455] / [Intel XE#787]) +36 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) +1 other test incomplete
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2325]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-1/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#306]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-433/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#373]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@legacy@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][27] ([Intel XE#1178])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_content_protection@legacy@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2341])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#1188]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1188])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-7/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2320]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2321])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#308])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#2291]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2286])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#1340])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#4494] / [i915#3804])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-434/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2244])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#776])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-464/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1135])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2316]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#5416])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [PASS][46] -> [FAIL][47] ([Intel XE#301])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#301])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#4543]) +5 other tests dmesg-warn
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-adlp-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-adlp-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#455]) +16 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-adlp: [PASS][54] -> [DMESG-FAIL][55] ([Intel XE#4543]) +1 other test dmesg-fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2311]) +15 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#651]) +27 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#5390]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2312]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#658])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2313]) +14 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#653]) +20 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-swap:
- shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#1503]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-8/igt@kms_hdr@static-swap.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@kms_hdr@static-swap.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#2925]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#616])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-434/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#5021])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#870])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-3/igt@kms_pm_backlight@bad-brightness.html
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#870])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1129])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2392])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#1489]) +8 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +10 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#2939])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-433/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#3414])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2330]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#3414] / [Intel XE#3904])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2413])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [FAIL][81] ([Intel XE#5890]) +1 other test fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1126])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eu_stall@invalid-event-report-count:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#5626]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-432/igt@xe_eu_stall@invalid-event-report-count.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#4837]) +10 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#4837]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@xe_eudebug_online@single-step.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#4518])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#1392]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-dg2-464/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2322]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1392])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#288]) +21 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2360])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_system_allocator@evict-malloc-mix-bo:
- shard-bmg: [PASS][93] -> [ABORT][94] ([Intel XE#3970])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-1/igt@xe_exec_system_allocator@evict-malloc-mix-bo.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-1/igt@xe_exec_system_allocator@evict-malloc-mix-bo.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#4915]) +214 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#4943]) +17 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset:
- shard-bmg: [PASS][97] -> [FAIL][98] ([Intel XE#4937])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#560])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-466/igt@xe_media_fill@media-fill.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#3573]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1337])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][102] ([Intel XE#1173])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-434/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2284])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2284] / [Intel XE#366])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-464/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#4733]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@xe_pxp@display-pxp-fb.html
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#4733])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#944])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#944]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@xe_query@multigpu-query-topology.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#4814])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-433/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: NOTRUN -> [DMESG-WARN][110] ([Intel XE#6190]) +2 other tests dmesg-warn
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#4130])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-464/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#4273])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [PASS][113] -> [DMESG-WARN][114] ([Intel XE#5213])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [PASS][115] -> [DMESG-FAIL][116] ([Intel XE#5213]) +1 other test dmesg-fail
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-adlp-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-adlp-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][117] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_cursor_legacy@cursora-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][119] ([Intel XE#5354]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [SKIP][121] ([Intel XE#2291]) -> [PASS][122] +3 other tests pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4:
- shard-dg2-set2: [INCOMPLETE][123] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][124] +1 other test pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][125] ([Intel XE#2316]) -> [PASS][126] +4 other tests pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [DMESG-WARN][127] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@plain-flip-interruptible@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][129] ([Intel XE#4543]) -> [PASS][130] +5 other tests pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-adlp-6/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-adlp-9/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
* igt@kms_plane_lowres@tiling-x:
- shard-adlp: [DMESG-WARN][131] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-adlp-2/igt@kms_plane_lowres@tiling-x.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-adlp-3/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][133] ([Intel XE#2571]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][135] ([Intel XE#2883]) -> [PASS][136] +2 other tests pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-dg2-set2: [SKIP][137] ([Intel XE#1392]) -> [PASS][138] +6 other tests pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* {igt@xe_exec_system_allocator@once-large-malloc-prefetch}:
- shard-bmg: [CRASH][139] ([Intel XE#6192]) -> [PASS][140] +6 other tests pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-1/igt@xe_exec_system_allocator@once-large-malloc-prefetch.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-8/igt@xe_exec_system_allocator@once-large-malloc-prefetch.html
* {igt@xe_exec_system_allocator@threads-many-execqueues-free-madvise}:
- shard-bmg: [INCOMPLETE][141] ([Intel XE#2594]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-execqueues-free-madvise.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-execqueues-free-madvise.html
* {igt@xe_exec_system_allocator@twice-large-new-prefetch}:
- shard-lnl: [CRASH][143] ([Intel XE#6192]) -> [PASS][144] +5 other tests pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-lnl-4/igt@xe_exec_system_allocator@twice-large-new-prefetch.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-lnl-5/igt@xe_exec_system_allocator@twice-large-new-prefetch.html
#### Warnings ####
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][145] ([Intel XE#1178]) -> [SKIP][146] ([Intel XE#2341])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-8/igt@kms_content_protection@atomic.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@legacy:
- shard-bmg: [SKIP][147] ([Intel XE#2341]) -> [FAIL][148] ([Intel XE#1178])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-6/igt@kms_content_protection@legacy.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][149] ([Intel XE#2341]) -> [FAIL][150] ([Intel XE#1188])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-6/igt@kms_content_protection@uevent.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-7/igt@kms_content_protection@uevent.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [SKIP][151] ([Intel XE#2316]) -> [FAIL][152] ([Intel XE#5416])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][153] ([Intel XE#4543]) -> [DMESG-WARN][154] ([Intel XE#2953] / [Intel XE#4173])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][155] ([Intel XE#2312]) -> [SKIP][156] ([Intel XE#5390]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][157] ([Intel XE#5390]) -> [SKIP][158] ([Intel XE#2312]) +7 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][159] ([Intel XE#2311]) -> [SKIP][160] ([Intel XE#2312]) +9 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][161] ([Intel XE#2312]) -> [SKIP][162] ([Intel XE#2311]) +8 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][163] ([Intel XE#2312]) -> [SKIP][164] ([Intel XE#2313]) +5 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][165] ([Intel XE#2313]) -> [SKIP][166] ([Intel XE#2312]) +13 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][167] ([Intel XE#2426]) -> [SKIP][168] ([Intel XE#2509])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1061]) -> [FAIL][170] ([Intel XE#1173])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-dg2-432/igt@xe_peer2peer@write.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-dg2-434/igt@xe_peer2peer@write.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: [DMESG-FAIL][171] ([Intel XE#5213] / [Intel XE#5545]) -> [DMESG-FAIL][172] ([Intel XE#5213]) +1 other test dmesg-fail
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf/shard-adlp-2/igt@xe_sriov_scheduling@equal-throughput.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/shard-adlp-3/igt@xe_sriov_scheduling@equal-throughput.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5416
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#6190]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6190
[Intel XE#6192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6192
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* Linux: xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf -> xe-pw-154984v1
IGT_8550: 4f8c7886ad02e116804ec08714f17bce1755c6e4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3825-a4d9163251f4832a7d34d4b59449f9a68b9b7adf: a4d9163251f4832a7d34d4b59449f9a68b9b7adf
xe-pw-154984v1: 154984v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154984v1/index.html
[-- Attachment #2: Type: text/html, Size: 58964 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 00/11] drm/{i915, xe}/stolen: refactor and unify interfaces
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
` (15 preceding siblings ...)
2025-09-24 22:08 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-09-26 18:41 ` Ville Syrjälä
2025-09-29 9:53 ` Jani Nikula
16 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjälä @ 2025-09-26 18:41 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
On Wed, Sep 24, 2025 at 07:43:29PM +0300, Jani Nikula wrote:
>
> Jani Nikula (11):
> drm/{i915,xe}/stolen: rename i915_stolen_fb to intel_stolen_node
> drm/xe/stolen: rename fb to node in stolen compat header
> drm/xe/stolen: convert compat stolen macros to inline functions
> drm/xe/stolen: switch from BUG_ON() to WARN_ON() in compat
> drm/i915/stolen: convert intel_stolen_node into a real struct of its
> own
> drm/xe/stolen: convert compat static inlines to proper functions
> drm/{i915,xe}/stolen: make struct intel_stolen_node opaque
> drm/{i915,xe}/stolen: add device pointer to struct intel_stolen_node
> drm/{i915,xe}/stolen: use the stored i915/xe device pointer
> drm/{i915,xe}/stolen: convert stolen interface to struct drm_device
> drm/xe/stolen: use the same types as i915 interface
Looks fine by me. Series is
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Side note: I have branch somewhere that replaces the raw
drm_mm_node FBC stuff with a real i915_gem_object. I used
that as a way to easily expose the CFB and LLB as files in
debugfs so that I could observe/modify the actual CFB contents.
I should look into making that official to help future FBC
debugging. With the abstraction layer I shouldn't even need
to touch the FBC code itself anymore...
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 00/11] drm/{i915, xe}/stolen: refactor and unify interfaces
2025-09-26 18:41 ` [PATCH 00/11] drm/{i915, xe}/stolen: " Ville Syrjälä
@ 2025-09-29 9:53 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-09-29 9:53 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx, intel-xe
On Fri, 26 Sep 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Wed, Sep 24, 2025 at 07:43:29PM +0300, Jani Nikula wrote:
>>
>> Jani Nikula (11):
>> drm/{i915,xe}/stolen: rename i915_stolen_fb to intel_stolen_node
>> drm/xe/stolen: rename fb to node in stolen compat header
>> drm/xe/stolen: convert compat stolen macros to inline functions
>> drm/xe/stolen: switch from BUG_ON() to WARN_ON() in compat
>> drm/i915/stolen: convert intel_stolen_node into a real struct of its
>> own
>> drm/xe/stolen: convert compat static inlines to proper functions
>> drm/{i915,xe}/stolen: make struct intel_stolen_node opaque
>> drm/{i915,xe}/stolen: add device pointer to struct intel_stolen_node
>> drm/{i915,xe}/stolen: use the stored i915/xe device pointer
>> drm/{i915,xe}/stolen: convert stolen interface to struct drm_device
>> drm/xe/stolen: use the same types as i915 interface
>
> Looks fine by me. Series is
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Thanks for the review, pushed to din.
> Side note: I have branch somewhere that replaces the raw
> drm_mm_node FBC stuff with a real i915_gem_object. I used
> that as a way to easily expose the CFB and LLB as files in
> debugfs so that I could observe/modify the actual CFB contents.
> I should look into making that official to help future FBC
> debugging. With the abstraction layer I shouldn't even need
> to touch the FBC code itself anymore...
Yay!
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2025-09-29 9:53 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-24 16:43 [PATCH 00/11] drm/{i915,xe}/stolen: refactor and unify interfaces Jani Nikula
2025-09-24 16:43 ` [PATCH 01/11] drm/{i915, xe}/stolen: rename i915_stolen_fb to intel_stolen_node Jani Nikula
2025-09-24 16:43 ` [PATCH 02/11] drm/xe/stolen: rename fb to node in stolen compat header Jani Nikula
2025-09-24 16:43 ` [PATCH 03/11] drm/xe/stolen: convert compat stolen macros to inline functions Jani Nikula
2025-09-24 16:43 ` [PATCH 04/11] drm/xe/stolen: switch from BUG_ON() to WARN_ON() in compat Jani Nikula
2025-09-24 16:43 ` [PATCH 05/11] drm/i915/stolen: convert intel_stolen_node into a real struct of its own Jani Nikula
2025-09-24 16:43 ` [PATCH 06/11] drm/xe/stolen: convert compat static inlines to proper functions Jani Nikula
2025-09-24 16:43 ` [PATCH 07/11] drm/{i915, xe}/stolen: make struct intel_stolen_node opaque Jani Nikula
2025-09-24 16:43 ` [PATCH 08/11] drm/{i915, xe}/stolen: add device pointer to struct intel_stolen_node Jani Nikula
2025-09-24 16:43 ` [PATCH 09/11] drm/{i915, xe}/stolen: use the stored i915/xe device pointer Jani Nikula
2025-09-24 16:43 ` [PATCH 10/11] drm/{i915, xe}/stolen: convert stolen interface to struct drm_device Jani Nikula
2025-09-24 16:43 ` [PATCH 11/11] drm/xe/stolen: use the same types as i915 interface Jani Nikula
2025-09-24 17:03 ` ✗ CI.checkpatch: warning for drm/{i915,xe}/stolen: refactor and unify interfaces Patchwork
2025-09-24 17:04 ` ✓ CI.KUnit: success " Patchwork
2025-09-24 17:19 ` ✗ CI.checksparse: warning " Patchwork
2025-09-24 17:38 ` ✓ Xe.CI.BAT: success " Patchwork
2025-09-24 22:08 ` ✗ Xe.CI.Full: failure " Patchwork
2025-09-26 18:41 ` [PATCH 00/11] drm/{i915, xe}/stolen: " Ville Syrjälä
2025-09-29 9:53 ` Jani Nikula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).