* [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions
@ 2025-12-12 14:14 Jani Nikula
2025-12-12 14:14 ` [PATCH 1/6] drm/intel: fix parent interface kernel-doc Jani Nikula
` (11 more replies)
0 siblings, 12 replies; 14+ messages in thread
From: Jani Nikula @ 2025-12-12 14:14 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula
Fix some issues spotted by Ville.
Jani Nikula (6):
drm/intel: fix parent interface kernel-doc
drm/intel: group individual funcs in parent interface
drm/intel: sort parent interface struct definitions and members
drm/i915: sort parent interface initialization
drm/xe: sort parent interface initialization
drm/i915/display: group and sort the parent interface wrappers better
drivers/gpu/drm/i915/display/intel_parent.c | 45 ++++++++-------
drivers/gpu/drm/i915/display/intel_parent.h | 13 +++--
drivers/gpu/drm/i915/i915_driver.c | 27 ++++-----
drivers/gpu/drm/xe/display/xe_display.c | 2 +-
include/drm/intel/display_parent_interface.h | 59 +++++++++++---------
5 files changed, 80 insertions(+), 66 deletions(-)
--
2.47.3
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 1/6] drm/intel: fix parent interface kernel-doc
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
@ 2025-12-12 14:14 ` Jani Nikula
2025-12-12 14:14 ` [PATCH 2/6] drm/intel: group individual funcs in parent interface Jani Nikula
` (10 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Jani Nikula @ 2025-12-12 14:14 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula
Fix some typos in the kernel-doc.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/intel/display_parent_interface.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 477ee9e735f9..87e26ee0ecbf 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -97,7 +97,7 @@ struct intel_display_parent_interface {
/** @panic: Panic interface */
const struct intel_display_panic_interface *panic;
- /** @rpm: RPS interface. Optional. */
+ /** @rps: RPS interface. Optional. */
const struct intel_display_rps_interface *rps;
/** @stolen: Stolen memory. */
@@ -112,7 +112,7 @@ struct intel_display_parent_interface {
/** @fence_priority_display: Set display priority. Optional. */
void (*fence_priority_display)(struct dma_fence *fence);
- /** @has_auxcss: Are AuxCCS formats supported by the parent. Optional. */
+ /** @has_auxccs: Are AuxCCS formats supported by the parent. Optional. */
bool (*has_auxccs)(struct drm_device *drm);
};
--
2.47.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 2/6] drm/intel: group individual funcs in parent interface
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
2025-12-12 14:14 ` [PATCH 1/6] drm/intel: fix parent interface kernel-doc Jani Nikula
@ 2025-12-12 14:14 ` Jani Nikula
2025-12-12 14:14 ` [PATCH 3/6] drm/intel: sort parent interface struct definitions and members Jani Nikula
` (9 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Jani Nikula @ 2025-12-12 14:14 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula
There are a handful of function pointers that don't really warrant a
dedicated sub-struct for the functionality. Group all of them together
in a single anonymous sub-struct.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
'git show -w' is easy to review
---
include/drm/intel/display_parent_interface.h | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 87e26ee0ecbf..5d4b9dc837d9 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -103,17 +103,20 @@ struct intel_display_parent_interface {
/** @stolen: Stolen memory. */
const struct intel_display_stolen_interface *stolen;
- /** @vgpu_active: Is vGPU active? Optional. */
- bool (*vgpu_active)(struct drm_device *drm);
+ /* Generic independent functions */
+ struct {
+ /** @vgpu_active: Is vGPU active? Optional. */
+ bool (*vgpu_active)(struct drm_device *drm);
- /** @has_fenced_regions: Support legacy fencing? Optional. */
- bool (*has_fenced_regions)(struct drm_device *drm);
+ /** @has_fenced_regions: Support legacy fencing? Optional. */
+ bool (*has_fenced_regions)(struct drm_device *drm);
- /** @fence_priority_display: Set display priority. Optional. */
- void (*fence_priority_display)(struct dma_fence *fence);
+ /** @fence_priority_display: Set display priority. Optional. */
+ void (*fence_priority_display)(struct dma_fence *fence);
- /** @has_auxccs: Are AuxCCS formats supported by the parent. Optional. */
- bool (*has_auxccs)(struct drm_device *drm);
+ /** @has_auxccs: Are AuxCCS formats supported by the parent. Optional. */
+ bool (*has_auxccs)(struct drm_device *drm);
+ };
};
#endif
--
2.47.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 3/6] drm/intel: sort parent interface struct definitions and members
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
2025-12-12 14:14 ` [PATCH 1/6] drm/intel: fix parent interface kernel-doc Jani Nikula
2025-12-12 14:14 ` [PATCH 2/6] drm/intel: group individual funcs in parent interface Jani Nikula
@ 2025-12-12 14:14 ` Jani Nikula
2025-12-12 14:14 ` [PATCH 4/6] drm/i915: sort parent interface initialization Jani Nikula
` (8 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Jani Nikula @ 2025-12-12 14:14 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula
Sort the parent interface struct definitions and members to improve
clarity on where to add new stuff.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
'git show --color-moved' is easy to review
---
include/drm/intel/display_parent_interface.h | 50 ++++++++++----------
1 file changed, 26 insertions(+), 24 deletions(-)
diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h
index 5d4b9dc837d9..55d4df714645 100644
--- a/include/drm/intel/display_parent_interface.h
+++ b/include/drm/intel/display_parent_interface.h
@@ -14,21 +14,7 @@ struct intel_panic;
struct intel_stolen_node;
struct ref_tracker;
-struct intel_display_rpm_interface {
- struct ref_tracker *(*get)(const struct drm_device *drm);
- struct ref_tracker *(*get_raw)(const struct drm_device *drm);
- struct ref_tracker *(*get_if_in_use)(const struct drm_device *drm);
- struct ref_tracker *(*get_noresume)(const struct drm_device *drm);
-
- void (*put)(const struct drm_device *drm, struct ref_tracker *wakeref);
- void (*put_raw)(const struct drm_device *drm, struct ref_tracker *wakeref);
- void (*put_unchecked)(const struct drm_device *drm);
-
- bool (*suspended)(const struct drm_device *drm);
- void (*assert_held)(const struct drm_device *drm);
- void (*assert_block)(const struct drm_device *drm);
- void (*assert_unblock)(const struct drm_device *drm);
-};
+/* Keep struct definitions sorted */
struct intel_display_hdcp_interface {
ssize_t (*gsc_msg_send)(struct intel_hdcp_gsc_context *gsc_context,
@@ -50,6 +36,22 @@ struct intel_display_panic_interface {
void (*finish)(struct intel_panic *panic);
};
+struct intel_display_rpm_interface {
+ struct ref_tracker *(*get)(const struct drm_device *drm);
+ struct ref_tracker *(*get_raw)(const struct drm_device *drm);
+ struct ref_tracker *(*get_if_in_use)(const struct drm_device *drm);
+ struct ref_tracker *(*get_noresume)(const struct drm_device *drm);
+
+ void (*put)(const struct drm_device *drm, struct ref_tracker *wakeref);
+ void (*put_raw)(const struct drm_device *drm, struct ref_tracker *wakeref);
+ void (*put_unchecked)(const struct drm_device *drm);
+
+ bool (*suspended)(const struct drm_device *drm);
+ void (*assert_held)(const struct drm_device *drm);
+ void (*assert_block)(const struct drm_device *drm);
+ void (*assert_unblock)(const struct drm_device *drm);
+};
+
struct intel_display_rps_interface {
void (*boost_if_not_started)(struct dma_fence *fence);
void (*mark_interactive)(struct drm_device *drm, bool interactive);
@@ -88,15 +90,15 @@ struct intel_display_parent_interface {
/** @hdcp: HDCP GSC interface */
const struct intel_display_hdcp_interface *hdcp;
- /** @rpm: Runtime PM functions */
- const struct intel_display_rpm_interface *rpm;
-
/** @irq: IRQ interface */
const struct intel_display_irq_interface *irq;
/** @panic: Panic interface */
const struct intel_display_panic_interface *panic;
+ /** @rpm: Runtime PM functions */
+ const struct intel_display_rpm_interface *rpm;
+
/** @rps: RPS interface. Optional. */
const struct intel_display_rps_interface *rps;
@@ -105,17 +107,17 @@ struct intel_display_parent_interface {
/* Generic independent functions */
struct {
- /** @vgpu_active: Is vGPU active? Optional. */
- bool (*vgpu_active)(struct drm_device *drm);
-
- /** @has_fenced_regions: Support legacy fencing? Optional. */
- bool (*has_fenced_regions)(struct drm_device *drm);
-
/** @fence_priority_display: Set display priority. Optional. */
void (*fence_priority_display)(struct dma_fence *fence);
/** @has_auxccs: Are AuxCCS formats supported by the parent. Optional. */
bool (*has_auxccs)(struct drm_device *drm);
+
+ /** @has_fenced_regions: Support legacy fencing? Optional. */
+ bool (*has_fenced_regions)(struct drm_device *drm);
+
+ /** @vgpu_active: Is vGPU active? Optional. */
+ bool (*vgpu_active)(struct drm_device *drm);
};
};
--
2.47.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 4/6] drm/i915: sort parent interface initialization
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
` (2 preceding siblings ...)
2025-12-12 14:14 ` [PATCH 3/6] drm/intel: sort parent interface struct definitions and members Jani Nikula
@ 2025-12-12 14:14 ` Jani Nikula
2025-12-12 14:14 ` [PATCH 5/6] drm/xe: " Jani Nikula
` (7 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Jani Nikula @ 2025-12-12 14:14 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula
Sort the member initializers to improve clarity. Separate individual
function initializers with a blank line in between.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/i915_driver.c | 27 ++++++++++++++-------------
1 file changed, 14 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index a341e2d46551..9bc5ef988be7 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -742,16 +742,6 @@ static void i915_welcome_messages(struct drm_i915_private *dev_priv)
"DRM_I915_DEBUG_RUNTIME_PM enabled\n");
}
-static bool vgpu_active(struct drm_device *drm)
-{
- return intel_vgpu_active(to_i915(drm));
-}
-
-static bool has_fenced_regions(struct drm_device *drm)
-{
- return intel_gt_support_legacy_fencing(to_gt(to_i915(drm)));
-}
-
static void fence_priority_display(struct dma_fence *fence)
{
if (dma_fence_is_i915(fence))
@@ -767,17 +757,28 @@ static bool has_auxccs(struct drm_device *drm)
IS_METEORLAKE(i915);
}
+static bool has_fenced_regions(struct drm_device *drm)
+{
+ return intel_gt_support_legacy_fencing(to_gt(to_i915(drm)));
+}
+
+static bool vgpu_active(struct drm_device *drm)
+{
+ return intel_vgpu_active(to_i915(drm));
+}
+
static const struct intel_display_parent_interface parent = {
.hdcp = &i915_display_hdcp_interface,
+ .irq = &i915_display_irq_interface,
.panic = &i915_display_panic_interface,
.rpm = &i915_display_rpm_interface,
- .irq = &i915_display_irq_interface,
.rps = &i915_display_rps_interface,
.stolen = &i915_display_stolen_interface,
- .vgpu_active = vgpu_active,
- .has_fenced_regions = has_fenced_regions,
+
.fence_priority_display = fence_priority_display,
.has_auxccs = has_auxccs,
+ .has_fenced_regions = has_fenced_regions,
+ .vgpu_active = vgpu_active,
};
const struct intel_display_parent_interface *i915_driver_parent_interface(void)
--
2.47.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 5/6] drm/xe: sort parent interface initialization
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
` (3 preceding siblings ...)
2025-12-12 14:14 ` [PATCH 4/6] drm/i915: sort parent interface initialization Jani Nikula
@ 2025-12-12 14:14 ` Jani Nikula
2025-12-12 14:14 ` [PATCH 6/6] drm/i915/display: group and sort the parent interface wrappers better Jani Nikula
` (6 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Jani Nikula @ 2025-12-12 14:14 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula
Sort the member initializers to improve clarity.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/xe/display/xe_display.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
index 56796cedbd06..eda65a05f601 100644
--- a/drivers/gpu/drm/xe/display/xe_display.c
+++ b/drivers/gpu/drm/xe/display/xe_display.c
@@ -538,9 +538,9 @@ static const struct intel_display_irq_interface xe_display_irq_interface = {
static const struct intel_display_parent_interface parent = {
.hdcp = &xe_display_hdcp_interface,
+ .irq = &xe_display_irq_interface,
.panic = &xe_display_panic_interface,
.rpm = &xe_display_rpm_interface,
- .irq = &xe_display_irq_interface,
.stolen = &xe_display_stolen_interface,
};
--
2.47.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 6/6] drm/i915/display: group and sort the parent interface wrappers better
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
` (4 preceding siblings ...)
2025-12-12 14:14 ` [PATCH 5/6] drm/xe: " Jani Nikula
@ 2025-12-12 14:14 ` Jani Nikula
2025-12-12 14:23 ` ✗ CI.checkpatch: warning for drm/{i915,xe}: clean up parent interface definitions Patchwork
` (5 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Jani Nikula @ 2025-12-12 14:14 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, jani.nikula
Aligning with the parent interface struct definitions, also group and
sort the parent interface wrappers to improve clarity on where to add
new stuff.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_parent.c | 45 ++++++++++++---------
drivers/gpu/drm/i915/display/intel_parent.h | 13 +++---
2 files changed, 33 insertions(+), 25 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c
index d1c2194767e7..9b1a84a439e9 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.c
+++ b/drivers/gpu/drm/i915/display/intel_parent.c
@@ -23,6 +23,7 @@
#include "intel_display_core.h"
#include "intel_parent.h"
+/* hdcp */
ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display *display,
struct intel_hdcp_gsc_context *gsc_context,
void *msg_in, size_t msg_in_len,
@@ -47,31 +48,34 @@ void intel_parent_hdcp_gsc_context_free(struct intel_display *display,
display->parent->hdcp->gsc_context_free(gsc_context);
}
-struct intel_panic *intel_parent_panic_alloc(struct intel_display *display)
+/* irq */
+bool intel_parent_irq_enabled(struct intel_display *display)
{
- return display->parent->panic->alloc();
+ return display->parent->irq->enabled(display->drm);
}
-int intel_parent_panic_setup(struct intel_display *display, struct intel_panic *panic, struct drm_scanout_buffer *sb)
+void intel_parent_irq_synchronize(struct intel_display *display)
{
- return display->parent->panic->setup(panic, sb);
+ display->parent->irq->synchronize(display->drm);
}
-void intel_parent_panic_finish(struct intel_display *display, struct intel_panic *panic)
+/* panic */
+struct intel_panic *intel_parent_panic_alloc(struct intel_display *display)
{
- display->parent->panic->finish(panic);
+ return display->parent->panic->alloc();
}
-bool intel_parent_irq_enabled(struct intel_display *display)
+int intel_parent_panic_setup(struct intel_display *display, struct intel_panic *panic, struct drm_scanout_buffer *sb)
{
- return display->parent->irq->enabled(display->drm);
+ return display->parent->panic->setup(panic, sb);
}
-void intel_parent_irq_synchronize(struct intel_display *display)
+void intel_parent_panic_finish(struct intel_display *display, struct intel_panic *panic)
{
- display->parent->irq->synchronize(display->drm);
+ display->parent->panic->finish(panic);
}
+/* rps */
bool intel_parent_rps_available(struct intel_display *display)
{
return display->parent->rps;
@@ -95,6 +99,7 @@ void intel_parent_rps_ilk_irq_handler(struct intel_display *display)
display->parent->rps->ilk_irq_handler(display->drm);
}
+/* stolen */
int intel_parent_stolen_insert_node_in_range(struct intel_display *display,
struct intel_stolen_node *node, u64 size,
unsigned int align, u64 start, u64 end)
@@ -169,24 +174,24 @@ void intel_parent_stolen_node_free(struct intel_display *display, const struct i
display->parent->stolen->node_free(node);
}
-
-bool intel_parent_vgpu_active(struct intel_display *display)
+/* generic */
+void intel_parent_fence_priority_display(struct intel_display *display, struct dma_fence *fence)
{
- return display->parent->vgpu_active && display->parent->vgpu_active(display->drm);
+ if (display->parent->fence_priority_display)
+ display->parent->fence_priority_display(fence);
}
-bool intel_parent_has_fenced_regions(struct intel_display *display)
+bool intel_parent_has_auxccs(struct intel_display *display)
{
- return display->parent->has_fenced_regions && display->parent->has_fenced_regions(display->drm);
+ return display->parent->has_auxccs && display->parent->has_auxccs(display->drm);
}
-void intel_parent_fence_priority_display(struct intel_display *display, struct dma_fence *fence)
+bool intel_parent_has_fenced_regions(struct intel_display *display)
{
- if (display->parent->fence_priority_display)
- display->parent->fence_priority_display(fence);
+ return display->parent->has_fenced_regions && display->parent->has_fenced_regions(display->drm);
}
-bool intel_parent_has_auxccs(struct intel_display *display)
+bool intel_parent_vgpu_active(struct intel_display *display)
{
- return display->parent->has_auxccs && display->parent->has_auxccs(display->drm);
+ return display->parent->vgpu_active && display->parent->vgpu_active(display->drm);
}
diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h
index 8cd811d14fb1..a2a631fba118 100644
--- a/drivers/gpu/drm/i915/display/intel_parent.h
+++ b/drivers/gpu/drm/i915/display/intel_parent.h
@@ -13,6 +13,7 @@ struct intel_hdcp_gsc_context;
struct intel_panic;
struct intel_stolen_node;
+/* hdcp */
ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display *display,
struct intel_hdcp_gsc_context *gsc_context,
void *msg_in, size_t msg_in_len,
@@ -22,18 +23,22 @@ struct intel_hdcp_gsc_context *intel_parent_hdcp_gsc_context_alloc(struct intel_
void intel_parent_hdcp_gsc_context_free(struct intel_display *display,
struct intel_hdcp_gsc_context *gsc_context);
+/* irq */
bool intel_parent_irq_enabled(struct intel_display *display);
void intel_parent_irq_synchronize(struct intel_display *display);
+/* panic */
struct intel_panic *intel_parent_panic_alloc(struct intel_display *display);
int intel_parent_panic_setup(struct intel_display *display, struct intel_panic *panic, struct drm_scanout_buffer *sb);
void intel_parent_panic_finish(struct intel_display *display, struct intel_panic *panic);
+/* rps */
bool intel_parent_rps_available(struct intel_display *display);
void intel_parent_rps_boost_if_not_started(struct intel_display *display, struct dma_fence *fence);
void intel_parent_rps_mark_interactive(struct intel_display *display, bool interactive);
void intel_parent_rps_ilk_irq_handler(struct intel_display *display);
+/* stolen */
int intel_parent_stolen_insert_node_in_range(struct intel_display *display,
struct intel_stolen_node *node, u64 size,
unsigned int align, u64 start, u64 end);
@@ -52,12 +57,10 @@ u64 intel_parent_stolen_node_size(struct intel_display *display, const struct in
struct intel_stolen_node *intel_parent_stolen_node_alloc(struct intel_display *display);
void intel_parent_stolen_node_free(struct intel_display *display, const struct intel_stolen_node *node);
-bool intel_parent_vgpu_active(struct intel_display *display);
-
+/* generic */
+bool intel_parent_has_auxccs(struct intel_display *display);
bool intel_parent_has_fenced_regions(struct intel_display *display);
-
+bool intel_parent_vgpu_active(struct intel_display *display);
void intel_parent_fence_priority_display(struct intel_display *display, struct dma_fence *fence);
-bool intel_parent_has_auxccs(struct intel_display *display);
-
#endif /* __INTEL_PARENT_H__ */
--
2.47.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✗ CI.checkpatch: warning for drm/{i915,xe}: clean up parent interface definitions
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
` (5 preceding siblings ...)
2025-12-12 14:14 ` [PATCH 6/6] drm/i915/display: group and sort the parent interface wrappers better Jani Nikula
@ 2025-12-12 14:23 ` Patchwork
2025-12-12 14:24 ` ✓ CI.KUnit: success " Patchwork
` (4 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-12-12 14:23 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/{i915,xe}: clean up parent interface definitions
URL : https://patchwork.freedesktop.org/series/158862/
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
8f50e69d0ce3656564bbdf8b3e213d61470d463f
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 17666960df2eb4ae441025caae08561dc0397350
Author: Jani Nikula <jani.nikula@intel.com>
Date: Fri Dec 12 16:14:09 2025 +0200
drm/i915/display: group and sort the parent interface wrappers better
Aligning with the parent interface struct definitions, also group and
sort the parent interface wrappers to improve clarity on where to add
new stuff.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch 39f65c105d5b1af093f9df6f3dc688a642f96456 drm-intel
c59db7662605 drm/intel: fix parent interface kernel-doc
2e9bb09fdd37 drm/intel: group individual funcs in parent interface
2f90b70842dd drm/intel: sort parent interface struct definitions and members
322f75b240f9 drm/i915: sort parent interface initialization
22582831961c drm/xe: sort parent interface initialization
17666960df2e drm/i915/display: group and sort the parent interface wrappers better
-:53: WARNING:LONG_LINE: line length of 117 exceeds 100 columns
#53: FILE: drivers/gpu/drm/i915/display/intel_parent.c:68:
+int intel_parent_panic_setup(struct intel_display *display, struct intel_panic *panic, struct drm_scanout_buffer *sb)
-:104: WARNING:LONG_LINE: line length of 104 exceeds 100 columns
#104: FILE: drivers/gpu/drm/i915/display/intel_parent.c:191:
+ return display->parent->has_fenced_regions && display->parent->has_fenced_regions(display->drm);
total: 0 errors, 2 warnings, 0 checks, 136 lines checked
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for drm/{i915,xe}: clean up parent interface definitions
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
` (6 preceding siblings ...)
2025-12-12 14:23 ` ✗ CI.checkpatch: warning for drm/{i915,xe}: clean up parent interface definitions Patchwork
@ 2025-12-12 14:24 ` Patchwork
2025-12-12 14:46 ` [PATCH 0/6] " Ville Syrjälä
` (3 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-12-12 14:24 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/{i915,xe}: clean up parent interface definitions
URL : https://patchwork.freedesktop.org/series/158862/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:23:04] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:23:08] 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
[14:23:40] Starting KUnit Kernel (1/1)...
[14:23:40] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:23:40] ================== guc_buf (11 subtests) ===================
[14:23:40] [PASSED] test_smallest
[14:23:40] [PASSED] test_largest
[14:23:40] [PASSED] test_granular
[14:23:40] [PASSED] test_unique
[14:23:40] [PASSED] test_overlap
[14:23:40] [PASSED] test_reusable
[14:23:40] [PASSED] test_too_big
[14:23:40] [PASSED] test_flush
[14:23:40] [PASSED] test_lookup
[14:23:40] [PASSED] test_data
[14:23:40] [PASSED] test_class
[14:23:40] ===================== [PASSED] guc_buf =====================
[14:23:40] =================== guc_dbm (7 subtests) ===================
[14:23:40] [PASSED] test_empty
[14:23:40] [PASSED] test_default
[14:23:40] ======================== test_size ========================
[14:23:40] [PASSED] 4
[14:23:40] [PASSED] 8
[14:23:40] [PASSED] 32
[14:23:40] [PASSED] 256
[14:23:40] ==================== [PASSED] test_size ====================
[14:23:40] ======================= test_reuse ========================
[14:23:40] [PASSED] 4
[14:23:40] [PASSED] 8
[14:23:40] [PASSED] 32
[14:23:40] [PASSED] 256
[14:23:40] =================== [PASSED] test_reuse ====================
[14:23:40] =================== test_range_overlap ====================
[14:23:40] [PASSED] 4
[14:23:40] [PASSED] 8
[14:23:40] [PASSED] 32
[14:23:40] [PASSED] 256
[14:23:40] =============== [PASSED] test_range_overlap ================
[14:23:40] =================== test_range_compact ====================
[14:23:40] [PASSED] 4
[14:23:40] [PASSED] 8
[14:23:40] [PASSED] 32
[14:23:40] [PASSED] 256
[14:23:40] =============== [PASSED] test_range_compact ================
[14:23:40] ==================== test_range_spare =====================
[14:23:40] [PASSED] 4
[14:23:40] [PASSED] 8
[14:23:40] [PASSED] 32
[14:23:40] [PASSED] 256
[14:23:40] ================ [PASSED] test_range_spare =================
[14:23:40] ===================== [PASSED] guc_dbm =====================
[14:23:40] =================== guc_idm (6 subtests) ===================
[14:23:40] [PASSED] bad_init
[14:23:40] [PASSED] no_init
[14:23:40] [PASSED] init_fini
[14:23:40] [PASSED] check_used
[14:23:40] [PASSED] check_quota
[14:23:40] [PASSED] check_all
[14:23:40] ===================== [PASSED] guc_idm =====================
[14:23:40] ================== no_relay (3 subtests) ===================
[14:23:40] [PASSED] xe_drops_guc2pf_if_not_ready
[14:23:40] [PASSED] xe_drops_guc2vf_if_not_ready
[14:23:40] [PASSED] xe_rejects_send_if_not_ready
[14:23:40] ==================== [PASSED] no_relay =====================
[14:23:40] ================== pf_relay (14 subtests) ==================
[14:23:40] [PASSED] pf_rejects_guc2pf_too_short
[14:23:40] [PASSED] pf_rejects_guc2pf_too_long
[14:23:40] [PASSED] pf_rejects_guc2pf_no_payload
[14:23:40] [PASSED] pf_fails_no_payload
[14:23:40] [PASSED] pf_fails_bad_origin
[14:23:40] [PASSED] pf_fails_bad_type
[14:23:40] [PASSED] pf_txn_reports_error
[14:23:40] [PASSED] pf_txn_sends_pf2guc
[14:23:40] [PASSED] pf_sends_pf2guc
[14:23:40] [SKIPPED] pf_loopback_nop
[14:23:40] [SKIPPED] pf_loopback_echo
[14:23:40] [SKIPPED] pf_loopback_fail
[14:23:40] [SKIPPED] pf_loopback_busy
[14:23:40] [SKIPPED] pf_loopback_retry
[14:23:40] ==================== [PASSED] pf_relay =====================
[14:23:40] ================== vf_relay (3 subtests) ===================
[14:23:40] [PASSED] vf_rejects_guc2vf_too_short
[14:23:40] [PASSED] vf_rejects_guc2vf_too_long
[14:23:40] [PASSED] vf_rejects_guc2vf_no_payload
[14:23:40] ==================== [PASSED] vf_relay =====================
[14:23:40] ================ pf_gt_config (6 subtests) =================
[14:23:40] [PASSED] fair_contexts_1vf
[14:23:40] [PASSED] fair_doorbells_1vf
[14:23:40] [PASSED] fair_ggtt_1vf
[14:23:40] ====================== fair_contexts ======================
[14:23:40] [PASSED] 1 VF
[14:23:40] [PASSED] 2 VFs
[14:23:40] [PASSED] 3 VFs
[14:23:40] [PASSED] 4 VFs
[14:23:40] [PASSED] 5 VFs
[14:23:40] [PASSED] 6 VFs
[14:23:40] [PASSED] 7 VFs
[14:23:40] [PASSED] 8 VFs
[14:23:40] [PASSED] 9 VFs
[14:23:40] [PASSED] 10 VFs
[14:23:40] [PASSED] 11 VFs
[14:23:40] [PASSED] 12 VFs
[14:23:40] [PASSED] 13 VFs
[14:23:40] [PASSED] 14 VFs
[14:23:40] [PASSED] 15 VFs
[14:23:40] [PASSED] 16 VFs
[14:23:40] [PASSED] 17 VFs
[14:23:40] [PASSED] 18 VFs
[14:23:40] [PASSED] 19 VFs
[14:23:40] [PASSED] 20 VFs
[14:23:40] [PASSED] 21 VFs
[14:23:40] [PASSED] 22 VFs
[14:23:40] [PASSED] 23 VFs
[14:23:40] [PASSED] 24 VFs
[14:23:40] [PASSED] 25 VFs
[14:23:40] [PASSED] 26 VFs
[14:23:40] [PASSED] 27 VFs
[14:23:40] [PASSED] 28 VFs
[14:23:40] [PASSED] 29 VFs
[14:23:40] [PASSED] 30 VFs
[14:23:40] [PASSED] 31 VFs
[14:23:40] [PASSED] 32 VFs
[14:23:40] [PASSED] 33 VFs
[14:23:40] [PASSED] 34 VFs
[14:23:40] [PASSED] 35 VFs
[14:23:40] [PASSED] 36 VFs
[14:23:40] [PASSED] 37 VFs
[14:23:40] [PASSED] 38 VFs
[14:23:40] [PASSED] 39 VFs
[14:23:40] [PASSED] 40 VFs
[14:23:40] [PASSED] 41 VFs
[14:23:40] [PASSED] 42 VFs
[14:23:40] [PASSED] 43 VFs
[14:23:40] [PASSED] 44 VFs
[14:23:40] [PASSED] 45 VFs
[14:23:40] [PASSED] 46 VFs
[14:23:40] [PASSED] 47 VFs
[14:23:40] [PASSED] 48 VFs
[14:23:40] [PASSED] 49 VFs
[14:23:40] [PASSED] 50 VFs
[14:23:40] [PASSED] 51 VFs
[14:23:40] [PASSED] 52 VFs
[14:23:40] [PASSED] 53 VFs
[14:23:40] [PASSED] 54 VFs
[14:23:40] [PASSED] 55 VFs
[14:23:40] [PASSED] 56 VFs
[14:23:40] [PASSED] 57 VFs
[14:23:40] [PASSED] 58 VFs
[14:23:40] [PASSED] 59 VFs
[14:23:40] [PASSED] 60 VFs
[14:23:40] [PASSED] 61 VFs
[14:23:40] [PASSED] 62 VFs
[14:23:40] [PASSED] 63 VFs
[14:23:40] ================== [PASSED] fair_contexts ==================
[14:23:40] ===================== fair_doorbells ======================
[14:23:40] [PASSED] 1 VF
[14:23:40] [PASSED] 2 VFs
[14:23:40] [PASSED] 3 VFs
[14:23:40] [PASSED] 4 VFs
[14:23:40] [PASSED] 5 VFs
[14:23:40] [PASSED] 6 VFs
[14:23:40] [PASSED] 7 VFs
[14:23:40] [PASSED] 8 VFs
[14:23:40] [PASSED] 9 VFs
[14:23:40] [PASSED] 10 VFs
[14:23:40] [PASSED] 11 VFs
[14:23:40] [PASSED] 12 VFs
[14:23:40] [PASSED] 13 VFs
[14:23:40] [PASSED] 14 VFs
[14:23:40] [PASSED] 15 VFs
[14:23:40] [PASSED] 16 VFs
[14:23:40] [PASSED] 17 VFs
[14:23:40] [PASSED] 18 VFs
[14:23:40] [PASSED] 19 VFs
[14:23:40] [PASSED] 20 VFs
[14:23:40] [PASSED] 21 VFs
[14:23:40] [PASSED] 22 VFs
[14:23:40] [PASSED] 23 VFs
[14:23:40] [PASSED] 24 VFs
[14:23:40] [PASSED] 25 VFs
[14:23:40] [PASSED] 26 VFs
[14:23:40] [PASSED] 27 VFs
[14:23:40] [PASSED] 28 VFs
[14:23:40] [PASSED] 29 VFs
[14:23:40] [PASSED] 30 VFs
[14:23:40] [PASSED] 31 VFs
[14:23:40] [PASSED] 32 VFs
[14:23:40] [PASSED] 33 VFs
[14:23:40] [PASSED] 34 VFs
[14:23:40] [PASSED] 35 VFs
[14:23:40] [PASSED] 36 VFs
[14:23:40] [PASSED] 37 VFs
[14:23:40] [PASSED] 38 VFs
[14:23:40] [PASSED] 39 VFs
[14:23:40] [PASSED] 40 VFs
[14:23:40] [PASSED] 41 VFs
[14:23:40] [PASSED] 42 VFs
[14:23:40] [PASSED] 43 VFs
[14:23:40] [PASSED] 44 VFs
[14:23:40] [PASSED] 45 VFs
[14:23:40] [PASSED] 46 VFs
[14:23:40] [PASSED] 47 VFs
[14:23:40] [PASSED] 48 VFs
[14:23:40] [PASSED] 49 VFs
[14:23:40] [PASSED] 50 VFs
[14:23:40] [PASSED] 51 VFs
[14:23:40] [PASSED] 52 VFs
[14:23:40] [PASSED] 53 VFs
[14:23:40] [PASSED] 54 VFs
[14:23:40] [PASSED] 55 VFs
[14:23:40] [PASSED] 56 VFs
[14:23:40] [PASSED] 57 VFs
[14:23:40] [PASSED] 58 VFs
[14:23:40] [PASSED] 59 VFs
[14:23:40] [PASSED] 60 VFs
[14:23:40] [PASSED] 61 VFs
[14:23:40] [PASSED] 62 VFs
[14:23:40] [PASSED] 63 VFs
[14:23:40] ================= [PASSED] fair_doorbells ==================
[14:23:40] ======================== fair_ggtt ========================
[14:23:40] [PASSED] 1 VF
[14:23:40] [PASSED] 2 VFs
[14:23:40] [PASSED] 3 VFs
[14:23:40] [PASSED] 4 VFs
[14:23:40] [PASSED] 5 VFs
[14:23:40] [PASSED] 6 VFs
[14:23:40] [PASSED] 7 VFs
[14:23:40] [PASSED] 8 VFs
[14:23:40] [PASSED] 9 VFs
[14:23:40] [PASSED] 10 VFs
[14:23:40] [PASSED] 11 VFs
[14:23:40] [PASSED] 12 VFs
[14:23:40] [PASSED] 13 VFs
[14:23:40] [PASSED] 14 VFs
[14:23:40] [PASSED] 15 VFs
[14:23:40] [PASSED] 16 VFs
[14:23:40] [PASSED] 17 VFs
[14:23:40] [PASSED] 18 VFs
[14:23:40] [PASSED] 19 VFs
[14:23:40] [PASSED] 20 VFs
[14:23:40] [PASSED] 21 VFs
[14:23:40] [PASSED] 22 VFs
[14:23:40] [PASSED] 23 VFs
[14:23:40] [PASSED] 24 VFs
[14:23:40] [PASSED] 25 VFs
[14:23:40] [PASSED] 26 VFs
[14:23:40] [PASSED] 27 VFs
[14:23:40] [PASSED] 28 VFs
[14:23:40] [PASSED] 29 VFs
[14:23:40] [PASSED] 30 VFs
[14:23:40] [PASSED] 31 VFs
[14:23:40] [PASSED] 32 VFs
[14:23:40] [PASSED] 33 VFs
[14:23:40] [PASSED] 34 VFs
[14:23:40] [PASSED] 35 VFs
[14:23:40] [PASSED] 36 VFs
[14:23:40] [PASSED] 37 VFs
[14:23:40] [PASSED] 38 VFs
[14:23:40] [PASSED] 39 VFs
[14:23:40] [PASSED] 40 VFs
[14:23:40] [PASSED] 41 VFs
[14:23:40] [PASSED] 42 VFs
[14:23:40] [PASSED] 43 VFs
[14:23:40] [PASSED] 44 VFs
[14:23:40] [PASSED] 45 VFs
[14:23:40] [PASSED] 46 VFs
[14:23:40] [PASSED] 47 VFs
[14:23:40] [PASSED] 48 VFs
[14:23:40] [PASSED] 49 VFs
[14:23:40] [PASSED] 50 VFs
[14:23:40] [PASSED] 51 VFs
[14:23:40] [PASSED] 52 VFs
[14:23:40] [PASSED] 53 VFs
[14:23:40] [PASSED] 54 VFs
[14:23:40] [PASSED] 55 VFs
[14:23:40] [PASSED] 56 VFs
[14:23:40] [PASSED] 57 VFs
[14:23:40] [PASSED] 58 VFs
[14:23:40] [PASSED] 59 VFs
[14:23:40] [PASSED] 60 VFs
[14:23:40] [PASSED] 61 VFs
[14:23:40] [PASSED] 62 VFs
[14:23:40] [PASSED] 63 VFs
[14:23:40] ==================== [PASSED] fair_ggtt ====================
[14:23:40] ================== [PASSED] pf_gt_config ===================
[14:23:40] ===================== lmtt (1 subtest) =====================
[14:23:40] ======================== test_ops =========================
[14:23:40] [PASSED] 2-level
[14:23:40] [PASSED] multi-level
[14:23:40] ==================== [PASSED] test_ops =====================
[14:23:40] ====================== [PASSED] lmtt =======================
[14:23:40] ================= pf_service (11 subtests) =================
[14:23:40] [PASSED] pf_negotiate_any
[14:23:40] [PASSED] pf_negotiate_base_match
[14:23:40] [PASSED] pf_negotiate_base_newer
[14:23:40] [PASSED] pf_negotiate_base_next
[14:23:40] [SKIPPED] pf_negotiate_base_older
[14:23:40] [PASSED] pf_negotiate_base_prev
[14:23:40] [PASSED] pf_negotiate_latest_match
[14:23:40] [PASSED] pf_negotiate_latest_newer
[14:23:40] [PASSED] pf_negotiate_latest_next
[14:23:40] [SKIPPED] pf_negotiate_latest_older
[14:23:40] [SKIPPED] pf_negotiate_latest_prev
[14:23:40] =================== [PASSED] pf_service ====================
[14:23:40] ================= xe_guc_g2g (2 subtests) ==================
[14:23:40] ============== xe_live_guc_g2g_kunit_default ==============
[14:23:40] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:23:40] ============== xe_live_guc_g2g_kunit_allmem ===============
[14:23:40] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:23:40] =================== [SKIPPED] xe_guc_g2g ===================
[14:23:40] =================== xe_mocs (2 subtests) ===================
[14:23:40] ================ xe_live_mocs_kernel_kunit ================
[14:23:40] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:23:40] ================ xe_live_mocs_reset_kunit =================
[14:23:40] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:23:40] ==================== [SKIPPED] xe_mocs =====================
[14:23:40] ================= xe_migrate (2 subtests) ==================
[14:23:40] ================= xe_migrate_sanity_kunit =================
[14:23:40] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:23:40] ================== xe_validate_ccs_kunit ==================
[14:23:40] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:23:40] =================== [SKIPPED] xe_migrate ===================
[14:23:40] ================== xe_dma_buf (1 subtest) ==================
[14:23:40] ==================== xe_dma_buf_kunit =====================
[14:23:40] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:23:40] =================== [SKIPPED] xe_dma_buf ===================
[14:23:40] ================= xe_bo_shrink (1 subtest) =================
[14:23:40] =================== xe_bo_shrink_kunit ====================
[14:23:40] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:23:40] ================== [SKIPPED] xe_bo_shrink ==================
[14:23:40] ==================== xe_bo (2 subtests) ====================
[14:23:40] ================== xe_ccs_migrate_kunit ===================
[14:23:40] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:23:40] ==================== xe_bo_evict_kunit ====================
[14:23:40] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:23:40] ===================== [SKIPPED] xe_bo ======================
[14:23:40] ==================== args (11 subtests) ====================
[14:23:40] [PASSED] count_args_test
[14:23:40] [PASSED] call_args_example
[14:23:40] [PASSED] call_args_test
[14:23:40] [PASSED] drop_first_arg_example
[14:23:40] [PASSED] drop_first_arg_test
[14:23:40] [PASSED] first_arg_example
[14:23:40] [PASSED] first_arg_test
[14:23:40] [PASSED] last_arg_example
[14:23:40] [PASSED] last_arg_test
[14:23:40] [PASSED] pick_arg_example
[14:23:40] [PASSED] sep_comma_example
[14:23:40] ====================== [PASSED] args =======================
[14:23:40] =================== xe_pci (3 subtests) ====================
[14:23:40] ==================== check_graphics_ip ====================
[14:23:40] [PASSED] 12.00 Xe_LP
[14:23:40] [PASSED] 12.10 Xe_LP+
[14:23:40] [PASSED] 12.55 Xe_HPG
[14:23:40] [PASSED] 12.60 Xe_HPC
[14:23:40] [PASSED] 12.70 Xe_LPG
[14:23:40] [PASSED] 12.71 Xe_LPG
[14:23:40] [PASSED] 12.74 Xe_LPG+
[14:23:40] [PASSED] 20.01 Xe2_HPG
[14:23:40] [PASSED] 20.02 Xe2_HPG
[14:23:40] [PASSED] 20.04 Xe2_LPG
[14:23:40] [PASSED] 30.00 Xe3_LPG
[14:23:40] [PASSED] 30.01 Xe3_LPG
[14:23:40] [PASSED] 30.03 Xe3_LPG
[14:23:40] [PASSED] 30.04 Xe3_LPG
[14:23:40] [PASSED] 30.05 Xe3_LPG
[14:23:40] [PASSED] 35.11 Xe3p_XPC
[14:23:40] ================ [PASSED] check_graphics_ip ================
[14:23:40] ===================== check_media_ip ======================
[14:23:40] [PASSED] 12.00 Xe_M
[14:23:40] [PASSED] 12.55 Xe_HPM
[14:23:40] [PASSED] 13.00 Xe_LPM+
[14:23:40] [PASSED] 13.01 Xe2_HPM
[14:23:40] [PASSED] 20.00 Xe2_LPM
[14:23:40] [PASSED] 30.00 Xe3_LPM
[14:23:40] [PASSED] 30.02 Xe3_LPM
[14:23:40] [PASSED] 35.00 Xe3p_LPM
[14:23:40] [PASSED] 35.03 Xe3p_HPM
[14:23:40] ================= [PASSED] check_media_ip ==================
[14:23:40] =================== check_platform_desc ===================
[14:23:40] [PASSED] 0x9A60 (TIGERLAKE)
[14:23:40] [PASSED] 0x9A68 (TIGERLAKE)
[14:23:40] [PASSED] 0x9A70 (TIGERLAKE)
[14:23:40] [PASSED] 0x9A40 (TIGERLAKE)
[14:23:40] [PASSED] 0x9A49 (TIGERLAKE)
[14:23:40] [PASSED] 0x9A59 (TIGERLAKE)
[14:23:40] [PASSED] 0x9A78 (TIGERLAKE)
[14:23:40] [PASSED] 0x9AC0 (TIGERLAKE)
[14:23:40] [PASSED] 0x9AC9 (TIGERLAKE)
[14:23:40] [PASSED] 0x9AD9 (TIGERLAKE)
[14:23:40] [PASSED] 0x9AF8 (TIGERLAKE)
[14:23:40] [PASSED] 0x4C80 (ROCKETLAKE)
[14:23:40] [PASSED] 0x4C8A (ROCKETLAKE)
[14:23:40] [PASSED] 0x4C8B (ROCKETLAKE)
[14:23:40] [PASSED] 0x4C8C (ROCKETLAKE)
[14:23:40] [PASSED] 0x4C90 (ROCKETLAKE)
[14:23:40] [PASSED] 0x4C9A (ROCKETLAKE)
[14:23:40] [PASSED] 0x4680 (ALDERLAKE_S)
[14:23:40] [PASSED] 0x4682 (ALDERLAKE_S)
[14:23:40] [PASSED] 0x4688 (ALDERLAKE_S)
[14:23:40] [PASSED] 0x468A (ALDERLAKE_S)
[14:23:40] [PASSED] 0x468B (ALDERLAKE_S)
[14:23:40] [PASSED] 0x4690 (ALDERLAKE_S)
[14:23:40] [PASSED] 0x4692 (ALDERLAKE_S)
[14:23:40] [PASSED] 0x4693 (ALDERLAKE_S)
[14:23:40] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46AA (ALDERLAKE_P)
[14:23:40] [PASSED] 0x462A (ALDERLAKE_P)
[14:23:40] [PASSED] 0x4626 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x4628 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[14:23:40] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:23:40] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:23:40] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:23:40] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:23:40] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:23:40] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:23:40] [PASSED] 0xA721 (ALDERLAKE_P)
[14:23:40] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:23:40] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:23:40] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:23:40] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:23:40] [PASSED] 0xA720 (ALDERLAKE_P)
[14:23:40] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:23:40] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:23:40] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:23:40] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:23:40] [PASSED] 0xA780 (ALDERLAKE_S)
[14:23:40] [PASSED] 0xA781 (ALDERLAKE_S)
[14:23:40] [PASSED] 0xA782 (ALDERLAKE_S)
[14:23:40] [PASSED] 0xA783 (ALDERLAKE_S)
[14:23:40] [PASSED] 0xA788 (ALDERLAKE_S)
[14:23:40] [PASSED] 0xA789 (ALDERLAKE_S)
[14:23:40] [PASSED] 0xA78A (ALDERLAKE_S)
[14:23:40] [PASSED] 0xA78B (ALDERLAKE_S)
[14:23:40] [PASSED] 0x4905 (DG1)
[14:23:40] [PASSED] 0x4906 (DG1)
[14:23:40] [PASSED] 0x4907 (DG1)
[14:23:40] [PASSED] 0x4908 (DG1)
[14:23:40] [PASSED] 0x4909 (DG1)
[14:23:40] [PASSED] 0x56C0 (DG2)
[14:23:40] [PASSED] 0x56C2 (DG2)
[14:23:40] [PASSED] 0x56C1 (DG2)
[14:23:40] [PASSED] 0x7D51 (METEORLAKE)
[14:23:40] [PASSED] 0x7DD1 (METEORLAKE)
[14:23:40] [PASSED] 0x7D41 (METEORLAKE)
[14:23:40] [PASSED] 0x7D67 (METEORLAKE)
[14:23:40] [PASSED] 0xB640 (METEORLAKE)
[14:23:40] [PASSED] 0x56A0 (DG2)
[14:23:40] [PASSED] 0x56A1 (DG2)
[14:23:40] [PASSED] 0x56A2 (DG2)
[14:23:40] [PASSED] 0x56BE (DG2)
[14:23:40] [PASSED] 0x56BF (DG2)
[14:23:40] [PASSED] 0x5690 (DG2)
[14:23:40] [PASSED] 0x5691 (DG2)
[14:23:40] [PASSED] 0x5692 (DG2)
[14:23:40] [PASSED] 0x56A5 (DG2)
[14:23:40] [PASSED] 0x56A6 (DG2)
[14:23:40] [PASSED] 0x56B0 (DG2)
[14:23:40] [PASSED] 0x56B1 (DG2)
[14:23:40] [PASSED] 0x56BA (DG2)
[14:23:40] [PASSED] 0x56BB (DG2)
[14:23:40] [PASSED] 0x56BC (DG2)
[14:23:40] [PASSED] 0x56BD (DG2)
[14:23:40] [PASSED] 0x5693 (DG2)
[14:23:40] [PASSED] 0x5694 (DG2)
[14:23:40] [PASSED] 0x5695 (DG2)
[14:23:40] [PASSED] 0x56A3 (DG2)
[14:23:40] [PASSED] 0x56A4 (DG2)
[14:23:40] [PASSED] 0x56B2 (DG2)
[14:23:40] [PASSED] 0x56B3 (DG2)
[14:23:40] [PASSED] 0x5696 (DG2)
[14:23:40] [PASSED] 0x5697 (DG2)
[14:23:40] [PASSED] 0xB69 (PVC)
[14:23:40] [PASSED] 0xB6E (PVC)
[14:23:40] [PASSED] 0xBD4 (PVC)
[14:23:40] [PASSED] 0xBD5 (PVC)
[14:23:40] [PASSED] 0xBD6 (PVC)
[14:23:40] [PASSED] 0xBD7 (PVC)
[14:23:40] [PASSED] 0xBD8 (PVC)
[14:23:40] [PASSED] 0xBD9 (PVC)
[14:23:40] [PASSED] 0xBDA (PVC)
[14:23:40] [PASSED] 0xBDB (PVC)
[14:23:40] [PASSED] 0xBE0 (PVC)
[14:23:40] [PASSED] 0xBE1 (PVC)
[14:23:40] [PASSED] 0xBE5 (PVC)
[14:23:40] [PASSED] 0x7D40 (METEORLAKE)
[14:23:40] [PASSED] 0x7D45 (METEORLAKE)
[14:23:40] [PASSED] 0x7D55 (METEORLAKE)
[14:23:40] [PASSED] 0x7D60 (METEORLAKE)
[14:23:40] [PASSED] 0x7DD5 (METEORLAKE)
[14:23:40] [PASSED] 0x6420 (LUNARLAKE)
[14:23:40] [PASSED] 0x64A0 (LUNARLAKE)
[14:23:40] [PASSED] 0x64B0 (LUNARLAKE)
[14:23:40] [PASSED] 0xE202 (BATTLEMAGE)
[14:23:40] [PASSED] 0xE209 (BATTLEMAGE)
[14:23:40] [PASSED] 0xE20B (BATTLEMAGE)
[14:23:40] [PASSED] 0xE20C (BATTLEMAGE)
[14:23:40] [PASSED] 0xE20D (BATTLEMAGE)
[14:23:40] [PASSED] 0xE210 (BATTLEMAGE)
[14:23:40] [PASSED] 0xE211 (BATTLEMAGE)
[14:23:40] [PASSED] 0xE212 (BATTLEMAGE)
[14:23:40] [PASSED] 0xE216 (BATTLEMAGE)
[14:23:40] [PASSED] 0xE220 (BATTLEMAGE)
[14:23:40] [PASSED] 0xE221 (BATTLEMAGE)
[14:23:40] [PASSED] 0xE222 (BATTLEMAGE)
[14:23:40] [PASSED] 0xE223 (BATTLEMAGE)
[14:23:40] [PASSED] 0xB080 (PANTHERLAKE)
[14:23:40] [PASSED] 0xB081 (PANTHERLAKE)
[14:23:40] [PASSED] 0xB082 (PANTHERLAKE)
[14:23:40] [PASSED] 0xB083 (PANTHERLAKE)
[14:23:40] [PASSED] 0xB084 (PANTHERLAKE)
[14:23:40] [PASSED] 0xB085 (PANTHERLAKE)
[14:23:40] [PASSED] 0xB086 (PANTHERLAKE)
[14:23:40] [PASSED] 0xB087 (PANTHERLAKE)
[14:23:40] [PASSED] 0xB08F (PANTHERLAKE)
[14:23:40] [PASSED] 0xB090 (PANTHERLAKE)
[14:23:40] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:23:40] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:23:40] [PASSED] 0xD740 (NOVALAKE_S)
[14:23:40] [PASSED] 0xD741 (NOVALAKE_S)
[14:23:40] [PASSED] 0xD742 (NOVALAKE_S)
[14:23:40] [PASSED] 0xD743 (NOVALAKE_S)
[14:23:40] [PASSED] 0xD744 (NOVALAKE_S)
[14:23:40] [PASSED] 0xD745 (NOVALAKE_S)
[14:23:40] [PASSED] 0x674C (CRESCENTISLAND)
[14:23:40] [PASSED] 0xFD80 (PANTHERLAKE)
[14:23:40] [PASSED] 0xFD81 (PANTHERLAKE)
[14:23:40] =============== [PASSED] check_platform_desc ===============
[14:23:40] ===================== [PASSED] xe_pci ======================
[14:23:40] =================== xe_rtp (2 subtests) ====================
[14:23:40] =============== xe_rtp_process_to_sr_tests ================
[14:23:40] [PASSED] coalesce-same-reg
[14:23:40] [PASSED] no-match-no-add
[14:23:40] [PASSED] match-or
[14:23:40] [PASSED] match-or-xfail
[14:23:40] [PASSED] no-match-no-add-multiple-rules
[14:23:40] [PASSED] two-regs-two-entries
[14:23:40] [PASSED] clr-one-set-other
[14:23:40] [PASSED] set-field
[14:23:40] [PASSED] conflict-duplicate
[14:23:40] [PASSED] conflict-not-disjoint
[14:23:40] [PASSED] conflict-reg-type
[14:23:40] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:23:40] ================== xe_rtp_process_tests ===================
[14:23:40] [PASSED] active1
[14:23:40] [PASSED] active2
[14:23:40] [PASSED] active-inactive
[14:23:40] [PASSED] inactive-active
[14:23:40] [PASSED] inactive-1st_or_active-inactive
[14:23:40] [PASSED] inactive-2nd_or_active-inactive
[14:23:40] [PASSED] inactive-last_or_active-inactive
[14:23:40] [PASSED] inactive-no_or_active-inactive
[14:23:40] ============== [PASSED] xe_rtp_process_tests ===============
[14:23:40] ===================== [PASSED] xe_rtp ======================
[14:23:40] ==================== xe_wa (1 subtest) =====================
[14:23:40] ======================== xe_wa_gt =========================
[14:23:40] [PASSED] TIGERLAKE B0
[14:23:40] [PASSED] DG1 A0
[14:23:40] [PASSED] DG1 B0
[14:23:40] [PASSED] ALDERLAKE_S A0
[14:23:40] [PASSED] ALDERLAKE_S B0
[14:23:40] [PASSED] ALDERLAKE_S C0
[14:23:40] [PASSED] ALDERLAKE_S D0
[14:23:40] [PASSED] ALDERLAKE_P A0
[14:23:40] [PASSED] ALDERLAKE_P B0
[14:23:40] [PASSED] ALDERLAKE_P C0
[14:23:40] [PASSED] ALDERLAKE_S RPLS D0
[14:23:40] [PASSED] ALDERLAKE_P RPLU E0
[14:23:40] [PASSED] DG2 G10 C0
[14:23:40] [PASSED] DG2 G11 B1
[14:23:40] [PASSED] DG2 G12 A1
[14:23:40] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:23:40] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:23:40] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:23:40] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:23:40] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:23:40] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:23:40] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:23:40] ==================== [PASSED] xe_wa_gt =====================
[14:23:40] ====================== [PASSED] xe_wa ======================
[14:23:40] ============================================================
[14:23:40] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[14:23:40] Elapsed time: 36.539s total, 4.252s configuring, 31.770s building, 0.480s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[14:23:40] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:23:42] 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
[14:24:11] Starting KUnit Kernel (1/1)...
[14:24:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:24:11] ============ drm_test_pick_cmdline (2 subtests) ============
[14:24:11] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[14:24:11] =============== drm_test_pick_cmdline_named ===============
[14:24:11] [PASSED] NTSC
[14:24:11] [PASSED] NTSC-J
[14:24:11] [PASSED] PAL
[14:24:11] [PASSED] PAL-M
[14:24:11] =========== [PASSED] drm_test_pick_cmdline_named ===========
[14:24:11] ============== [PASSED] drm_test_pick_cmdline ==============
[14:24:11] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[14:24:11] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[14:24:11] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[14:24:11] =========== drm_validate_clone_mode (2 subtests) ===========
[14:24:11] ============== drm_test_check_in_clone_mode ===============
[14:24:11] [PASSED] in_clone_mode
[14:24:11] [PASSED] not_in_clone_mode
[14:24:11] ========== [PASSED] drm_test_check_in_clone_mode ===========
[14:24:11] =============== drm_test_check_valid_clones ===============
[14:24:11] [PASSED] not_in_clone_mode
[14:24:11] [PASSED] valid_clone
[14:24:11] [PASSED] invalid_clone
[14:24:11] =========== [PASSED] drm_test_check_valid_clones ===========
[14:24:11] ============= [PASSED] drm_validate_clone_mode =============
[14:24:11] ============= drm_validate_modeset (1 subtest) =============
[14:24:11] [PASSED] drm_test_check_connector_changed_modeset
[14:24:11] ============== [PASSED] drm_validate_modeset ===============
[14:24:11] ====== drm_test_bridge_get_current_state (2 subtests) ======
[14:24:11] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[14:24:11] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[14:24:11] ======== [PASSED] drm_test_bridge_get_current_state ========
[14:24:11] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[14:24:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[14:24:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[14:24:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[14:24:11] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[14:24:11] ============== drm_bridge_alloc (2 subtests) ===============
[14:24:11] [PASSED] drm_test_drm_bridge_alloc_basic
[14:24:11] [PASSED] drm_test_drm_bridge_alloc_get_put
[14:24:11] ================ [PASSED] drm_bridge_alloc =================
[14:24:11] ================== drm_buddy (8 subtests) ==================
[14:24:11] [PASSED] drm_test_buddy_alloc_limit
[14:24:11] [PASSED] drm_test_buddy_alloc_optimistic
[14:24:11] [PASSED] drm_test_buddy_alloc_pessimistic
[14:24:11] [PASSED] drm_test_buddy_alloc_pathological
[14:24:11] [PASSED] drm_test_buddy_alloc_contiguous
[14:24:11] [PASSED] drm_test_buddy_alloc_clear
[14:24:11] [PASSED] drm_test_buddy_alloc_range_bias
[14:24:11] [PASSED] drm_test_buddy_fragmentation_performance
[14:24:11] ==================== [PASSED] drm_buddy ====================
[14:24:11] ============= drm_cmdline_parser (40 subtests) =============
[14:24:11] [PASSED] drm_test_cmdline_force_d_only
[14:24:11] [PASSED] drm_test_cmdline_force_D_only_dvi
[14:24:11] [PASSED] drm_test_cmdline_force_D_only_hdmi
[14:24:11] [PASSED] drm_test_cmdline_force_D_only_not_digital
[14:24:11] [PASSED] drm_test_cmdline_force_e_only
[14:24:11] [PASSED] drm_test_cmdline_res
[14:24:11] [PASSED] drm_test_cmdline_res_vesa
[14:24:11] [PASSED] drm_test_cmdline_res_vesa_rblank
[14:24:11] [PASSED] drm_test_cmdline_res_rblank
[14:24:11] [PASSED] drm_test_cmdline_res_bpp
[14:24:11] [PASSED] drm_test_cmdline_res_refresh
[14:24:11] [PASSED] drm_test_cmdline_res_bpp_refresh
[14:24:11] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[14:24:11] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[14:24:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[14:24:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[14:24:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[14:24:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[14:24:11] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[14:24:11] [PASSED] drm_test_cmdline_res_margins_force_on
[14:24:11] [PASSED] drm_test_cmdline_res_vesa_margins
[14:24:11] [PASSED] drm_test_cmdline_name
[14:24:11] [PASSED] drm_test_cmdline_name_bpp
[14:24:11] [PASSED] drm_test_cmdline_name_option
[14:24:11] [PASSED] drm_test_cmdline_name_bpp_option
[14:24:11] [PASSED] drm_test_cmdline_rotate_0
[14:24:11] [PASSED] drm_test_cmdline_rotate_90
[14:24:11] [PASSED] drm_test_cmdline_rotate_180
[14:24:11] [PASSED] drm_test_cmdline_rotate_270
[14:24:11] [PASSED] drm_test_cmdline_hmirror
[14:24:11] [PASSED] drm_test_cmdline_vmirror
[14:24:11] [PASSED] drm_test_cmdline_margin_options
[14:24:11] [PASSED] drm_test_cmdline_multiple_options
[14:24:11] [PASSED] drm_test_cmdline_bpp_extra_and_option
[14:24:11] [PASSED] drm_test_cmdline_extra_and_option
[14:24:11] [PASSED] drm_test_cmdline_freestanding_options
[14:24:11] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[14:24:11] [PASSED] drm_test_cmdline_panel_orientation
[14:24:11] ================ drm_test_cmdline_invalid =================
[14:24:11] [PASSED] margin_only
[14:24:11] [PASSED] interlace_only
[14:24:11] [PASSED] res_missing_x
[14:24:11] [PASSED] res_missing_y
[14:24:11] [PASSED] res_bad_y
[14:24:11] [PASSED] res_missing_y_bpp
[14:24:11] [PASSED] res_bad_bpp
[14:24:11] [PASSED] res_bad_refresh
[14:24:11] [PASSED] res_bpp_refresh_force_on_off
[14:24:11] [PASSED] res_invalid_mode
[14:24:11] [PASSED] res_bpp_wrong_place_mode
[14:24:11] [PASSED] name_bpp_refresh
[14:24:11] [PASSED] name_refresh
[14:24:11] [PASSED] name_refresh_wrong_mode
[14:24:11] [PASSED] name_refresh_invalid_mode
[14:24:11] [PASSED] rotate_multiple
[14:24:11] [PASSED] rotate_invalid_val
[14:24:11] [PASSED] rotate_truncated
[14:24:11] [PASSED] invalid_option
[14:24:11] [PASSED] invalid_tv_option
[14:24:11] [PASSED] truncated_tv_option
[14:24:11] ============ [PASSED] drm_test_cmdline_invalid =============
[14:24:11] =============== drm_test_cmdline_tv_options ===============
[14:24:11] [PASSED] NTSC
[14:24:11] [PASSED] NTSC_443
[14:24:11] [PASSED] NTSC_J
[14:24:11] [PASSED] PAL
[14:24:11] [PASSED] PAL_M
[14:24:11] [PASSED] PAL_N
[14:24:11] [PASSED] SECAM
[14:24:11] [PASSED] MONO_525
[14:24:11] [PASSED] MONO_625
[14:24:11] =========== [PASSED] drm_test_cmdline_tv_options ===========
[14:24:11] =============== [PASSED] drm_cmdline_parser ================
[14:24:11] ========== drmm_connector_hdmi_init (20 subtests) ==========
[14:24:11] [PASSED] drm_test_connector_hdmi_init_valid
[14:24:11] [PASSED] drm_test_connector_hdmi_init_bpc_8
[14:24:11] [PASSED] drm_test_connector_hdmi_init_bpc_10
[14:24:11] [PASSED] drm_test_connector_hdmi_init_bpc_12
[14:24:11] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[14:24:11] [PASSED] drm_test_connector_hdmi_init_bpc_null
[14:24:11] [PASSED] drm_test_connector_hdmi_init_formats_empty
[14:24:11] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[14:24:11] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:24:11] [PASSED] supported_formats=0x9 yuv420_allowed=1
[14:24:11] [PASSED] supported_formats=0x9 yuv420_allowed=0
[14:24:11] [PASSED] supported_formats=0x3 yuv420_allowed=1
[14:24:11] [PASSED] supported_formats=0x3 yuv420_allowed=0
[14:24:11] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:24:11] [PASSED] drm_test_connector_hdmi_init_null_ddc
[14:24:11] [PASSED] drm_test_connector_hdmi_init_null_product
[14:24:11] [PASSED] drm_test_connector_hdmi_init_null_vendor
[14:24:11] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[14:24:11] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[14:24:11] [PASSED] drm_test_connector_hdmi_init_product_valid
[14:24:11] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[14:24:11] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[14:24:11] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[14:24:11] ========= drm_test_connector_hdmi_init_type_valid =========
[14:24:11] [PASSED] HDMI-A
[14:24:11] [PASSED] HDMI-B
[14:24:11] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[14:24:11] ======== drm_test_connector_hdmi_init_type_invalid ========
[14:24:11] [PASSED] Unknown
[14:24:11] [PASSED] VGA
[14:24:11] [PASSED] DVI-I
[14:24:11] [PASSED] DVI-D
[14:24:11] [PASSED] DVI-A
[14:24:11] [PASSED] Composite
[14:24:11] [PASSED] SVIDEO
[14:24:11] [PASSED] LVDS
[14:24:11] [PASSED] Component
[14:24:11] [PASSED] DIN
[14:24:11] [PASSED] DP
[14:24:11] [PASSED] TV
[14:24:11] [PASSED] eDP
[14:24:11] [PASSED] Virtual
[14:24:11] [PASSED] DSI
[14:24:11] [PASSED] DPI
[14:24:11] [PASSED] Writeback
[14:24:11] [PASSED] SPI
[14:24:11] [PASSED] USB
[14:24:11] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[14:24:11] ============ [PASSED] drmm_connector_hdmi_init =============
[14:24:11] ============= drmm_connector_init (3 subtests) =============
[14:24:11] [PASSED] drm_test_drmm_connector_init
[14:24:11] [PASSED] drm_test_drmm_connector_init_null_ddc
[14:24:11] ========= drm_test_drmm_connector_init_type_valid =========
[14:24:11] [PASSED] Unknown
[14:24:11] [PASSED] VGA
[14:24:11] [PASSED] DVI-I
[14:24:11] [PASSED] DVI-D
[14:24:11] [PASSED] DVI-A
[14:24:11] [PASSED] Composite
[14:24:11] [PASSED] SVIDEO
[14:24:11] [PASSED] LVDS
[14:24:11] [PASSED] Component
[14:24:11] [PASSED] DIN
[14:24:11] [PASSED] DP
[14:24:11] [PASSED] HDMI-A
[14:24:11] [PASSED] HDMI-B
[14:24:11] [PASSED] TV
[14:24:11] [PASSED] eDP
[14:24:11] [PASSED] Virtual
[14:24:11] [PASSED] DSI
[14:24:11] [PASSED] DPI
[14:24:11] [PASSED] Writeback
[14:24:11] [PASSED] SPI
[14:24:11] [PASSED] USB
[14:24:11] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[14:24:11] =============== [PASSED] drmm_connector_init ===============
[14:24:11] ========= drm_connector_dynamic_init (6 subtests) ==========
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_init
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_init_properties
[14:24:11] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[14:24:11] [PASSED] Unknown
[14:24:11] [PASSED] VGA
[14:24:11] [PASSED] DVI-I
[14:24:11] [PASSED] DVI-D
[14:24:11] [PASSED] DVI-A
[14:24:11] [PASSED] Composite
[14:24:11] [PASSED] SVIDEO
[14:24:11] [PASSED] LVDS
[14:24:11] [PASSED] Component
[14:24:11] [PASSED] DIN
[14:24:11] [PASSED] DP
[14:24:11] [PASSED] HDMI-A
[14:24:11] [PASSED] HDMI-B
[14:24:11] [PASSED] TV
[14:24:11] [PASSED] eDP
[14:24:11] [PASSED] Virtual
[14:24:11] [PASSED] DSI
[14:24:11] [PASSED] DPI
[14:24:11] [PASSED] Writeback
[14:24:11] [PASSED] SPI
[14:24:11] [PASSED] USB
[14:24:11] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[14:24:11] ======== drm_test_drm_connector_dynamic_init_name =========
[14:24:11] [PASSED] Unknown
[14:24:11] [PASSED] VGA
[14:24:11] [PASSED] DVI-I
[14:24:11] [PASSED] DVI-D
[14:24:11] [PASSED] DVI-A
[14:24:11] [PASSED] Composite
[14:24:11] [PASSED] SVIDEO
[14:24:11] [PASSED] LVDS
[14:24:11] [PASSED] Component
[14:24:11] [PASSED] DIN
[14:24:11] [PASSED] DP
[14:24:11] [PASSED] HDMI-A
[14:24:11] [PASSED] HDMI-B
[14:24:11] [PASSED] TV
[14:24:11] [PASSED] eDP
[14:24:11] [PASSED] Virtual
[14:24:11] [PASSED] DSI
[14:24:11] [PASSED] DPI
[14:24:11] [PASSED] Writeback
[14:24:11] [PASSED] SPI
[14:24:11] [PASSED] USB
[14:24:11] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[14:24:11] =========== [PASSED] drm_connector_dynamic_init ============
[14:24:11] ==== drm_connector_dynamic_register_early (4 subtests) =====
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[14:24:11] ====== [PASSED] drm_connector_dynamic_register_early =======
[14:24:11] ======= drm_connector_dynamic_register (7 subtests) ========
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[14:24:11] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[14:24:11] ========= [PASSED] drm_connector_dynamic_register ==========
[14:24:11] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[14:24:11] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[14:24:11] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[14:24:11] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[14:24:11] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[14:24:11] ========== drm_test_get_tv_mode_from_name_valid ===========
[14:24:11] [PASSED] NTSC
[14:24:11] [PASSED] NTSC-443
[14:24:11] [PASSED] NTSC-J
[14:24:11] [PASSED] PAL
[14:24:11] [PASSED] PAL-M
[14:24:11] [PASSED] PAL-N
[14:24:11] [PASSED] SECAM
[14:24:11] [PASSED] Mono
[14:24:11] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[14:24:11] [PASSED] drm_test_get_tv_mode_from_name_truncated
[14:24:11] ============ [PASSED] drm_get_tv_mode_from_name ============
[14:24:11] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[14:24:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[14:24:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[14:24:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[14:24:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[14:24:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[14:24:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[14:24:11] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[14:24:11] [PASSED] VIC 96
[14:24:11] [PASSED] VIC 97
[14:24:11] [PASSED] VIC 101
[14:24:11] [PASSED] VIC 102
[14:24:11] [PASSED] VIC 106
[14:24:11] [PASSED] VIC 107
[14:24:11] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[14:24:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[14:24:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[14:24:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[14:24:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[14:24:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[14:24:11] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[14:24:11] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[14:24:11] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[14:24:11] [PASSED] Automatic
[14:24:11] [PASSED] Full
[14:24:11] [PASSED] Limited 16:235
[14:24:11] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[14:24:11] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[14:24:11] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[14:24:11] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[14:24:11] === drm_test_drm_hdmi_connector_get_output_format_name ====
[14:24:11] [PASSED] RGB
[14:24:11] [PASSED] YUV 4:2:0
[14:24:11] [PASSED] YUV 4:2:2
[14:24:11] [PASSED] YUV 4:4:4
[14:24:11] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[14:24:11] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[14:24:11] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[14:24:11] ============= drm_damage_helper (21 subtests) ==============
[14:24:11] [PASSED] drm_test_damage_iter_no_damage
[14:24:11] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[14:24:11] [PASSED] drm_test_damage_iter_no_damage_src_moved
[14:24:11] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[14:24:11] [PASSED] drm_test_damage_iter_no_damage_not_visible
[14:24:11] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[14:24:11] [PASSED] drm_test_damage_iter_no_damage_no_fb
[14:24:11] [PASSED] drm_test_damage_iter_simple_damage
[14:24:11] [PASSED] drm_test_damage_iter_single_damage
[14:24:11] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[14:24:11] [PASSED] drm_test_damage_iter_single_damage_outside_src
[14:24:11] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[14:24:11] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[14:24:11] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[14:24:11] [PASSED] drm_test_damage_iter_single_damage_src_moved
[14:24:11] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[14:24:11] [PASSED] drm_test_damage_iter_damage
[14:24:11] [PASSED] drm_test_damage_iter_damage_one_intersect
[14:24:11] [PASSED] drm_test_damage_iter_damage_one_outside
[14:24:11] [PASSED] drm_test_damage_iter_damage_src_moved
[14:24:11] [PASSED] drm_test_damage_iter_damage_not_visible
[14:24:11] ================ [PASSED] drm_damage_helper ================
[14:24:11] ============== drm_dp_mst_helper (3 subtests) ==============
[14:24:11] ============== drm_test_dp_mst_calc_pbn_mode ==============
[14:24:11] [PASSED] Clock 154000 BPP 30 DSC disabled
[14:24:11] [PASSED] Clock 234000 BPP 30 DSC disabled
[14:24:11] [PASSED] Clock 297000 BPP 24 DSC disabled
[14:24:11] [PASSED] Clock 332880 BPP 24 DSC enabled
[14:24:11] [PASSED] Clock 324540 BPP 24 DSC enabled
[14:24:11] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[14:24:11] ============== drm_test_dp_mst_calc_pbn_div ===============
[14:24:11] [PASSED] Link rate 2000000 lane count 4
[14:24:11] [PASSED] Link rate 2000000 lane count 2
[14:24:11] [PASSED] Link rate 2000000 lane count 1
[14:24:11] [PASSED] Link rate 1350000 lane count 4
[14:24:11] [PASSED] Link rate 1350000 lane count 2
[14:24:11] [PASSED] Link rate 1350000 lane count 1
[14:24:11] [PASSED] Link rate 1000000 lane count 4
[14:24:11] [PASSED] Link rate 1000000 lane count 2
[14:24:11] [PASSED] Link rate 1000000 lane count 1
[14:24:11] [PASSED] Link rate 810000 lane count 4
[14:24:11] [PASSED] Link rate 810000 lane count 2
[14:24:11] [PASSED] Link rate 810000 lane count 1
[14:24:11] [PASSED] Link rate 540000 lane count 4
[14:24:11] [PASSED] Link rate 540000 lane count 2
[14:24:11] [PASSED] Link rate 540000 lane count 1
[14:24:11] [PASSED] Link rate 270000 lane count 4
[14:24:11] [PASSED] Link rate 270000 lane count 2
[14:24:11] [PASSED] Link rate 270000 lane count 1
[14:24:11] [PASSED] Link rate 162000 lane count 4
[14:24:11] [PASSED] Link rate 162000 lane count 2
[14:24:11] [PASSED] Link rate 162000 lane count 1
[14:24:11] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[14:24:11] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[14:24:11] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[14:24:11] [PASSED] DP_POWER_UP_PHY with port number
[14:24:11] [PASSED] DP_POWER_DOWN_PHY with port number
[14:24:11] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[14:24:11] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[14:24:11] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[14:24:11] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[14:24:11] [PASSED] DP_QUERY_PAYLOAD with port number
[14:24:11] [PASSED] DP_QUERY_PAYLOAD with VCPI
[14:24:11] [PASSED] DP_REMOTE_DPCD_READ with port number
[14:24:11] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[14:24:11] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[14:24:11] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[14:24:11] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[14:24:11] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[14:24:11] [PASSED] DP_REMOTE_I2C_READ with port number
[14:24:11] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[14:24:11] [PASSED] DP_REMOTE_I2C_READ with transactions array
[14:24:11] [PASSED] DP_REMOTE_I2C_WRITE with port number
[14:24:11] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[14:24:11] [PASSED] DP_REMOTE_I2C_WRITE with data array
[14:24:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[14:24:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[14:24:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[14:24:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[14:24:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[14:24:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[14:24:11] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[14:24:11] ================ [PASSED] drm_dp_mst_helper ================
[14:24:11] ================== drm_exec (7 subtests) ===================
[14:24:11] [PASSED] sanitycheck
[14:24:11] [PASSED] test_lock
[14:24:11] [PASSED] test_lock_unlock
[14:24:11] [PASSED] test_duplicates
[14:24:11] [PASSED] test_prepare
[14:24:11] [PASSED] test_prepare_array
[14:24:11] [PASSED] test_multiple_loops
[14:24:11] ==================== [PASSED] drm_exec =====================
[14:24:11] =========== drm_format_helper_test (17 subtests) ===========
[14:24:11] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[14:24:11] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[14:24:11] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[14:24:11] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[14:24:11] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[14:24:11] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[14:24:11] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[14:24:11] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[14:24:11] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[14:24:11] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[14:24:11] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[14:24:11] ============== drm_test_fb_xrgb8888_to_mono ===============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[14:24:11] ==================== drm_test_fb_swab =====================
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ================ [PASSED] drm_test_fb_swab =================
[14:24:11] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[14:24:11] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[14:24:11] [PASSED] single_pixel_source_buffer
[14:24:11] [PASSED] single_pixel_clip_rectangle
[14:24:11] [PASSED] well_known_colors
[14:24:11] [PASSED] destination_pitch
[14:24:11] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[14:24:11] ================= drm_test_fb_clip_offset =================
[14:24:11] [PASSED] pass through
[14:24:11] [PASSED] horizontal offset
[14:24:11] [PASSED] vertical offset
[14:24:11] [PASSED] horizontal and vertical offset
[14:24:11] [PASSED] horizontal offset (custom pitch)
[14:24:11] [PASSED] vertical offset (custom pitch)
[14:24:11] [PASSED] horizontal and vertical offset (custom pitch)
[14:24:11] ============= [PASSED] drm_test_fb_clip_offset =============
[14:24:11] =================== drm_test_fb_memcpy ====================
[14:24:11] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[14:24:11] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[14:24:11] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[14:24:11] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[14:24:11] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[14:24:11] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[14:24:11] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[14:24:11] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[14:24:11] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[14:24:11] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[14:24:11] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[14:24:11] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[14:24:11] =============== [PASSED] drm_test_fb_memcpy ================
[14:24:11] ============= [PASSED] drm_format_helper_test ==============
[14:24:11] ================= drm_format (18 subtests) =================
[14:24:11] [PASSED] drm_test_format_block_width_invalid
[14:24:11] [PASSED] drm_test_format_block_width_one_plane
[14:24:11] [PASSED] drm_test_format_block_width_two_plane
[14:24:11] [PASSED] drm_test_format_block_width_three_plane
[14:24:11] [PASSED] drm_test_format_block_width_tiled
[14:24:11] [PASSED] drm_test_format_block_height_invalid
[14:24:11] [PASSED] drm_test_format_block_height_one_plane
[14:24:11] [PASSED] drm_test_format_block_height_two_plane
[14:24:11] [PASSED] drm_test_format_block_height_three_plane
[14:24:11] [PASSED] drm_test_format_block_height_tiled
[14:24:11] [PASSED] drm_test_format_min_pitch_invalid
[14:24:11] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[14:24:11] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[14:24:11] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[14:24:11] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[14:24:11] [PASSED] drm_test_format_min_pitch_two_plane
[14:24:11] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[14:24:11] [PASSED] drm_test_format_min_pitch_tiled
[14:24:11] =================== [PASSED] drm_format ====================
[14:24:11] ============== drm_framebuffer (10 subtests) ===============
[14:24:11] ========== drm_test_framebuffer_check_src_coords ==========
[14:24:11] [PASSED] Success: source fits into fb
[14:24:11] [PASSED] Fail: overflowing fb with x-axis coordinate
[14:24:11] [PASSED] Fail: overflowing fb with y-axis coordinate
[14:24:11] [PASSED] Fail: overflowing fb with source width
[14:24:11] [PASSED] Fail: overflowing fb with source height
[14:24:11] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[14:24:11] [PASSED] drm_test_framebuffer_cleanup
[14:24:11] =============== drm_test_framebuffer_create ===============
[14:24:11] [PASSED] ABGR8888 normal sizes
[14:24:11] [PASSED] ABGR8888 max sizes
[14:24:11] [PASSED] ABGR8888 pitch greater than min required
[14:24:11] [PASSED] ABGR8888 pitch less than min required
[14:24:11] [PASSED] ABGR8888 Invalid width
[14:24:11] [PASSED] ABGR8888 Invalid buffer handle
[14:24:11] [PASSED] No pixel format
[14:24:11] [PASSED] ABGR8888 Width 0
[14:24:11] [PASSED] ABGR8888 Height 0
[14:24:11] [PASSED] ABGR8888 Out of bound height * pitch combination
[14:24:11] [PASSED] ABGR8888 Large buffer offset
[14:24:11] [PASSED] ABGR8888 Buffer offset for inexistent plane
[14:24:11] [PASSED] ABGR8888 Invalid flag
[14:24:11] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[14:24:11] [PASSED] ABGR8888 Valid buffer modifier
[14:24:11] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[14:24:11] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[14:24:11] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[14:24:11] [PASSED] NV12 Normal sizes
[14:24:11] [PASSED] NV12 Max sizes
[14:24:11] [PASSED] NV12 Invalid pitch
[14:24:11] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[14:24:11] [PASSED] NV12 different modifier per-plane
[14:24:11] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[14:24:11] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[14:24:11] [PASSED] NV12 Modifier for inexistent plane
[14:24:11] [PASSED] NV12 Handle for inexistent plane
[14:24:11] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[14:24:11] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[14:24:11] [PASSED] YVU420 Normal sizes
[14:24:11] [PASSED] YVU420 Max sizes
[14:24:11] [PASSED] YVU420 Invalid pitch
[14:24:11] [PASSED] YVU420 Different pitches
[14:24:11] [PASSED] YVU420 Different buffer offsets/pitches
[14:24:11] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[14:24:11] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[14:24:11] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[14:24:11] [PASSED] YVU420 Valid modifier
[14:24:11] [PASSED] YVU420 Different modifiers per plane
[14:24:11] [PASSED] YVU420 Modifier for inexistent plane
[14:24:11] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[14:24:11] [PASSED] X0L2 Normal sizes
[14:24:11] [PASSED] X0L2 Max sizes
[14:24:11] [PASSED] X0L2 Invalid pitch
[14:24:11] [PASSED] X0L2 Pitch greater than minimum required
[14:24:11] [PASSED] X0L2 Handle for inexistent plane
[14:24:11] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[14:24:11] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[14:24:11] [PASSED] X0L2 Valid modifier
[14:24:11] [PASSED] X0L2 Modifier for inexistent plane
[14:24:11] =========== [PASSED] drm_test_framebuffer_create ===========
[14:24:11] [PASSED] drm_test_framebuffer_free
[14:24:11] [PASSED] drm_test_framebuffer_init
[14:24:11] [PASSED] drm_test_framebuffer_init_bad_format
[14:24:11] [PASSED] drm_test_framebuffer_init_dev_mismatch
[14:24:11] [PASSED] drm_test_framebuffer_lookup
[14:24:11] [PASSED] drm_test_framebuffer_lookup_inexistent
[14:24:11] [PASSED] drm_test_framebuffer_modifiers_not_supported
[14:24:11] ================= [PASSED] drm_framebuffer =================
[14:24:11] ================ drm_gem_shmem (8 subtests) ================
[14:24:11] [PASSED] drm_gem_shmem_test_obj_create
[14:24:11] [PASSED] drm_gem_shmem_test_obj_create_private
[14:24:11] [PASSED] drm_gem_shmem_test_pin_pages
[14:24:11] [PASSED] drm_gem_shmem_test_vmap
[14:24:11] [PASSED] drm_gem_shmem_test_get_pages_sgt
[14:24:11] [PASSED] drm_gem_shmem_test_get_sg_table
[14:24:11] [PASSED] drm_gem_shmem_test_madvise
[14:24:11] [PASSED] drm_gem_shmem_test_purge
[14:24:11] ================== [PASSED] drm_gem_shmem ==================
[14:24:11] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[14:24:11] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[14:24:11] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[14:24:11] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[14:24:11] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[14:24:11] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[14:24:11] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[14:24:11] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[14:24:11] [PASSED] Automatic
[14:24:11] [PASSED] Full
[14:24:11] [PASSED] Limited 16:235
[14:24:11] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[14:24:11] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[14:24:11] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[14:24:11] [PASSED] drm_test_check_disable_connector
[14:24:11] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[14:24:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[14:24:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[14:24:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[14:24:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[14:24:11] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[14:24:11] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[14:24:11] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[14:24:11] [PASSED] drm_test_check_output_bpc_dvi
[14:24:11] [PASSED] drm_test_check_output_bpc_format_vic_1
[14:24:11] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[14:24:11] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[14:24:11] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[14:24:11] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[14:24:11] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[14:24:11] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[14:24:11] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[14:24:11] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[14:24:11] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[14:24:11] [PASSED] drm_test_check_broadcast_rgb_value
[14:24:11] [PASSED] drm_test_check_bpc_8_value
[14:24:11] [PASSED] drm_test_check_bpc_10_value
[14:24:11] [PASSED] drm_test_check_bpc_12_value
[14:24:11] [PASSED] drm_test_check_format_value
[14:24:11] [PASSED] drm_test_check_tmds_char_value
[14:24:11] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[14:24:11] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[14:24:11] [PASSED] drm_test_check_mode_valid
[14:24:11] [PASSED] drm_test_check_mode_valid_reject
[14:24:11] [PASSED] drm_test_check_mode_valid_reject_rate
[14:24:11] [PASSED] drm_test_check_mode_valid_reject_max_clock
[14:24:11] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[14:24:11] ================= drm_managed (2 subtests) =================
[14:24:11] [PASSED] drm_test_managed_release_action
[14:24:11] [PASSED] drm_test_managed_run_action
[14:24:11] =================== [PASSED] drm_managed ===================
[14:24:11] =================== drm_mm (6 subtests) ====================
[14:24:11] [PASSED] drm_test_mm_init
[14:24:11] [PASSED] drm_test_mm_debug
[14:24:11] [PASSED] drm_test_mm_align32
[14:24:11] [PASSED] drm_test_mm_align64
[14:24:11] [PASSED] drm_test_mm_lowest
[14:24:11] [PASSED] drm_test_mm_highest
[14:24:11] ===================== [PASSED] drm_mm ======================
[14:24:11] ============= drm_modes_analog_tv (5 subtests) =============
[14:24:11] [PASSED] drm_test_modes_analog_tv_mono_576i
[14:24:11] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[14:24:11] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[14:24:11] [PASSED] drm_test_modes_analog_tv_pal_576i
[14:24:11] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[14:24:11] =============== [PASSED] drm_modes_analog_tv ===============
[14:24:11] ============== drm_plane_helper (2 subtests) ===============
[14:24:11] =============== drm_test_check_plane_state ================
[14:24:11] [PASSED] clipping_simple
[14:24:11] [PASSED] clipping_rotate_reflect
[14:24:11] [PASSED] positioning_simple
[14:24:11] [PASSED] upscaling
[14:24:11] [PASSED] downscaling
[14:24:11] [PASSED] rounding1
[14:24:11] [PASSED] rounding2
[14:24:11] [PASSED] rounding3
[14:24:11] [PASSED] rounding4
[14:24:11] =========== [PASSED] drm_test_check_plane_state ============
[14:24:11] =========== drm_test_check_invalid_plane_state ============
[14:24:11] [PASSED] positioning_invalid
[14:24:11] [PASSED] upscaling_invalid
[14:24:11] [PASSED] downscaling_invalid
[14:24:11] ======= [PASSED] drm_test_check_invalid_plane_state ========
[14:24:11] ================ [PASSED] drm_plane_helper =================
[14:24:11] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[14:24:11] ====== drm_test_connector_helper_tv_get_modes_check =======
[14:24:11] [PASSED] None
[14:24:11] [PASSED] PAL
[14:24:11] [PASSED] NTSC
[14:24:11] [PASSED] Both, NTSC Default
[14:24:11] [PASSED] Both, PAL Default
[14:24:11] [PASSED] Both, NTSC Default, with PAL on command-line
[14:24:11] [PASSED] Both, PAL Default, with NTSC on command-line
[14:24:11] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[14:24:11] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[14:24:11] ================== drm_rect (9 subtests) ===================
[14:24:11] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[14:24:11] [PASSED] drm_test_rect_clip_scaled_not_clipped
[14:24:11] [PASSED] drm_test_rect_clip_scaled_clipped
[14:24:11] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[14:24:11] ================= drm_test_rect_intersect =================
[14:24:11] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[14:24:11] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[14:24:11] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[14:24:11] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[14:24:11] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[14:24:11] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[14:24:11] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[14:24:11] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[14:24:11] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[14:24:11] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[14:24:11] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[14:24:11] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[14:24:11] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[14:24:11] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[14:24:11] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[14:24:11] ============= [PASSED] drm_test_rect_intersect =============
[14:24:11] ================ drm_test_rect_calc_hscale ================
[14:24:11] [PASSED] normal use
[14:24:11] [PASSED] out of max range
[14:24:11] [PASSED] out of min range
[14:24:11] [PASSED] zero dst
[14:24:11] [PASSED] negative src
[14:24:11] [PASSED] negative dst
[14:24:11] ============ [PASSED] drm_test_rect_calc_hscale ============
[14:24:11] ================ drm_test_rect_calc_vscale ================
[14:24:11] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[14:24:11] [PASSED] out of max range
[14:24:11] [PASSED] out of min range
[14:24:11] [PASSED] zero dst
[14:24:11] [PASSED] negative src
[14:24:11] [PASSED] negative dst
[14:24:11] ============ [PASSED] drm_test_rect_calc_vscale ============
[14:24:11] ================== drm_test_rect_rotate ===================
[14:24:11] [PASSED] reflect-x
[14:24:11] [PASSED] reflect-y
[14:24:11] [PASSED] rotate-0
[14:24:11] [PASSED] rotate-90
[14:24:11] [PASSED] rotate-180
[14:24:11] [PASSED] rotate-270
[14:24:11] ============== [PASSED] drm_test_rect_rotate ===============
[14:24:11] ================ drm_test_rect_rotate_inv =================
[14:24:11] [PASSED] reflect-x
[14:24:11] [PASSED] reflect-y
[14:24:11] [PASSED] rotate-0
[14:24:11] [PASSED] rotate-90
[14:24:11] [PASSED] rotate-180
[14:24:11] [PASSED] rotate-270
[14:24:11] ============ [PASSED] drm_test_rect_rotate_inv =============
[14:24:11] ==================== [PASSED] drm_rect =====================
[14:24:11] ============ drm_sysfb_modeset_test (1 subtest) ============
[14:24:11] ============ drm_test_sysfb_build_fourcc_list =============
[14:24:11] [PASSED] no native formats
[14:24:11] [PASSED] XRGB8888 as native format
[14:24:11] [PASSED] remove duplicates
[14:24:11] [PASSED] convert alpha formats
[14:24:11] [PASSED] random formats
[14:24:11] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[14:24:11] ============= [PASSED] drm_sysfb_modeset_test ==============
[14:24:11] ================== drm_fixp (2 subtests) ===================
[14:24:11] [PASSED] drm_test_int2fixp
[14:24:11] [PASSED] drm_test_sm2fixp
[14:24:11] ==================== [PASSED] drm_fixp =====================
[14:24:11] ============================================================
[14:24:11] Testing complete. Ran 624 tests: passed: 624
[14:24:11] Elapsed time: 30.596s total, 1.494s configuring, 28.634s building, 0.410s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[14:24:11] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:24:13] 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
[14:24:24] Starting KUnit Kernel (1/1)...
[14:24:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:24:24] ================= ttm_device (5 subtests) ==================
[14:24:24] [PASSED] ttm_device_init_basic
[14:24:24] [PASSED] ttm_device_init_multiple
[14:24:24] [PASSED] ttm_device_fini_basic
[14:24:24] [PASSED] ttm_device_init_no_vma_man
[14:24:24] ================== ttm_device_init_pools ==================
[14:24:24] [PASSED] No DMA allocations, no DMA32 required
[14:24:24] [PASSED] DMA allocations, DMA32 required
[14:24:24] [PASSED] No DMA allocations, DMA32 required
[14:24:24] [PASSED] DMA allocations, no DMA32 required
[14:24:24] ============== [PASSED] ttm_device_init_pools ==============
[14:24:24] =================== [PASSED] ttm_device ====================
[14:24:24] ================== ttm_pool (8 subtests) ===================
[14:24:24] ================== ttm_pool_alloc_basic ===================
[14:24:24] [PASSED] One page
[14:24:24] [PASSED] More than one page
[14:24:24] [PASSED] Above the allocation limit
[14:24:24] [PASSED] One page, with coherent DMA mappings enabled
[14:24:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:24:24] ============== [PASSED] ttm_pool_alloc_basic ===============
[14:24:24] ============== ttm_pool_alloc_basic_dma_addr ==============
[14:24:24] [PASSED] One page
[14:24:24] [PASSED] More than one page
[14:24:24] [PASSED] Above the allocation limit
[14:24:24] [PASSED] One page, with coherent DMA mappings enabled
[14:24:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:24:24] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[14:24:24] [PASSED] ttm_pool_alloc_order_caching_match
[14:24:24] [PASSED] ttm_pool_alloc_caching_mismatch
[14:24:24] [PASSED] ttm_pool_alloc_order_mismatch
[14:24:24] [PASSED] ttm_pool_free_dma_alloc
[14:24:24] [PASSED] ttm_pool_free_no_dma_alloc
[14:24:24] [PASSED] ttm_pool_fini_basic
[14:24:24] ==================== [PASSED] ttm_pool =====================
[14:24:24] ================ ttm_resource (8 subtests) =================
[14:24:24] ================= ttm_resource_init_basic =================
[14:24:24] [PASSED] Init resource in TTM_PL_SYSTEM
[14:24:24] [PASSED] Init resource in TTM_PL_VRAM
[14:24:24] [PASSED] Init resource in a private placement
[14:24:24] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[14:24:24] ============= [PASSED] ttm_resource_init_basic =============
[14:24:24] [PASSED] ttm_resource_init_pinned
[14:24:24] [PASSED] ttm_resource_fini_basic
[14:24:24] [PASSED] ttm_resource_manager_init_basic
[14:24:24] [PASSED] ttm_resource_manager_usage_basic
[14:24:24] [PASSED] ttm_resource_manager_set_used_basic
[14:24:24] [PASSED] ttm_sys_man_alloc_basic
[14:24:24] [PASSED] ttm_sys_man_free_basic
[14:24:24] ================== [PASSED] ttm_resource ===================
[14:24:24] =================== ttm_tt (15 subtests) ===================
[14:24:24] ==================== ttm_tt_init_basic ====================
[14:24:24] [PASSED] Page-aligned size
[14:24:24] [PASSED] Extra pages requested
[14:24:24] ================ [PASSED] ttm_tt_init_basic ================
[14:24:24] [PASSED] ttm_tt_init_misaligned
[14:24:24] [PASSED] ttm_tt_fini_basic
[14:24:24] [PASSED] ttm_tt_fini_sg
[14:24:24] [PASSED] ttm_tt_fini_shmem
[14:24:24] [PASSED] ttm_tt_create_basic
[14:24:24] [PASSED] ttm_tt_create_invalid_bo_type
[14:24:24] [PASSED] ttm_tt_create_ttm_exists
[14:24:24] [PASSED] ttm_tt_create_failed
[14:24:24] [PASSED] ttm_tt_destroy_basic
[14:24:24] [PASSED] ttm_tt_populate_null_ttm
[14:24:24] [PASSED] ttm_tt_populate_populated_ttm
[14:24:24] [PASSED] ttm_tt_unpopulate_basic
[14:24:24] [PASSED] ttm_tt_unpopulate_empty_ttm
[14:24:24] [PASSED] ttm_tt_swapin_basic
[14:24:24] ===================== [PASSED] ttm_tt ======================
[14:24:24] =================== ttm_bo (14 subtests) ===================
[14:24:24] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[14:24:24] [PASSED] Cannot be interrupted and sleeps
[14:24:24] [PASSED] Cannot be interrupted, locks straight away
[14:24:24] [PASSED] Can be interrupted, sleeps
[14:24:24] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[14:24:24] [PASSED] ttm_bo_reserve_locked_no_sleep
[14:24:24] [PASSED] ttm_bo_reserve_no_wait_ticket
[14:24:24] [PASSED] ttm_bo_reserve_double_resv
[14:24:24] [PASSED] ttm_bo_reserve_interrupted
[14:24:24] [PASSED] ttm_bo_reserve_deadlock
[14:24:24] [PASSED] ttm_bo_unreserve_basic
[14:24:24] [PASSED] ttm_bo_unreserve_pinned
[14:24:24] [PASSED] ttm_bo_unreserve_bulk
[14:24:24] [PASSED] ttm_bo_fini_basic
[14:24:24] [PASSED] ttm_bo_fini_shared_resv
[14:24:24] [PASSED] ttm_bo_pin_basic
[14:24:24] [PASSED] ttm_bo_pin_unpin_resource
[14:24:24] [PASSED] ttm_bo_multiple_pin_one_unpin
[14:24:24] ===================== [PASSED] ttm_bo ======================
[14:24:24] ============== ttm_bo_validate (21 subtests) ===============
[14:24:24] ============== ttm_bo_init_reserved_sys_man ===============
[14:24:24] [PASSED] Buffer object for userspace
[14:24:24] [PASSED] Kernel buffer object
[14:24:24] [PASSED] Shared buffer object
[14:24:24] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[14:24:24] ============== ttm_bo_init_reserved_mock_man ==============
[14:24:24] [PASSED] Buffer object for userspace
[14:24:24] [PASSED] Kernel buffer object
[14:24:24] [PASSED] Shared buffer object
[14:24:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[14:24:24] [PASSED] ttm_bo_init_reserved_resv
[14:24:24] ================== ttm_bo_validate_basic ==================
[14:24:24] [PASSED] Buffer object for userspace
[14:24:24] [PASSED] Kernel buffer object
[14:24:24] [PASSED] Shared buffer object
[14:24:24] ============== [PASSED] ttm_bo_validate_basic ==============
[14:24:24] [PASSED] ttm_bo_validate_invalid_placement
[14:24:24] ============= ttm_bo_validate_same_placement ==============
[14:24:24] [PASSED] System manager
[14:24:24] [PASSED] VRAM manager
[14:24:24] ========= [PASSED] ttm_bo_validate_same_placement ==========
[14:24:24] [PASSED] ttm_bo_validate_failed_alloc
[14:24:24] [PASSED] ttm_bo_validate_pinned
[14:24:24] [PASSED] ttm_bo_validate_busy_placement
[14:24:24] ================ ttm_bo_validate_multihop =================
[14:24:24] [PASSED] Buffer object for userspace
[14:24:24] [PASSED] Kernel buffer object
[14:24:24] [PASSED] Shared buffer object
[14:24:24] ============ [PASSED] ttm_bo_validate_multihop =============
[14:24:24] ========== ttm_bo_validate_no_placement_signaled ==========
[14:24:24] [PASSED] Buffer object in system domain, no page vector
[14:24:24] [PASSED] Buffer object in system domain with an existing page vector
[14:24:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[14:24:24] ======== ttm_bo_validate_no_placement_not_signaled ========
[14:24:24] [PASSED] Buffer object for userspace
[14:24:24] [PASSED] Kernel buffer object
[14:24:24] [PASSED] Shared buffer object
[14:24:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[14:24:24] [PASSED] ttm_bo_validate_move_fence_signaled
[14:24:24] ========= ttm_bo_validate_move_fence_not_signaled =========
[14:24:24] [PASSED] Waits for GPU
[14:24:24] [PASSED] Tries to lock straight away
[14:24:24] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[14:24:24] [PASSED] ttm_bo_validate_happy_evict
[14:24:24] [PASSED] ttm_bo_validate_all_pinned_evict
[14:24:24] [PASSED] ttm_bo_validate_allowed_only_evict
[14:24:24] [PASSED] ttm_bo_validate_deleted_evict
[14:24:24] [PASSED] ttm_bo_validate_busy_domain_evict
[14:24:24] [PASSED] ttm_bo_validate_evict_gutting
[14:24:24] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[14:24:24] ================= [PASSED] ttm_bo_validate =================
[14:24:24] ============================================================
[14:24:24] Testing complete. Ran 101 tests: passed: 101
[14:24:24] Elapsed time: 13.021s total, 1.582s configuring, 11.222s building, 0.180s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
` (7 preceding siblings ...)
2025-12-12 14:24 ` ✓ CI.KUnit: success " Patchwork
@ 2025-12-12 14:46 ` Ville Syrjälä
2025-12-15 12:30 ` Jani Nikula
2025-12-12 14:47 ` ✗ CI.checksparse: warning for " Patchwork
` (2 subsequent siblings)
11 siblings, 1 reply; 14+ messages in thread
From: Ville Syrjälä @ 2025-12-12 14:46 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
On Fri, Dec 12, 2025 at 04:14:03PM +0200, Jani Nikula wrote:
> Fix some issues spotted by Ville.
>
> Jani Nikula (6):
> drm/intel: fix parent interface kernel-doc
> drm/intel: group individual funcs in parent interface
> drm/intel: sort parent interface struct definitions and members
> drm/i915: sort parent interface initialization
> drm/xe: sort parent interface initialization
> drm/i915/display: group and sort the parent interface wrappers better
series is
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> drivers/gpu/drm/i915/display/intel_parent.c | 45 ++++++++-------
> drivers/gpu/drm/i915/display/intel_parent.h | 13 +++--
> drivers/gpu/drm/i915/i915_driver.c | 27 ++++-----
> drivers/gpu/drm/xe/display/xe_display.c | 2 +-
> include/drm/intel/display_parent_interface.h | 59 +++++++++++---------
> 5 files changed, 80 insertions(+), 66 deletions(-)
>
> --
> 2.47.3
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.checksparse: warning for drm/{i915,xe}: clean up parent interface definitions
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
` (8 preceding siblings ...)
2025-12-12 14:46 ` [PATCH 0/6] " Ville Syrjälä
@ 2025-12-12 14:47 ` Patchwork
2025-12-12 15:35 ` ✓ Xe.CI.BAT: success " Patchwork
2025-12-13 6:11 ` ✓ Xe.CI.Full: " Patchwork
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-12-12 14:47 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/{i915,xe}: clean up parent interface definitions
URL : https://patchwork.freedesktop.org/series/158862/
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 39f65c105d5b1af093f9df6f3dc688a642f96456
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
+drivers/gpu/drm/i915/i915_irq.c:467:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:467:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:475:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:475:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:480:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:480:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:480:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:518:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:518:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:526:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:526:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:531:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:531:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:531:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:575:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:575:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:578:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:578:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:582:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:582:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:589:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:589:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:589:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:589:9: warning: unreplaced symbol '<noident>'
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.BAT: success for drm/{i915,xe}: clean up parent interface definitions
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
` (9 preceding siblings ...)
2025-12-12 14:47 ` ✗ CI.checksparse: warning for " Patchwork
@ 2025-12-12 15:35 ` Patchwork
2025-12-13 6:11 ` ✓ Xe.CI.Full: " Patchwork
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-12-12 15:35 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 5269 bytes --]
== Series Details ==
Series: drm/{i915,xe}: clean up parent interface definitions
URL : https://patchwork.freedesktop.org/series/158862/
State : success
== Summary ==
CI Bug Log - changes from xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d_BAT -> xe-pw-158862v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 12)
------------------------------
Additional (1): bat-dg2-oem2
Known issues
------------
Here are the changes found in xe-pw-158862v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-oem2: NOTRUN -> [SKIP][1] ([Intel XE#623])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-oem2: NOTRUN -> [SKIP][2] ([Intel XE#455])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- bat-dg2-oem2: NOTRUN -> [SKIP][5] ([Intel XE#288]) +32 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_huc_copy@huc_copy:
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#255])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-dg2-oem2: NOTRUN -> [SKIP][7] ([Intel XE#2229])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_pat@pat-index-xe2:
- bat-dg2-oem2: NOTRUN -> [SKIP][8] ([Intel XE#977])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-dg2-oem2: NOTRUN -> [SKIP][9] ([Intel XE#2838] / [Intel XE#979])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- bat-dg2-oem2: NOTRUN -> [SKIP][10] ([Intel XE#979])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-dg2-oem2: NOTRUN -> [SKIP][11] ([Intel XE#3342])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: NOTRUN -> [TIMEOUT][12] ([Intel XE#6506])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@xe_waitfence@abstime.html
* igt@xe_waitfence@engine:
- bat-dg2-oem2: NOTRUN -> [FAIL][13] ([Intel XE#6519])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[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#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d -> xe-pw-158862v1
IGT_8664: 28cc709ad89c0ef569569f19f4772d4cca354963 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d: 7b8d2fe4514c3edbca3326b592b2fb0bd530527d
xe-pw-158862v1: 158862v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/index.html
[-- Attachment #2: Type: text/html, Size: 6176 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.Full: success for drm/{i915,xe}: clean up parent interface definitions
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
` (10 preceding siblings ...)
2025-12-12 15:35 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-12-13 6:11 ` Patchwork
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-12-13 6:11 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 31207 bytes --]
== Series Details ==
Series: drm/{i915,xe}: clean up parent interface definitions
URL : https://patchwork.freedesktop.org/series/158862/
State : success
== Summary ==
CI Bug Log - changes from xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d_FULL -> xe-pw-158862v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-158862v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-5/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#1124]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][3] -> [SKIP][4] ([Intel XE#367])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2887]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2252]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2390])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2320]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][11] -> [FAIL][12] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2293]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2311]) +6 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4141]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2313]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@bpc-switch@pipe-a-dp-2:
- shard-bmg: [PASS][18] -> [ABORT][19] ([Intel XE#6740]) +1 other test abort
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-4/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-5/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [ABORT][20] ([Intel XE#6740])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-8/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2934] / [Intel XE#6590])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2393])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2330])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#3414] / [Intel XE#3904])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_sharpness_filter@filter-scaler-upscale:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6503])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-5/igt@kms_sharpness_filter@filter-scaler-upscale.html
* igt@xe_eudebug@basic-vm-access-userptr-faultable:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4837])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6665])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-5/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_online@pagefault-write:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#4837] / [Intel XE#6665])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2322]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_system_allocator@many-large-mmap-free-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4943]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@xe_exec_system_allocator@many-large-mmap-free-huge-nomemset.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2284])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_compute0:
- shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#6251]) +2 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_compute0.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_compute0.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4733]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- shard-bmg: [SKIP][37] ([Intel XE#6779]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@core_hotunplug@unbind-rebind.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@core_hotunplug@unbind-rebind.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-bmg: [SKIP][39] -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@core_setmaster@master-drop-set-shared-fd.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
- shard-bmg: [INCOMPLETE][41] ([Intel XE#2705]) -> [PASS][42] +1 other test pass
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][43] ([Intel XE#367]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-bmg: [SKIP][45] ([Intel XE#6693]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-bmg: [DMESG-FAIL][47] ([Intel XE#5545]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][49] ([Intel XE#6321]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@many-64k-mmap-shared-remap-dontunmap:
- shard-bmg: [SKIP][51] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][52] +5 other tests pass
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-shared-remap-dontunmap.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@xe_exec_system_allocator@many-64k-mmap-shared-remap-dontunmap.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [SKIP][53] ([Intel XE#6703]) -> [PASS][54] +133 other tests pass
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@xe_pm@s3-exec-after.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@xe_pm@s3-exec-after.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0:
- shard-lnl: [FAIL][55] ([Intel XE#6251]) -> [PASS][56] +1 other test pass
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][57] ([Intel XE#6703]) -> [SKIP][58] ([Intel XE#2327])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [SKIP][59] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][60] ([Intel XE#1124])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][61] ([Intel XE#6703]) -> [SKIP][62] ([Intel XE#1124])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: [SKIP][63] ([Intel XE#6703]) -> [SKIP][64] ([Intel XE#367])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: [SKIP][65] ([Intel XE#6703]) -> [SKIP][66] ([Intel XE#2887]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-bmg: [SKIP][67] ([Intel XE#6703]) -> [SKIP][68] ([Intel XE#2252]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-bmg: [SKIP][69] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][70] ([Intel XE#2320])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: [FAIL][71] ([Intel XE#6793]) -> [SKIP][72] ([Intel XE#4354])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-6/igt@kms_dp_link_training@uhbr-sst.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-4/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: [SKIP][73] ([Intel XE#6703]) -> [SKIP][74] ([Intel XE#2244])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][75] ([Intel XE#6703]) -> [SKIP][76] ([Intel XE#4141]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][77] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][78] ([Intel XE#4141])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][79] ([Intel XE#6703]) -> [SKIP][80] ([Intel XE#2311]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][81] ([Intel XE#6703]) -> [SKIP][82] ([Intel XE#2313]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][83] ([Intel XE#1503]) -> [ABORT][84] ([Intel XE#6740])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][85] ([Intel XE#6703]) -> [SKIP][86] ([Intel XE#5021])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: [SKIP][87] ([Intel XE#6703]) -> [SKIP][88] ([Intel XE#870])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_pm_backlight@bad-brightness.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][89] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][90] ([Intel XE#1406] / [Intel XE#1489])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-bmg: [SKIP][91] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][92] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_psr@psr2-primary-page-flip.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_psr@psr2-primary-page-flip.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: [SKIP][93] ([Intel XE#6703]) -> [SKIP][94] ([Intel XE#2413])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-center.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][95] ([Intel XE#2426]) -> [FAIL][96] ([Intel XE#1729])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][97] ([Intel XE#2426]) -> [SKIP][98] ([Intel XE#2509])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: [SKIP][99] ([Intel XE#6703]) -> [SKIP][100] ([Intel XE#4837]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@xe_eudebug@basic-exec-queues.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: [SKIP][101] ([Intel XE#6703]) -> [SKIP][102] ([Intel XE#4837] / [Intel XE#6665])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-bmg: [SKIP][103] ([Intel XE#6703]) -> [SKIP][104] ([Intel XE#2322]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
- shard-bmg: [SKIP][105] ([Intel XE#6703]) -> [SKIP][106] ([Intel XE#4943]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
* igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
- shard-bmg: [SKIP][107] ([Intel XE#6703]) -> [SKIP][108] ([Intel XE#4733])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: [SKIP][109] ([Intel XE#6703]) -> [SKIP][110] ([Intel XE#944])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/shard-bmg-3/igt@xe_query@multigpu-query-invalid-extension.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[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#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[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#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6793
[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#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d -> xe-pw-158862v1
IGT_8664: 28cc709ad89c0ef569569f19f4772d4cca354963 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4230-7b8d2fe4514c3edbca3326b592b2fb0bd530527d: 7b8d2fe4514c3edbca3326b592b2fb0bd530527d
xe-pw-158862v1: 158862v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158862v1/index.html
[-- Attachment #2: Type: text/html, Size: 37564 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions
2025-12-12 14:46 ` [PATCH 0/6] " Ville Syrjälä
@ 2025-12-15 12:30 ` Jani Nikula
0 siblings, 0 replies; 14+ messages in thread
From: Jani Nikula @ 2025-12-15 12:30 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx, intel-xe
On Fri, 12 Dec 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Fri, Dec 12, 2025 at 04:14:03PM +0200, Jani Nikula wrote:
>> Fix some issues spotted by Ville.
>>
>> Jani Nikula (6):
>> drm/intel: fix parent interface kernel-doc
>> drm/intel: group individual funcs in parent interface
>> drm/intel: sort parent interface struct definitions and members
>> drm/i915: sort parent interface initialization
>> drm/xe: sort parent interface initialization
>> drm/i915/display: group and sort the parent interface wrappers better
>
> series is
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Thanks, pushed to din.
BR,
Jani.
>
>>
>> drivers/gpu/drm/i915/display/intel_parent.c | 45 ++++++++-------
>> drivers/gpu/drm/i915/display/intel_parent.h | 13 +++--
>> drivers/gpu/drm/i915/i915_driver.c | 27 ++++-----
>> drivers/gpu/drm/xe/display/xe_display.c | 2 +-
>> include/drm/intel/display_parent_interface.h | 59 +++++++++++---------
>> 5 files changed, 80 insertions(+), 66 deletions(-)
>>
>> --
>> 2.47.3
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2025-12-15 12:30 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-12 14:14 [PATCH 0/6] drm/{i915,xe}: clean up parent interface definitions Jani Nikula
2025-12-12 14:14 ` [PATCH 1/6] drm/intel: fix parent interface kernel-doc Jani Nikula
2025-12-12 14:14 ` [PATCH 2/6] drm/intel: group individual funcs in parent interface Jani Nikula
2025-12-12 14:14 ` [PATCH 3/6] drm/intel: sort parent interface struct definitions and members Jani Nikula
2025-12-12 14:14 ` [PATCH 4/6] drm/i915: sort parent interface initialization Jani Nikula
2025-12-12 14:14 ` [PATCH 5/6] drm/xe: " Jani Nikula
2025-12-12 14:14 ` [PATCH 6/6] drm/i915/display: group and sort the parent interface wrappers better Jani Nikula
2025-12-12 14:23 ` ✗ CI.checkpatch: warning for drm/{i915,xe}: clean up parent interface definitions Patchwork
2025-12-12 14:24 ` ✓ CI.KUnit: success " Patchwork
2025-12-12 14:46 ` [PATCH 0/6] " Ville Syrjälä
2025-12-15 12:30 ` Jani Nikula
2025-12-12 14:47 ` ✗ CI.checksparse: warning for " Patchwork
2025-12-12 15:35 ` ✓ Xe.CI.BAT: success " Patchwork
2025-12-13 6:11 ` ✓ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox