* [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements
@ 2026-01-09 8:17 Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 01/13] drm/i915/color: Place 3D LUT after CSC in plane color pipeline Chaitanya Kumar Borah
` (17 more replies)
0 siblings, 18 replies; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
This series contains follow-up fixes and improvements for the DRM color
pipeline infrastructure that was introduced in v6.19.[1][2]
The central handling of clean up of colorop from the mode_config list
is missing. While vkms calls drm_colorop_pipeline_destroy() in vkms_destroy(),
amd driver calls it only during failure of the init path and i915/xe driver
does not call it at all. This means amd and intel leaks these objects on
driver removal.
This series adds the teardown of mode_config.colorop_list in drm_mode_config_cleanup().
Since, i915/xe sub-classes the drm_colorop within intel_colorop it was not enough
to just use drm_colorop_pipeline_destroy(). Therefore, this series
- Introduces driver-managed destruction for drm_colorop objects and
updates core helpers to use driver-provided destroy callbacks.
- Ensures all colorop objects are correctly torn down during
mode_config cleanup and driver removal.
In addition to that following changes are made in the series
- Fixes enum name lifetime leaks in color pipeline init in i915, amdgpu_dm, and vkms
- Corrects the ordering of the 3D LUT block in the i915 plane color pipeline
- Refactors i915 plane color pipeline initialization to reliably clean
up partially constructed pipelines on failure.
Thanks for taking a look. Feedback is welcome.
[1] https://lore.kernel.org/dri-devel/cbe00ac4-a535-47d3-813a-e2eda7e9b991@amd.com/
[2] https://lore.kernel.org/intel-gfx/20251203085211.3663374-1-uma.shankar@intel.com/
v2:
- Re-arrange patches (Alex)
- Re-factor code to avoid repitition in pipeline creation (Suraj)
==
Chaitanya
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Uma Shankar <uma.shankar@intel.com>
Cc: Suraj Kandpal <suraj.kandpal@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Harry Wentland <harry.wentland@amd.com>
Cc: Alex Hung <alex.hung@amd.com>
Cc: Louis Chauvet <louis.chauvet@bootlin.com>
Cc: Melissa Wen <mwen@igalia.com>
Cc: Simon Ser <contact@emersion.fr>
Cc: Daniel Stone <daniels@collabora.com>
Cc: Nícolas F. R. A. Prado <nfraprado@collabora.com>
Chaitanya Kumar Borah (13):
drm/i915/color: Place 3D LUT after CSC in plane color pipeline
drm/amd/display: Fix color pipeline enum name leak
drm/vkms: Fix color pipeline enum name leak
drm/i915/display: Fix color pipeline enum name leak
drm/colorop: Add destroy helper for colorop objects
drm: Allow driver-managed destruction of colorop objects
drm/amd/display: Hook up colorop destroy helper for plane pipelines
drm/vkms: Hook up colorop destroy helper for plane pipelines
drm/i915/display: Hook up intel_colorop_destroy
drm: Clean up colorop objects during mode_config cleanup
drm/vkms: Remove drm_colorop_pipeline_destroy() from vkms_destroy()
drm/colorop: Use destroy callback for color pipeline teardown
drm/i915/color: Add failure handling in plane color pipeline init
.../amd/display/amdgpu_dm/amdgpu_dm_colorop.c | 31 ++-
.../amd/display/amdgpu_dm/amdgpu_dm_plane.c | 13 +-
drivers/gpu/drm/drm_colorop.c | 46 +++--
drivers/gpu/drm/drm_mode_config.c | 6 +
.../drm/i915/display/intel_color_pipeline.c | 179 +++++++++++++-----
drivers/gpu/drm/i915/display/intel_colorop.c | 6 +
drivers/gpu/drm/i915/display/intel_colorop.h | 1 +
drivers/gpu/drm/vkms/vkms_colorop.c | 31 +--
drivers/gpu/drm/vkms/vkms_drv.c | 1 -
include/drm/drm_colorop.h | 40 +++-
10 files changed, 264 insertions(+), 90 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 25+ messages in thread
* [PATCH v2 01/13] drm/i915/color: Place 3D LUT after CSC in plane color pipeline
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 02/13] drm/amd/display: Fix color pipeline enum name leak Chaitanya Kumar Borah
` (16 subsequent siblings)
17 siblings, 0 replies; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
Move the 3D LUT block to its correct position in the plane
color pipeline:
[Pre-CSC] -> [CSC] -> [3DLUT] -> [Post-CSC]
Fixes: 65db7a1f9cf7 ("drm/i915/color: Add 3D LUT to color pipeline")
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
---
.../drm/i915/display/intel_color_pipeline.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_color_pipeline.c b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
index 942d9b9c93ce..684641c8323b 100644
--- a/drivers/gpu/drm/i915/display/intel_color_pipeline.c
+++ b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
@@ -39,6 +39,15 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
/* TODO: handle failures and clean up */
prev_op = &colorop->base;
+ colorop = intel_colorop_create(INTEL_PLANE_CB_CSC);
+ ret = drm_plane_colorop_ctm_3x4_init(dev, &colorop->base, plane,
+ DRM_COLOROP_FLAG_ALLOW_BYPASS);
+ if (ret)
+ return ret;
+
+ drm_colorop_set_next_property(prev_op, &colorop->base);
+ prev_op = &colorop->base;
+
if (DISPLAY_VER(display) >= 35 &&
intel_color_crtc_has_3dlut(display, pipe) &&
plane->type == DRM_PLANE_TYPE_PRIMARY) {
@@ -55,15 +64,6 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
prev_op = &colorop->base;
}
- colorop = intel_colorop_create(INTEL_PLANE_CB_CSC);
- ret = drm_plane_colorop_ctm_3x4_init(dev, &colorop->base, plane,
- DRM_COLOROP_FLAG_ALLOW_BYPASS);
- if (ret)
- return ret;
-
- drm_colorop_set_next_property(prev_op, &colorop->base);
- prev_op = &colorop->base;
-
colorop = intel_colorop_create(INTEL_PLANE_CB_POST_CSC_LUT);
ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane,
PLANE_GAMMA_SIZE,
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 02/13] drm/amd/display: Fix color pipeline enum name leak
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 01/13] drm/i915/color: Place 3D LUT after CSC in plane color pipeline Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 03/13] drm/vkms: " Chaitanya Kumar Borah
` (15 subsequent siblings)
17 siblings, 0 replies; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
dm_plane_init_colorops() allocates enum names for color pipelines.
These are eventually passed to drm_property_create_enum() which create
its own copies of the string. Free the strings after initialization
is done.
Also, allocate color pipeline enum names only after successfully creating
color pipeline.
Fixes: 9ba25915efba ("drm/amd/display: Add support for sRGB EOTF in DEGAM block")
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Reviewed-by: Alex Hung <alex.hung@amd.com>
---
.../drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c | 4 +++-
.../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_plane.c | 13 +++++++++----
2 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c
index d585618b8064..a2de3bba8346 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c
@@ -79,7 +79,6 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
list->type = ops[i]->base.id;
- list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", ops[i]->base.id);
i++;
@@ -197,6 +196,9 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
drm_colorop_set_next_property(ops[i-1], ops[i]);
+
+ list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", ops[0]->base.id);
+
return 0;
cleanup:
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_plane.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_plane.c
index 2e3ee78999d9..7c4496fb4b9d 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_plane.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_plane.c
@@ -1790,12 +1790,13 @@ dm_atomic_plane_get_property(struct drm_plane *plane,
static int
dm_plane_init_colorops(struct drm_plane *plane)
{
- struct drm_prop_enum_list pipelines[MAX_COLOR_PIPELINES];
+ struct drm_prop_enum_list pipelines[MAX_COLOR_PIPELINES] = {};
struct drm_device *dev = plane->dev;
struct amdgpu_device *adev = drm_to_adev(dev);
struct dc *dc = adev->dm.dc;
int len = 0;
- int ret;
+ int ret = 0;
+ int i;
if (plane->type == DRM_PLANE_TYPE_CURSOR)
return 0;
@@ -1806,7 +1807,7 @@ dm_plane_init_colorops(struct drm_plane *plane)
if (ret) {
drm_err(plane->dev, "Failed to create color pipeline for plane %d: %d\n",
plane->base.id, ret);
- return ret;
+ goto out;
}
len++;
@@ -1814,7 +1815,11 @@ dm_plane_init_colorops(struct drm_plane *plane)
drm_plane_create_color_pipeline_property(plane, pipelines, len);
}
- return 0;
+out:
+ for (i = 0; i < len; i++)
+ kfree(pipelines[i].name);
+
+ return ret;
}
#endif
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 03/13] drm/vkms: Fix color pipeline enum name leak
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 01/13] drm/i915/color: Place 3D LUT after CSC in plane color pipeline Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 02/13] drm/amd/display: Fix color pipeline enum name leak Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-12 14:31 ` Louis Chauvet
2026-01-09 8:17 ` [PATCH v2 04/13] drm/i915/display: " Chaitanya Kumar Borah
` (14 subsequent siblings)
17 siblings, 1 reply; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
vkms_initialize_colorops() allocates enum names for color pipelines,
which are copied by drm_property_create_enum(). The temporary strings
were not freed, resulting in a memory leak.
Allocate enum names only after successful pipeline construction and
free them on all exit paths
Fixes: c1e578bd08da ("drm/vkms: Add enumerated 1D curve colorop")
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Reviewed-by: Alex Hung <alex.hung@amd.com>
---
drivers/gpu/drm/vkms/vkms_colorop.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/vkms/vkms_colorop.c b/drivers/gpu/drm/vkms/vkms_colorop.c
index 5c3ffc78aea0..d03a1f2e9c41 100644
--- a/drivers/gpu/drm/vkms/vkms_colorop.c
+++ b/drivers/gpu/drm/vkms/vkms_colorop.c
@@ -37,7 +37,6 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
list->type = ops[i]->base.id;
- list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", ops[i]->base.id);
i++;
@@ -88,6 +87,8 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
drm_colorop_set_next_property(ops[i - 1], ops[i]);
+ list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", ops[0]->base.id);
+
return 0;
cleanup:
@@ -103,18 +104,18 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
int vkms_initialize_colorops(struct drm_plane *plane)
{
- struct drm_prop_enum_list pipeline;
- int ret;
+ struct drm_prop_enum_list pipeline = {};
+ int ret = 0;
/* Add color pipeline */
ret = vkms_initialize_color_pipeline(plane, &pipeline);
if (ret)
- return ret;
+ goto out;
/* Create COLOR_PIPELINE property and attach */
ret = drm_plane_create_color_pipeline_property(plane, &pipeline, 1);
- if (ret)
- return ret;
- return 0;
+ kfree(pipeline.name);
+out:
+ return ret;
}
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 04/13] drm/i915/display: Fix color pipeline enum name leak
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (2 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 03/13] drm/vkms: " Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 05/13] drm/colorop: Add destroy helper for colorop objects Chaitanya Kumar Borah
` (13 subsequent siblings)
17 siblings, 0 replies; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
intel_color_pipeline_plane_init() allocates enum names for color
pipelines, which are copied by drm_property_create_enum(). The temporary
strings were not freed, resulting in a memory leak.
Allocate enum names only after successful pipeline construction and free
them on all exit paths.
Fixes: ef105316819d ("drm/i915/color: Create a transfer function color pipeline")
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
---
.../drm/i915/display/intel_color_pipeline.c | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_color_pipeline.c b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
index 684641c8323b..04af552b3648 100644
--- a/drivers/gpu/drm/i915/display/intel_color_pipeline.c
+++ b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
@@ -34,7 +34,6 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
return ret;
list->type = colorop->base.base.id;
- list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", colorop->base.base.id);
/* TODO: handle failures and clean up */
prev_op = &colorop->base;
@@ -74,6 +73,8 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
drm_colorop_set_next_property(prev_op, &colorop->base);
+ list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", list->type);
+
return 0;
}
@@ -81,9 +82,10 @@ int intel_color_pipeline_plane_init(struct drm_plane *plane, enum pipe pipe)
{
struct drm_device *dev = plane->dev;
struct intel_display *display = to_intel_display(dev);
- struct drm_prop_enum_list pipelines[MAX_COLOR_PIPELINES];
+ struct drm_prop_enum_list pipelines[MAX_COLOR_PIPELINES] = {};
int len = 0;
- int ret;
+ int ret = 0;
+ int i;
/* Currently expose pipeline only for HDR planes */
if (!icl_is_hdr_plane(display, to_intel_plane(plane)->id))
@@ -92,8 +94,14 @@ int intel_color_pipeline_plane_init(struct drm_plane *plane, enum pipe pipe)
/* Add pipeline consisting of transfer functions */
ret = _intel_color_pipeline_plane_init(plane, &pipelines[len], pipe);
if (ret)
- return ret;
+ goto out;
len++;
- return drm_plane_create_color_pipeline_property(plane, pipelines, len);
+ ret = drm_plane_create_color_pipeline_property(plane, pipelines, len);
+
+ for (i = 0; i < len; i++)
+ kfree(pipelines[i].name);
+
+out:
+ return ret;
}
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 05/13] drm/colorop: Add destroy helper for colorop objects
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (3 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 04/13] drm/i915/display: " Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-12 11:23 ` Jani Nikula
2026-01-09 8:17 ` [PATCH v2 06/13] drm: Allow driver-managed destruction of " Chaitanya Kumar Borah
` (12 subsequent siblings)
17 siblings, 1 reply; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
Add a helper that performs common cleanup and frees the
associated object. This can be used by drivers if they do not
require any driver-specific teardown.
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Reviewed-by: Alex Hung <alex.hung@amd.com>
---
drivers/gpu/drm/drm_colorop.c | 12 ++++++++++++
include/drm/drm_colorop.h | 10 ++++++++++
2 files changed, 22 insertions(+)
diff --git a/drivers/gpu/drm/drm_colorop.c b/drivers/gpu/drm/drm_colorop.c
index 44eb823585d2..ba19a3ab23cb 100644
--- a/drivers/gpu/drm/drm_colorop.c
+++ b/drivers/gpu/drm/drm_colorop.c
@@ -178,6 +178,18 @@ void drm_colorop_cleanup(struct drm_colorop *colorop)
}
EXPORT_SYMBOL(drm_colorop_cleanup);
+/**
+ * drm_colorop_destroy() - Helper for colorop destruction
+ *
+ * @colorop: colorop to destroy
+ */
+void drm_colorop_destroy(struct drm_colorop *colorop)
+{
+ drm_colorop_cleanup(colorop);
+ kfree(colorop);
+}
+EXPORT_SYMBOL(drm_colorop_destroy);
+
/**
* drm_colorop_pipeline_destroy - Helper for color pipeline destruction
*
diff --git a/include/drm/drm_colorop.h b/include/drm/drm_colorop.h
index a3a32f9f918c..0f5ba72c1704 100644
--- a/include/drm/drm_colorop.h
+++ b/include/drm/drm_colorop.h
@@ -420,6 +420,16 @@ void drm_colorop_atomic_destroy_state(struct drm_colorop *colorop,
*/
void drm_colorop_reset(struct drm_colorop *colorop);
+/**
+ * drm_colorop_destroy - destroy colorop
+ * @colorop: drm colorop
+ *
+ * Destroys @colorop by performing common DRM cleanup and freeing the
+ * colorop object. This can be used by drivers if they do not
+ * require any driver-specific teardown.
+ */
+void drm_colorop_destroy(struct drm_colorop *colorop);
+
/**
* drm_colorop_index - find the index of a registered colorop
* @colorop: colorop to find index for
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 06/13] drm: Allow driver-managed destruction of colorop objects
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (4 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 05/13] drm/colorop: Add destroy helper for colorop objects Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 07/13] drm/amd/display: Hook up colorop destroy helper for plane pipelines Chaitanya Kumar Borah
` (11 subsequent siblings)
17 siblings, 0 replies; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
Some drivers might want to embed struct drm_colorop inside
driver-specific objects, similar to planes or CRTCs. In such
cases, freeing only the drm_colorop is incorrect.
Add a drm_colorop_funcs callback to allow drivers to provide a destroy
hook that cleans up the full enclosing object. Make changes in helper
functions to accept helper functions as argument. Pass NULL for now
to retain current behavior.
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Reviewed-by: Alex Hung <alex.hung@amd.com>
---
.../amd/display/amdgpu_dm/amdgpu_dm_colorop.c | 18 ++++++-----
drivers/gpu/drm/drm_colorop.c | 31 +++++++++++++------
.../drm/i915/display/intel_color_pipeline.c | 8 ++---
drivers/gpu/drm/vkms/vkms_colorop.c | 10 +++---
include/drm/drm_colorop.h | 30 +++++++++++++++---
5 files changed, 66 insertions(+), 31 deletions(-)
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c
index a2de3bba8346..dfdb4fb4219f 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c
@@ -72,7 +72,7 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane,
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL,
amdgpu_dm_supported_degam_tfs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
@@ -89,7 +89,7 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_mult_init(dev, ops[i], plane, DRM_COLOROP_FLAG_ALLOW_BYPASS);
+ ret = drm_plane_colorop_mult_init(dev, ops[i], plane, NULL, DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
@@ -104,7 +104,8 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, DRM_COLOROP_FLAG_ALLOW_BYPASS);
+ ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, NULL,
+ DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
@@ -120,7 +121,7 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane,
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL,
amdgpu_dm_supported_shaper_tfs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
@@ -137,7 +138,8 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_lut_init(dev, ops[i], plane, MAX_COLOR_LUT_ENTRIES,
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, ops[i], plane, NULL,
+ MAX_COLOR_LUT_ENTRIES,
DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
@@ -154,7 +156,7 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_3dlut_init(dev, ops[i], plane, LUT3D_SIZE,
+ ret = drm_plane_colorop_3dlut_init(dev, ops[i], plane, NULL, LUT3D_SIZE,
DRM_COLOROP_LUT3D_INTERPOLATION_TETRAHEDRAL,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
@@ -172,7 +174,7 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane,
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL,
amdgpu_dm_supported_blnd_tfs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
@@ -189,7 +191,7 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_lut_init(dev, ops[i], plane, MAX_COLOR_LUT_ENTRIES,
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, ops[i], plane, NULL, MAX_COLOR_LUT_ENTRIES,
DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
diff --git a/drivers/gpu/drm/drm_colorop.c b/drivers/gpu/drm/drm_colorop.c
index ba19a3ab23cb..4b27804bb0bd 100644
--- a/drivers/gpu/drm/drm_colorop.c
+++ b/drivers/gpu/drm/drm_colorop.c
@@ -93,7 +93,8 @@ static const struct drm_prop_enum_list drm_colorop_lut3d_interpolation_list[] =
/* Init Helpers */
static int drm_plane_colorop_init(struct drm_device *dev, struct drm_colorop *colorop,
- struct drm_plane *plane, enum drm_colorop_type type,
+ struct drm_plane *plane, const struct drm_colorop_funcs *funcs,
+ enum drm_colorop_type type,
uint32_t flags)
{
struct drm_mode_config *config = &dev->mode_config;
@@ -109,6 +110,7 @@ static int drm_plane_colorop_init(struct drm_device *dev, struct drm_colorop *co
colorop->type = type;
colorop->plane = plane;
colorop->next = NULL;
+ colorop->funcs = funcs;
list_add_tail(&colorop->head, &config->colorop_list);
colorop->index = config->num_colorop++;
@@ -215,6 +217,7 @@ EXPORT_SYMBOL(drm_colorop_pipeline_destroy);
* @dev: DRM device
* @colorop: The drm_colorop object to initialize
* @plane: The associated drm_plane
+ * @funcs: control functions for the new colorop
* @supported_tfs: A bitfield of supported drm_plane_colorop_curve_1d_init enum values,
* created using BIT(curve_type) and combined with the OR '|'
* operator.
@@ -222,7 +225,8 @@ EXPORT_SYMBOL(drm_colorop_pipeline_destroy);
* @return zero on success, -E value on failure
*/
int drm_plane_colorop_curve_1d_init(struct drm_device *dev, struct drm_colorop *colorop,
- struct drm_plane *plane, u64 supported_tfs, uint32_t flags)
+ struct drm_plane *plane, const struct drm_colorop_funcs *funcs,
+ u64 supported_tfs, uint32_t flags)
{
struct drm_prop_enum_list enum_list[DRM_COLOROP_1D_CURVE_COUNT];
int i, len;
@@ -243,7 +247,7 @@ int drm_plane_colorop_curve_1d_init(struct drm_device *dev, struct drm_colorop *
return -EINVAL;
}
- ret = drm_plane_colorop_init(dev, colorop, plane, DRM_COLOROP_1D_CURVE, flags);
+ ret = drm_plane_colorop_init(dev, colorop, plane, funcs, DRM_COLOROP_1D_CURVE, flags);
if (ret)
return ret;
@@ -300,20 +304,23 @@ static int drm_colorop_create_data_prop(struct drm_device *dev, struct drm_color
* @dev: DRM device
* @colorop: The drm_colorop object to initialize
* @plane: The associated drm_plane
+ * @funcs: control functions for new colorop
* @lut_size: LUT size supported by driver
* @interpolation: 1D LUT interpolation type
* @flags: bitmask of misc, see DRM_COLOROP_FLAG_* defines.
* @return zero on success, -E value on failure
*/
int drm_plane_colorop_curve_1d_lut_init(struct drm_device *dev, struct drm_colorop *colorop,
- struct drm_plane *plane, uint32_t lut_size,
+ struct drm_plane *plane,
+ const struct drm_colorop_funcs *funcs,
+ uint32_t lut_size,
enum drm_colorop_lut1d_interpolation_type interpolation,
uint32_t flags)
{
struct drm_property *prop;
int ret;
- ret = drm_plane_colorop_init(dev, colorop, plane, DRM_COLOROP_1D_LUT, flags);
+ ret = drm_plane_colorop_init(dev, colorop, plane, funcs, DRM_COLOROP_1D_LUT, flags);
if (ret)
return ret;
@@ -351,11 +358,12 @@ int drm_plane_colorop_curve_1d_lut_init(struct drm_device *dev, struct drm_color
EXPORT_SYMBOL(drm_plane_colorop_curve_1d_lut_init);
int drm_plane_colorop_ctm_3x4_init(struct drm_device *dev, struct drm_colorop *colorop,
- struct drm_plane *plane, uint32_t flags)
+ struct drm_plane *plane, const struct drm_colorop_funcs *funcs,
+ uint32_t flags)
{
int ret;
- ret = drm_plane_colorop_init(dev, colorop, plane, DRM_COLOROP_CTM_3X4, flags);
+ ret = drm_plane_colorop_init(dev, colorop, plane, funcs, DRM_COLOROP_CTM_3X4, flags);
if (ret)
return ret;
@@ -375,16 +383,18 @@ EXPORT_SYMBOL(drm_plane_colorop_ctm_3x4_init);
* @dev: DRM device
* @colorop: The drm_colorop object to initialize
* @plane: The associated drm_plane
+ * @funcs: control functions for the new colorop
* @flags: bitmask of misc, see DRM_COLOROP_FLAG_* defines.
* @return zero on success, -E value on failure
*/
int drm_plane_colorop_mult_init(struct drm_device *dev, struct drm_colorop *colorop,
- struct drm_plane *plane, uint32_t flags)
+ struct drm_plane *plane, const struct drm_colorop_funcs *funcs,
+ uint32_t flags)
{
struct drm_property *prop;
int ret;
- ret = drm_plane_colorop_init(dev, colorop, plane, DRM_COLOROP_MULTIPLIER, flags);
+ ret = drm_plane_colorop_init(dev, colorop, plane, funcs, DRM_COLOROP_MULTIPLIER, flags);
if (ret)
return ret;
@@ -403,6 +413,7 @@ EXPORT_SYMBOL(drm_plane_colorop_mult_init);
int drm_plane_colorop_3dlut_init(struct drm_device *dev, struct drm_colorop *colorop,
struct drm_plane *plane,
+ const struct drm_colorop_funcs *funcs,
uint32_t lut_size,
enum drm_colorop_lut3d_interpolation_type interpolation,
uint32_t flags)
@@ -410,7 +421,7 @@ int drm_plane_colorop_3dlut_init(struct drm_device *dev, struct drm_colorop *col
struct drm_property *prop;
int ret;
- ret = drm_plane_colorop_init(dev, colorop, plane, DRM_COLOROP_3D_LUT, flags);
+ ret = drm_plane_colorop_init(dev, colorop, plane, funcs, DRM_COLOROP_3D_LUT, flags);
if (ret)
return ret;
diff --git a/drivers/gpu/drm/i915/display/intel_color_pipeline.c b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
index 04af552b3648..d3d73d60727c 100644
--- a/drivers/gpu/drm/i915/display/intel_color_pipeline.c
+++ b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
@@ -25,7 +25,7 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
colorop = intel_colorop_create(INTEL_PLANE_CB_PRE_CSC_LUT);
- ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane,
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane, NULL,
PLANE_DEGAMMA_SIZE,
DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
@@ -39,7 +39,7 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
prev_op = &colorop->base;
colorop = intel_colorop_create(INTEL_PLANE_CB_CSC);
- ret = drm_plane_colorop_ctm_3x4_init(dev, &colorop->base, plane,
+ ret = drm_plane_colorop_ctm_3x4_init(dev, &colorop->base, plane, NULL,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
return ret;
@@ -52,7 +52,7 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
plane->type == DRM_PLANE_TYPE_PRIMARY) {
colorop = intel_colorop_create(INTEL_PLANE_CB_3DLUT);
- ret = drm_plane_colorop_3dlut_init(dev, &colorop->base, plane, 17,
+ ret = drm_plane_colorop_3dlut_init(dev, &colorop->base, plane, NULL, 17,
DRM_COLOROP_LUT3D_INTERPOLATION_TETRAHEDRAL,
true);
if (ret)
@@ -64,7 +64,7 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
}
colorop = intel_colorop_create(INTEL_PLANE_CB_POST_CSC_LUT);
- ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane,
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane, NULL,
PLANE_GAMMA_SIZE,
DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
diff --git a/drivers/gpu/drm/vkms/vkms_colorop.c b/drivers/gpu/drm/vkms/vkms_colorop.c
index d03a1f2e9c41..9e9dd0494628 100644
--- a/drivers/gpu/drm/vkms/vkms_colorop.c
+++ b/drivers/gpu/drm/vkms/vkms_colorop.c
@@ -31,7 +31,7 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, supported_tfs,
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL, supported_tfs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
@@ -48,7 +48,8 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, DRM_COLOROP_FLAG_ALLOW_BYPASS);
+ ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, NULL,
+ DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
@@ -64,7 +65,8 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, DRM_COLOROP_FLAG_ALLOW_BYPASS);
+ ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, NULL,
+ DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
@@ -80,7 +82,7 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, supported_tfs,
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL, supported_tfs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
diff --git a/include/drm/drm_colorop.h b/include/drm/drm_colorop.h
index 0f5ba72c1704..ee6454b08b2d 100644
--- a/include/drm/drm_colorop.h
+++ b/include/drm/drm_colorop.h
@@ -187,6 +187,19 @@ struct drm_colorop_state {
struct drm_atomic_state *state;
};
+/**
+ * struct drm_colorop_funcs - driver colorop control functions
+ */
+struct drm_colorop_funcs {
+ /**
+ * @destroy:
+ *
+ * Clean up colorop resources. This is called at driver unload time
+ * through drm_mode_config_cleanup()
+ */
+ void (*destroy)(struct drm_colorop *colorop);
+};
+
/**
* struct drm_colorop - DRM color operation control structure
*
@@ -362,6 +375,8 @@ struct drm_colorop {
*/
struct drm_property *next_property;
+ /** @funcs: colorop control functions */
+ const struct drm_colorop_funcs *funcs;
};
#define obj_to_colorop(x) container_of(x, struct drm_colorop, base)
@@ -390,17 +405,22 @@ void drm_colorop_pipeline_destroy(struct drm_device *dev);
void drm_colorop_cleanup(struct drm_colorop *colorop);
int drm_plane_colorop_curve_1d_init(struct drm_device *dev, struct drm_colorop *colorop,
- struct drm_plane *plane, u64 supported_tfs, uint32_t flags);
+ struct drm_plane *plane, const struct drm_colorop_funcs *funcs,
+ u64 supported_tfs, uint32_t flags);
int drm_plane_colorop_curve_1d_lut_init(struct drm_device *dev, struct drm_colorop *colorop,
- struct drm_plane *plane, uint32_t lut_size,
+ struct drm_plane *plane,
+ const struct drm_colorop_funcs *funcs,
+ uint32_t lut_size,
enum drm_colorop_lut1d_interpolation_type interpolation,
uint32_t flags);
int drm_plane_colorop_ctm_3x4_init(struct drm_device *dev, struct drm_colorop *colorop,
- struct drm_plane *plane, uint32_t flags);
+ struct drm_plane *plane, const struct drm_colorop_funcs *funcs,
+ uint32_t flags);
int drm_plane_colorop_mult_init(struct drm_device *dev, struct drm_colorop *colorop,
- struct drm_plane *plane, uint32_t flags);
+ struct drm_plane *plane, const struct drm_colorop_funcs *funcs,
+ uint32_t flags);
int drm_plane_colorop_3dlut_init(struct drm_device *dev, struct drm_colorop *colorop,
- struct drm_plane *plane,
+ struct drm_plane *plane, const struct drm_colorop_funcs *funcs,
uint32_t lut_size,
enum drm_colorop_lut3d_interpolation_type interpolation,
uint32_t flags);
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 07/13] drm/amd/display: Hook up colorop destroy helper for plane pipelines
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (5 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 06/13] drm: Allow driver-managed destruction of " Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 08/13] drm/vkms: " Chaitanya Kumar Borah
` (10 subsequent siblings)
17 siblings, 0 replies; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
Provide a drm_colorop_funcs instance for amdgpu_dm color pipeline
objects and hook up the common drm_colorop_destroy() helper as the
destroy callback.
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Reviewed-by: Alex Hung <alex.hung@amd.com>
---
.../amd/display/amdgpu_dm/amdgpu_dm_colorop.c | 25 +++++++++++++------
1 file changed, 17 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c
index dfdb4fb4219f..5130962193d9 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c
@@ -55,6 +55,10 @@ const u64 amdgpu_dm_supported_blnd_tfs =
#define LUT3D_SIZE 17
+static const struct drm_colorop_funcs dm_colorop_funcs = {
+ .destroy = drm_colorop_destroy,
+};
+
int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_prop_enum_list *list)
{
struct drm_colorop *ops[MAX_COLOR_PIPELINE_OPS];
@@ -72,7 +76,7 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL,
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, &dm_colorop_funcs,
amdgpu_dm_supported_degam_tfs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
@@ -89,7 +93,8 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_mult_init(dev, ops[i], plane, NULL, DRM_COLOROP_FLAG_ALLOW_BYPASS);
+ ret = drm_plane_colorop_mult_init(dev, ops[i], plane, &dm_colorop_funcs,
+ DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
@@ -104,7 +109,8 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, NULL,
+ ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane,
+ &dm_colorop_funcs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
@@ -121,7 +127,7 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL,
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, &dm_colorop_funcs,
amdgpu_dm_supported_shaper_tfs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
@@ -138,7 +144,8 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_lut_init(dev, ops[i], plane, NULL,
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, ops[i], plane,
+ &dm_colorop_funcs,
MAX_COLOR_LUT_ENTRIES,
DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
@@ -156,7 +163,8 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_3dlut_init(dev, ops[i], plane, NULL, LUT3D_SIZE,
+ ret = drm_plane_colorop_3dlut_init(dev, ops[i], plane,
+ &dm_colorop_funcs, LUT3D_SIZE,
DRM_COLOROP_LUT3D_INTERPOLATION_TETRAHEDRAL,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
@@ -174,7 +182,7 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL,
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, &dm_colorop_funcs,
amdgpu_dm_supported_blnd_tfs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
@@ -191,7 +199,8 @@ int amdgpu_dm_initialize_default_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_lut_init(dev, ops[i], plane, NULL, MAX_COLOR_LUT_ENTRIES,
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, ops[i], plane, &dm_colorop_funcs,
+ MAX_COLOR_LUT_ENTRIES,
DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 08/13] drm/vkms: Hook up colorop destroy helper for plane pipelines
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (6 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 07/13] drm/amd/display: Hook up colorop destroy helper for plane pipelines Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-12 14:33 ` Louis Chauvet
2026-01-09 8:17 ` [PATCH v2 09/13] drm/i915/display: Hook up intel_colorop_destroy Chaitanya Kumar Borah
` (9 subsequent siblings)
17 siblings, 1 reply; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
Provide a drm_colorop_funcs instance for vkms color pipeline
objects and hook up the common drm_colorop_destroy() helper as the
destroy callback.
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Reviewed-by: Alex Hung <alex.hung@amd.com>
---
drivers/gpu/drm/vkms/vkms_colorop.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/vkms/vkms_colorop.c b/drivers/gpu/drm/vkms/vkms_colorop.c
index 9e9dd0494628..ba826ad384b7 100644
--- a/drivers/gpu/drm/vkms/vkms_colorop.c
+++ b/drivers/gpu/drm/vkms/vkms_colorop.c
@@ -12,6 +12,10 @@ static const u64 supported_tfs =
BIT(DRM_COLOROP_1D_CURVE_SRGB_EOTF) |
BIT(DRM_COLOROP_1D_CURVE_SRGB_INV_EOTF);
+static const struct drm_colorop_funcs vkms_colorop_funcs = {
+ .destroy = drm_colorop_destroy,
+};
+
#define MAX_COLOR_PIPELINE_OPS 4
static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_prop_enum_list *list)
@@ -31,7 +35,8 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL, supported_tfs,
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, &vkms_colorop_funcs,
+ supported_tfs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
@@ -48,7 +53,7 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, NULL,
+ ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, &vkms_colorop_funcs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
@@ -65,7 +70,7 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, NULL,
+ ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, &vkms_colorop_funcs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
@@ -82,7 +87,8 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
goto cleanup;
}
- ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL, supported_tfs,
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, &vkms_colorop_funcs,
+ supported_tfs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
goto cleanup;
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 09/13] drm/i915/display: Hook up intel_colorop_destroy
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (7 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 08/13] drm/vkms: " Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 10/13] drm: Clean up colorop objects during mode_config cleanup Chaitanya Kumar Borah
` (8 subsequent siblings)
17 siblings, 0 replies; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
i915 embeds struct drm_colorop inside struct intel_colorop, so the
default drm_colorop_destroy() helper cannot be used. Add an
intel_colorop_destroy() helper that performs common DRM cleanup and
frees intel_colorop object.
This ensures correct teardown of plane color pipeline objects.
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
---
drivers/gpu/drm/i915/display/intel_color_pipeline.c | 13 +++++++++----
drivers/gpu/drm/i915/display/intel_colorop.c | 6 ++++++
drivers/gpu/drm/i915/display/intel_colorop.h | 1 +
3 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_color_pipeline.c b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
index d3d73d60727c..8fecc53540ba 100644
--- a/drivers/gpu/drm/i915/display/intel_color_pipeline.c
+++ b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
@@ -13,6 +13,10 @@
#define PLANE_DEGAMMA_SIZE 128
#define PLANE_GAMMA_SIZE 32
+static const struct drm_colorop_funcs intel_colorop_funcs = {
+ .destroy = intel_colorop_destroy,
+};
+
static
int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_enum_list *list,
enum pipe pipe)
@@ -25,7 +29,7 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
colorop = intel_colorop_create(INTEL_PLANE_CB_PRE_CSC_LUT);
- ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane, NULL,
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane, &intel_colorop_funcs,
PLANE_DEGAMMA_SIZE,
DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
@@ -39,7 +43,7 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
prev_op = &colorop->base;
colorop = intel_colorop_create(INTEL_PLANE_CB_CSC);
- ret = drm_plane_colorop_ctm_3x4_init(dev, &colorop->base, plane, NULL,
+ ret = drm_plane_colorop_ctm_3x4_init(dev, &colorop->base, plane, &intel_colorop_funcs,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
return ret;
@@ -52,7 +56,8 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
plane->type == DRM_PLANE_TYPE_PRIMARY) {
colorop = intel_colorop_create(INTEL_PLANE_CB_3DLUT);
- ret = drm_plane_colorop_3dlut_init(dev, &colorop->base, plane, NULL, 17,
+ ret = drm_plane_colorop_3dlut_init(dev, &colorop->base, plane,
+ &intel_colorop_funcs, 17,
DRM_COLOROP_LUT3D_INTERPOLATION_TETRAHEDRAL,
true);
if (ret)
@@ -64,7 +69,7 @@ int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_en
}
colorop = intel_colorop_create(INTEL_PLANE_CB_POST_CSC_LUT);
- ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane, NULL,
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane, &intel_colorop_funcs,
PLANE_GAMMA_SIZE,
DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
DRM_COLOROP_FLAG_ALLOW_BYPASS);
diff --git a/drivers/gpu/drm/i915/display/intel_colorop.c b/drivers/gpu/drm/i915/display/intel_colorop.c
index 1d84933f05aa..9e54f51cfad8 100644
--- a/drivers/gpu/drm/i915/display/intel_colorop.c
+++ b/drivers/gpu/drm/i915/display/intel_colorop.c
@@ -35,3 +35,9 @@ struct intel_colorop *intel_colorop_create(enum intel_color_block id)
return colorop;
}
+
+void intel_colorop_destroy(struct drm_colorop *colorop)
+{
+ drm_colorop_cleanup(colorop);
+ kfree(to_intel_colorop(colorop));
+}
diff --git a/drivers/gpu/drm/i915/display/intel_colorop.h b/drivers/gpu/drm/i915/display/intel_colorop.h
index 9276eee6e75a..638baf67d98d 100644
--- a/drivers/gpu/drm/i915/display/intel_colorop.h
+++ b/drivers/gpu/drm/i915/display/intel_colorop.h
@@ -13,5 +13,6 @@ struct intel_colorop;
struct intel_colorop *to_intel_colorop(struct drm_colorop *colorop);
struct intel_colorop *intel_colorop_alloc(void);
struct intel_colorop *intel_colorop_create(enum intel_color_block id);
+void intel_colorop_destroy(struct drm_colorop *colorop);
#endif /* __INTEL_COLOROP_H__ */
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 10/13] drm: Clean up colorop objects during mode_config cleanup
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (8 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 09/13] drm/i915/display: Hook up intel_colorop_destroy Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 11/13] drm/vkms: Remove drm_colorop_pipeline_destroy() from vkms_destroy() Chaitanya Kumar Borah
` (7 subsequent siblings)
17 siblings, 0 replies; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
Tear down all registered drm_colorop objects during
drm_mode_config_cleanup() by invoking their destroy callbacks.
This ensures proper cleanup of color pipeline objects during DRM device
removal.
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Reviewed-by: Alex Hung <alex.hung@amd.com>
---
drivers/gpu/drm/drm_mode_config.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/drm_mode_config.c b/drivers/gpu/drm/drm_mode_config.c
index d12db9b0bab8..84ae8a23a367 100644
--- a/drivers/gpu/drm/drm_mode_config.c
+++ b/drivers/gpu/drm/drm_mode_config.c
@@ -524,6 +524,7 @@ void drm_mode_config_cleanup(struct drm_device *dev)
struct drm_property *property, *pt;
struct drm_property_blob *blob, *bt;
struct drm_plane *plane, *plt;
+ struct drm_colorop *colorop, *copt;
list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
head) {
@@ -553,6 +554,11 @@ void drm_mode_config_cleanup(struct drm_device *dev)
drm_property_destroy(dev, property);
}
+ list_for_each_entry_safe(colorop, copt, &dev->mode_config.colorop_list,
+ head) {
+ colorop->funcs->destroy(colorop);
+ }
+
list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
head) {
plane->funcs->destroy(plane);
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 11/13] drm/vkms: Remove drm_colorop_pipeline_destroy() from vkms_destroy()
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (9 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 10/13] drm: Clean up colorop objects during mode_config cleanup Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-12 14:33 ` Louis Chauvet
2026-01-09 8:17 ` [PATCH v2 12/13] drm/colorop: Use destroy callback for color pipeline teardown Chaitanya Kumar Borah
` (6 subsequent siblings)
17 siblings, 1 reply; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
Now that colorops are cleaned from drm_mode_config_cleanup(), remove
drm_colorop_pipeline_destroy() from vkms_destroy().
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
---
drivers/gpu/drm/vkms/vkms_drv.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/gpu/drm/vkms/vkms_drv.c b/drivers/gpu/drm/vkms/vkms_drv.c
index 434c295f44ba..95020765c4c2 100644
--- a/drivers/gpu/drm/vkms/vkms_drv.c
+++ b/drivers/gpu/drm/vkms/vkms_drv.c
@@ -259,7 +259,6 @@ void vkms_destroy(struct vkms_config *config)
fdev = config->dev->faux_dev;
- drm_colorop_pipeline_destroy(&config->dev->drm);
drm_dev_unregister(&config->dev->drm);
drm_atomic_helper_shutdown(&config->dev->drm);
devres_release_group(&fdev->dev, NULL);
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 12/13] drm/colorop: Use destroy callback for color pipeline teardown
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (10 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 11/13] drm/vkms: Remove drm_colorop_pipeline_destroy() from vkms_destroy() Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 13/13] drm/i915/color: Add failure handling in plane color pipeline init Chaitanya Kumar Borah
` (5 subsequent siblings)
17 siblings, 0 replies; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
Switch drm_colorop_pipeline_destroy() to use the driver-provided
destroy callback instead of directly calling drm_colorop_cleanup()
and freeing the object.
This allows drivers that embed struct drm_colorop in driver-specific
objects to perform correct teardown.
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Reviewed-by: Alex Hung <alex.hung@amd.com>
---
drivers/gpu/drm/drm_colorop.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/drm_colorop.c b/drivers/gpu/drm/drm_colorop.c
index 4b27804bb0bd..fafe45b93ff8 100644
--- a/drivers/gpu/drm/drm_colorop.c
+++ b/drivers/gpu/drm/drm_colorop.c
@@ -205,8 +205,7 @@ void drm_colorop_pipeline_destroy(struct drm_device *dev)
struct drm_colorop *colorop, *next;
list_for_each_entry_safe(colorop, next, &config->colorop_list, head) {
- drm_colorop_cleanup(colorop);
- kfree(colorop);
+ colorop->funcs->destroy(colorop);
}
}
EXPORT_SYMBOL(drm_colorop_pipeline_destroy);
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH v2 13/13] drm/i915/color: Add failure handling in plane color pipeline init
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (11 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 12/13] drm/colorop: Use destroy callback for color pipeline teardown Chaitanya Kumar Borah
@ 2026-01-09 8:17 ` Chaitanya Kumar Borah
2026-01-09 9:20 ` Kandpal, Suraj
2026-01-09 8:52 ` ✗ CI.checkpatch: warning for drm: Color pipeline teardown and follow-up fixes/improvements (rev2) Patchwork
` (4 subsequent siblings)
17 siblings, 1 reply; 25+ messages in thread
From: Chaitanya Kumar Borah @ 2026-01-09 8:17 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, louis.chauvet, mwen, contact,
alex.hung, daniels, uma.shankar, suraj.kandpal, nfraprado,
ville.syrjala, matthew.d.roper
The plane color pipeline initialization built up multiple colorop blocks
inline, but did not reliably clean up partially constructed pipelines
when an intermediate step failed. This could lead to leaked colorop
objects and fragile error handling as the pipeline grows.
Refactor the pipeline construction to use a common helper for adding
colorop blocks. This centralizes allocation, initialization, and
teardown logic, allowing the caller to reliably unwind all previously
created colorops on failure.
v2:
- Refactor code to avoid repetition (Suraj)
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
.../drm/i915/display/intel_color_pipeline.c | 164 +++++++++++++-----
1 file changed, 117 insertions(+), 47 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_color_pipeline.c b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
index 8fecc53540ba..1b8d504fa9f2 100644
--- a/drivers/gpu/drm/i915/display/intel_color_pipeline.c
+++ b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
@@ -2,6 +2,8 @@
/*
* Copyright © 2025 Intel Corporation
*/
+#include <drm/drm_print.h>
+
#include "intel_color.h"
#include "intel_colorop.h"
#include "intel_color_pipeline.h"
@@ -10,6 +12,7 @@
#include "skl_universal_plane.h"
#define MAX_COLOR_PIPELINES 1
+#define MAX_COLOROP 4
#define PLANE_DEGAMMA_SIZE 128
#define PLANE_GAMMA_SIZE 32
@@ -17,70 +20,137 @@ static const struct drm_colorop_funcs intel_colorop_funcs = {
.destroy = intel_colorop_destroy,
};
+/*
+ * 3DLUT can be bound to all three HDR planes. However, even with the latest
+ * color pipeline UAPI, there is no good way to represent a HW block which
+ * can be shared/attached at different stages of the pipeline. So right now,
+ * we expose 3DLUT only attached with the primary plane.
+ *
+ * That way we don't confuse the userspace with opaque commit failures
+ * on trying to enable it on multiple planes which would otherwise make
+ * the pipeline totally unusable.
+ */
+static const enum intel_color_block nvl_primary_plane_pipeline[] = {
+ INTEL_PLANE_CB_PRE_CSC_LUT,
+ INTEL_PLANE_CB_CSC,
+ INTEL_PLANE_CB_3DLUT,
+ INTEL_PLANE_CB_POST_CSC_LUT,
+};
+
+static const enum intel_color_block hdr_plane_pipeline[] = {
+ INTEL_PLANE_CB_PRE_CSC_LUT,
+ INTEL_PLANE_CB_CSC,
+ INTEL_PLANE_CB_POST_CSC_LUT,
+};
+
+static bool plane_has_3dlut(struct intel_display *display, enum pipe pipe,
+ struct drm_plane *plane)
+{
+ return (DISPLAY_VER(display) >= 35 &&
+ intel_color_crtc_has_3dlut(display, pipe) &&
+ plane->type == DRM_PLANE_TYPE_PRIMARY);
+}
+
static
-int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_enum_list *list,
- enum pipe pipe)
+struct intel_colorop *intel_color_pipeline_plane_add_colorop(struct drm_plane *plane,
+ struct intel_colorop *prev,
+ enum intel_color_block id)
{
struct drm_device *dev = plane->dev;
- struct intel_display *display = to_intel_display(dev);
- struct drm_colorop *prev_op;
struct intel_colorop *colorop;
int ret;
- colorop = intel_colorop_create(INTEL_PLANE_CB_PRE_CSC_LUT);
-
- ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane, &intel_colorop_funcs,
- PLANE_DEGAMMA_SIZE,
- DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
- DRM_COLOROP_FLAG_ALLOW_BYPASS);
-
- if (ret)
- return ret;
-
- list->type = colorop->base.base.id;
-
- /* TODO: handle failures and clean up */
- prev_op = &colorop->base;
-
- colorop = intel_colorop_create(INTEL_PLANE_CB_CSC);
- ret = drm_plane_colorop_ctm_3x4_init(dev, &colorop->base, plane, &intel_colorop_funcs,
- DRM_COLOROP_FLAG_ALLOW_BYPASS);
- if (ret)
- return ret;
-
- drm_colorop_set_next_property(prev_op, &colorop->base);
- prev_op = &colorop->base;
-
- if (DISPLAY_VER(display) >= 35 &&
- intel_color_crtc_has_3dlut(display, pipe) &&
- plane->type == DRM_PLANE_TYPE_PRIMARY) {
- colorop = intel_colorop_create(INTEL_PLANE_CB_3DLUT);
-
+ colorop = intel_colorop_create(id);
+
+ if (IS_ERR(colorop))
+ return colorop;
+
+ switch (id) {
+ case INTEL_PLANE_CB_PRE_CSC_LUT:
+ ret = drm_plane_colorop_curve_1d_lut_init(dev,
+ &colorop->base, plane,
+ &intel_colorop_funcs,
+ PLANE_DEGAMMA_SIZE,
+ DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
+ DRM_COLOROP_FLAG_ALLOW_BYPASS);
+ break;
+ case INTEL_PLANE_CB_CSC:
+ ret = drm_plane_colorop_ctm_3x4_init(dev, &colorop->base, plane,
+ &intel_colorop_funcs,
+ DRM_COLOROP_FLAG_ALLOW_BYPASS);
+ break;
+ case INTEL_PLANE_CB_3DLUT:
ret = drm_plane_colorop_3dlut_init(dev, &colorop->base, plane,
&intel_colorop_funcs, 17,
DRM_COLOROP_LUT3D_INTERPOLATION_TETRAHEDRAL,
true);
- if (ret)
- return ret;
-
- drm_colorop_set_next_property(prev_op, &colorop->base);
-
- prev_op = &colorop->base;
+ break;
+ case INTEL_PLANE_CB_POST_CSC_LUT:
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane,
+ &intel_colorop_funcs,
+ PLANE_GAMMA_SIZE,
+ DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
+ DRM_COLOROP_FLAG_ALLOW_BYPASS);
+ break;
+ default:
+ drm_err(plane->dev, "Invalid colorop id [%d]", id);
+ ret = -EINVAL;
}
- colorop = intel_colorop_create(INTEL_PLANE_CB_POST_CSC_LUT);
- ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base, plane, &intel_colorop_funcs,
- PLANE_GAMMA_SIZE,
- DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
- DRM_COLOROP_FLAG_ALLOW_BYPASS);
if (ret)
- return ret;
+ goto cleanup;
- drm_colorop_set_next_property(prev_op, &colorop->base);
+ if (prev)
+ drm_colorop_set_next_property(&prev->base, &colorop->base);
- list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", list->type);
+ return colorop;
+
+cleanup:
+ intel_colorop_destroy(&colorop->base);
+ return ERR_PTR(ret);
+}
+
+static
+int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct drm_prop_enum_list *list,
+ enum pipe pipe)
+{
+ struct drm_device *dev = plane->dev;
+ struct intel_display *display = to_intel_display(dev);
+ struct intel_colorop *colorop[MAX_COLOROP];
+ struct intel_colorop *prev = NULL;
+ const enum intel_color_block *pipeline;
+ int pipeline_len;
+ int ret = 0;
+ int i;
+
+ if (plane_has_3dlut(display, pipe, plane)) {
+ pipeline = nvl_primary_plane_pipeline;
+ pipeline_len = ARRAY_SIZE(nvl_primary_plane_pipeline);
+ } else {
+ pipeline = hdr_plane_pipeline;
+ pipeline_len = ARRAY_SIZE(hdr_plane_pipeline);
+ }
+
+ for (i = 0; i < pipeline_len; i++) {
+ colorop[i] = intel_color_pipeline_plane_add_colorop(plane, prev,
+ pipeline[i]);
+ if (IS_ERR(colorop[i])) {
+ ret = PTR_ERR(colorop[i]);
+ goto cleanup;
+ }
+
+ prev = colorop[i];
+ }
+
+ list->type = colorop[0]->base.base.id;
+ list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", colorop[0]->base.base.id);
return 0;
+
+cleanup:
+ while (--i >= 0)
+ intel_colorop_destroy(&colorop[i]->base);
+ return ret;
}
int intel_color_pipeline_plane_init(struct drm_plane *plane, enum pipe pipe)
--
2.25.1
^ permalink raw reply related [flat|nested] 25+ messages in thread
* ✗ CI.checkpatch: warning for drm: Color pipeline teardown and follow-up fixes/improvements (rev2)
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (12 preceding siblings ...)
2026-01-09 8:17 ` [PATCH v2 13/13] drm/i915/color: Add failure handling in plane color pipeline init Chaitanya Kumar Borah
@ 2026-01-09 8:52 ` Patchwork
2026-01-09 8:53 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
17 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2026-01-09 8:52 UTC (permalink / raw)
To: Borah, Chaitanya Kumar; +Cc: intel-xe
== Series Details ==
Series: drm: Color pipeline teardown and follow-up fixes/improvements (rev2)
URL : https://patchwork.freedesktop.org/series/159263/
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
9f1cb6875f3f9eb0925ed50c16100322a2df513c
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 69b777918a78c45727a1454cc8c0f8f290c30554
Author: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Date: Fri Jan 9 13:47:28 2026 +0530
drm/i915/color: Add failure handling in plane color pipeline init
The plane color pipeline initialization built up multiple colorop blocks
inline, but did not reliably clean up partially constructed pipelines
when an intermediate step failed. This could lead to leaked colorop
objects and fragile error handling as the pipeline grows.
Refactor the pipeline construction to use a common helper for adding
colorop blocks. This centralizes allocation, initialization, and
teardown logic, allowing the caller to reliably unwind all previously
created colorops on failure.
v2:
- Refactor code to avoid repetition (Suraj)
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
+ /mt/dim checkpatch 9e5d93261e35cda4189383e8746fef35c7d0d335 drm-intel
5a139efa3b28 drm/i915/color: Place 3D LUT after CSC in plane color pipeline
5e50478c8bb3 drm/amd/display: Fix color pipeline enum name leak
e760e26ad4b0 drm/vkms: Fix color pipeline enum name leak
9013e0890912 drm/i915/display: Fix color pipeline enum name leak
3e0ca4d9266c drm/colorop: Add destroy helper for colorop objects
adb4e02ae286 drm: Allow driver-managed destruction of colorop objects
-:58: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#58: FILE: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c:125:
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL,
amdgpu_dm_supported_shaper_tfs,
-:67: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#67: FILE: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c:142:
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, ops[i], plane, NULL,
+ MAX_COLOR_LUT_ENTRIES,
-:77: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#77: FILE: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c:160:
+ ret = drm_plane_colorop_3dlut_init(dev, ops[i], plane, NULL, LUT3D_SIZE,
DRM_COLOROP_LUT3D_INTERPOLATION_TETRAHEDRAL,
-:161: CHECK:PREFER_KERNEL_TYPES: Prefer kernel type 'u32' over 'uint32_t'
#161: FILE: drivers/gpu/drm/drm_colorop.c:316:
+ uint32_t lut_size,
-:352: CHECK:PREFER_KERNEL_TYPES: Prefer kernel type 'u32' over 'uint32_t'
#352: FILE: include/drm/drm_colorop.h:413:
+ uint32_t lut_size,
total: 0 errors, 0 warnings, 5 checks, 300 lines checked
c07726aa4c3e drm/amd/display: Hook up colorop destroy helper for plane pipelines
-:65: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#65: FILE: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c:131:
+ ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, &dm_colorop_funcs,
amdgpu_dm_supported_shaper_tfs,
-:74: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#74: FILE: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c:148:
+ ret = drm_plane_colorop_curve_1d_lut_init(dev, ops[i], plane,
+ &dm_colorop_funcs,
-:84: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#84: FILE: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_colorop.c:167:
+ ret = drm_plane_colorop_3dlut_init(dev, ops[i], plane,
+ &dm_colorop_funcs, LUT3D_SIZE,
total: 0 errors, 0 warnings, 3 checks, 79 lines checked
ba78d9008bc6 drm/vkms: Hook up colorop destroy helper for plane pipelines
669ed78c22d1 drm/i915/display: Hook up intel_colorop_destroy
1c4c8446ebd4 drm: Clean up colorop objects during mode_config cleanup
cda194dab653 drm/vkms: Remove drm_colorop_pipeline_destroy() from vkms_destroy()
79d44e7b154d drm/colorop: Use destroy callback for color pipeline teardown
69b777918a78 drm/i915/color: Add failure handling in plane color pipeline init
^ permalink raw reply [flat|nested] 25+ messages in thread
* ✓ CI.KUnit: success for drm: Color pipeline teardown and follow-up fixes/improvements (rev2)
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (13 preceding siblings ...)
2026-01-09 8:52 ` ✗ CI.checkpatch: warning for drm: Color pipeline teardown and follow-up fixes/improvements (rev2) Patchwork
@ 2026-01-09 8:53 ` Patchwork
2026-01-09 9:08 ` ✗ CI.checksparse: warning " Patchwork
` (2 subsequent siblings)
17 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2026-01-09 8:53 UTC (permalink / raw)
To: Borah, Chaitanya Kumar; +Cc: intel-xe
== Series Details ==
Series: drm: Color pipeline teardown and follow-up fixes/improvements (rev2)
URL : https://patchwork.freedesktop.org/series/159263/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[08:52:32] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:52:37] 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
[08:53:08] Starting KUnit Kernel (1/1)...
[08:53:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:53:08] ================== guc_buf (11 subtests) ===================
[08:53:08] [PASSED] test_smallest
[08:53:08] [PASSED] test_largest
[08:53:08] [PASSED] test_granular
[08:53:08] [PASSED] test_unique
[08:53:08] [PASSED] test_overlap
[08:53:08] [PASSED] test_reusable
[08:53:08] [PASSED] test_too_big
[08:53:08] [PASSED] test_flush
[08:53:08] [PASSED] test_lookup
[08:53:08] [PASSED] test_data
[08:53:08] [PASSED] test_class
[08:53:08] ===================== [PASSED] guc_buf =====================
[08:53:08] =================== guc_dbm (7 subtests) ===================
[08:53:08] [PASSED] test_empty
[08:53:08] [PASSED] test_default
[08:53:08] ======================== test_size ========================
[08:53:08] [PASSED] 4
[08:53:08] [PASSED] 8
[08:53:08] [PASSED] 32
[08:53:08] [PASSED] 256
[08:53:08] ==================== [PASSED] test_size ====================
[08:53:08] ======================= test_reuse ========================
[08:53:08] [PASSED] 4
[08:53:08] [PASSED] 8
[08:53:08] [PASSED] 32
[08:53:08] [PASSED] 256
[08:53:08] =================== [PASSED] test_reuse ====================
[08:53:08] =================== test_range_overlap ====================
[08:53:08] [PASSED] 4
[08:53:08] [PASSED] 8
[08:53:08] [PASSED] 32
[08:53:08] [PASSED] 256
[08:53:08] =============== [PASSED] test_range_overlap ================
[08:53:08] =================== test_range_compact ====================
[08:53:08] [PASSED] 4
[08:53:08] [PASSED] 8
[08:53:08] [PASSED] 32
[08:53:08] [PASSED] 256
[08:53:08] =============== [PASSED] test_range_compact ================
[08:53:08] ==================== test_range_spare =====================
[08:53:08] [PASSED] 4
[08:53:08] [PASSED] 8
[08:53:08] [PASSED] 32
[08:53:08] [PASSED] 256
[08:53:08] ================ [PASSED] test_range_spare =================
[08:53:08] ===================== [PASSED] guc_dbm =====================
[08:53:08] =================== guc_idm (6 subtests) ===================
[08:53:08] [PASSED] bad_init
[08:53:08] [PASSED] no_init
[08:53:08] [PASSED] init_fini
[08:53:08] [PASSED] check_used
[08:53:08] [PASSED] check_quota
[08:53:08] [PASSED] check_all
[08:53:08] ===================== [PASSED] guc_idm =====================
[08:53:08] ================== no_relay (3 subtests) ===================
[08:53:08] [PASSED] xe_drops_guc2pf_if_not_ready
[08:53:08] [PASSED] xe_drops_guc2vf_if_not_ready
[08:53:08] [PASSED] xe_rejects_send_if_not_ready
[08:53:08] ==================== [PASSED] no_relay =====================
[08:53:08] ================== pf_relay (14 subtests) ==================
[08:53:08] [PASSED] pf_rejects_guc2pf_too_short
[08:53:08] [PASSED] pf_rejects_guc2pf_too_long
[08:53:08] [PASSED] pf_rejects_guc2pf_no_payload
[08:53:08] [PASSED] pf_fails_no_payload
[08:53:08] [PASSED] pf_fails_bad_origin
[08:53:08] [PASSED] pf_fails_bad_type
[08:53:08] [PASSED] pf_txn_reports_error
[08:53:08] [PASSED] pf_txn_sends_pf2guc
[08:53:08] [PASSED] pf_sends_pf2guc
[08:53:08] [SKIPPED] pf_loopback_nop
[08:53:08] [SKIPPED] pf_loopback_echo
[08:53:08] [SKIPPED] pf_loopback_fail
[08:53:08] [SKIPPED] pf_loopback_busy
[08:53:08] [SKIPPED] pf_loopback_retry
[08:53:08] ==================== [PASSED] pf_relay =====================
[08:53:08] ================== vf_relay (3 subtests) ===================
[08:53:08] [PASSED] vf_rejects_guc2vf_too_short
[08:53:08] [PASSED] vf_rejects_guc2vf_too_long
[08:53:08] [PASSED] vf_rejects_guc2vf_no_payload
[08:53:08] ==================== [PASSED] vf_relay =====================
[08:53:08] ================ pf_gt_config (6 subtests) =================
[08:53:08] [PASSED] fair_contexts_1vf
[08:53:08] [PASSED] fair_doorbells_1vf
[08:53:08] [PASSED] fair_ggtt_1vf
[08:53:08] ====================== fair_contexts ======================
[08:53:08] [PASSED] 1 VF
[08:53:08] [PASSED] 2 VFs
[08:53:08] [PASSED] 3 VFs
[08:53:08] [PASSED] 4 VFs
[08:53:08] [PASSED] 5 VFs
[08:53:08] [PASSED] 6 VFs
[08:53:08] [PASSED] 7 VFs
[08:53:08] [PASSED] 8 VFs
[08:53:08] [PASSED] 9 VFs
[08:53:08] [PASSED] 10 VFs
[08:53:08] [PASSED] 11 VFs
[08:53:08] [PASSED] 12 VFs
[08:53:08] [PASSED] 13 VFs
[08:53:08] [PASSED] 14 VFs
[08:53:08] [PASSED] 15 VFs
[08:53:08] [PASSED] 16 VFs
[08:53:08] [PASSED] 17 VFs
[08:53:08] [PASSED] 18 VFs
[08:53:08] [PASSED] 19 VFs
[08:53:08] [PASSED] 20 VFs
[08:53:08] [PASSED] 21 VFs
[08:53:08] [PASSED] 22 VFs
[08:53:08] [PASSED] 23 VFs
[08:53:08] [PASSED] 24 VFs
[08:53:08] [PASSED] 25 VFs
[08:53:08] [PASSED] 26 VFs
[08:53:08] [PASSED] 27 VFs
[08:53:08] [PASSED] 28 VFs
[08:53:08] [PASSED] 29 VFs
[08:53:08] [PASSED] 30 VFs
[08:53:08] [PASSED] 31 VFs
[08:53:08] [PASSED] 32 VFs
[08:53:08] [PASSED] 33 VFs
[08:53:08] [PASSED] 34 VFs
[08:53:08] [PASSED] 35 VFs
[08:53:08] [PASSED] 36 VFs
[08:53:08] [PASSED] 37 VFs
[08:53:08] [PASSED] 38 VFs
[08:53:08] [PASSED] 39 VFs
[08:53:08] [PASSED] 40 VFs
[08:53:08] [PASSED] 41 VFs
[08:53:08] [PASSED] 42 VFs
[08:53:08] [PASSED] 43 VFs
[08:53:08] [PASSED] 44 VFs
[08:53:08] [PASSED] 45 VFs
[08:53:08] [PASSED] 46 VFs
[08:53:08] [PASSED] 47 VFs
[08:53:08] [PASSED] 48 VFs
[08:53:08] [PASSED] 49 VFs
[08:53:08] [PASSED] 50 VFs
[08:53:08] [PASSED] 51 VFs
[08:53:08] [PASSED] 52 VFs
[08:53:08] [PASSED] 53 VFs
[08:53:08] [PASSED] 54 VFs
[08:53:08] [PASSED] 55 VFs
[08:53:08] [PASSED] 56 VFs
[08:53:08] [PASSED] 57 VFs
[08:53:08] [PASSED] 58 VFs
[08:53:08] [PASSED] 59 VFs
[08:53:08] [PASSED] 60 VFs
[08:53:08] [PASSED] 61 VFs
[08:53:08] [PASSED] 62 VFs
[08:53:08] [PASSED] 63 VFs
[08:53:08] ================== [PASSED] fair_contexts ==================
[08:53:08] ===================== fair_doorbells ======================
[08:53:08] [PASSED] 1 VF
[08:53:08] [PASSED] 2 VFs
[08:53:08] [PASSED] 3 VFs
[08:53:08] [PASSED] 4 VFs
[08:53:08] [PASSED] 5 VFs
[08:53:08] [PASSED] 6 VFs
[08:53:08] [PASSED] 7 VFs
[08:53:08] [PASSED] 8 VFs
[08:53:08] [PASSED] 9 VFs
[08:53:08] [PASSED] 10 VFs
[08:53:08] [PASSED] 11 VFs
[08:53:09] [PASSED] 12 VFs
[08:53:09] [PASSED] 13 VFs
[08:53:09] [PASSED] 14 VFs
[08:53:09] [PASSED] 15 VFs
[08:53:09] [PASSED] 16 VFs
[08:53:09] [PASSED] 17 VFs
[08:53:09] [PASSED] 18 VFs
[08:53:09] [PASSED] 19 VFs
[08:53:09] [PASSED] 20 VFs
[08:53:09] [PASSED] 21 VFs
[08:53:09] [PASSED] 22 VFs
[08:53:09] [PASSED] 23 VFs
[08:53:09] [PASSED] 24 VFs
[08:53:09] [PASSED] 25 VFs
[08:53:09] [PASSED] 26 VFs
[08:53:09] [PASSED] 27 VFs
[08:53:09] [PASSED] 28 VFs
[08:53:09] [PASSED] 29 VFs
[08:53:09] [PASSED] 30 VFs
[08:53:09] [PASSED] 31 VFs
[08:53:09] [PASSED] 32 VFs
[08:53:09] [PASSED] 33 VFs
[08:53:09] [PASSED] 34 VFs
[08:53:09] [PASSED] 35 VFs
[08:53:09] [PASSED] 36 VFs
[08:53:09] [PASSED] 37 VFs
[08:53:09] [PASSED] 38 VFs
[08:53:09] [PASSED] 39 VFs
[08:53:09] [PASSED] 40 VFs
[08:53:09] [PASSED] 41 VFs
[08:53:09] [PASSED] 42 VFs
[08:53:09] [PASSED] 43 VFs
[08:53:09] [PASSED] 44 VFs
[08:53:09] [PASSED] 45 VFs
[08:53:09] [PASSED] 46 VFs
[08:53:09] [PASSED] 47 VFs
[08:53:09] [PASSED] 48 VFs
[08:53:09] [PASSED] 49 VFs
[08:53:09] [PASSED] 50 VFs
[08:53:09] [PASSED] 51 VFs
[08:53:09] [PASSED] 52 VFs
[08:53:09] [PASSED] 53 VFs
[08:53:09] [PASSED] 54 VFs
[08:53:09] [PASSED] 55 VFs
[08:53:09] [PASSED] 56 VFs
[08:53:09] [PASSED] 57 VFs
[08:53:09] [PASSED] 58 VFs
[08:53:09] [PASSED] 59 VFs
[08:53:09] [PASSED] 60 VFs
[08:53:09] [PASSED] 61 VFs
[08:53:09] [PASSED] 62 VFs
[08:53:09] [PASSED] 63 VFs
[08:53:09] ================= [PASSED] fair_doorbells ==================
[08:53:09] ======================== fair_ggtt ========================
[08:53:09] [PASSED] 1 VF
[08:53:09] [PASSED] 2 VFs
[08:53:09] [PASSED] 3 VFs
[08:53:09] [PASSED] 4 VFs
[08:53:09] [PASSED] 5 VFs
[08:53:09] [PASSED] 6 VFs
[08:53:09] [PASSED] 7 VFs
[08:53:09] [PASSED] 8 VFs
[08:53:09] [PASSED] 9 VFs
[08:53:09] [PASSED] 10 VFs
[08:53:09] [PASSED] 11 VFs
[08:53:09] [PASSED] 12 VFs
[08:53:09] [PASSED] 13 VFs
[08:53:09] [PASSED] 14 VFs
[08:53:09] [PASSED] 15 VFs
[08:53:09] [PASSED] 16 VFs
[08:53:09] [PASSED] 17 VFs
[08:53:09] [PASSED] 18 VFs
[08:53:09] [PASSED] 19 VFs
[08:53:09] [PASSED] 20 VFs
[08:53:09] [PASSED] 21 VFs
[08:53:09] [PASSED] 22 VFs
[08:53:09] [PASSED] 23 VFs
[08:53:09] [PASSED] 24 VFs
[08:53:09] [PASSED] 25 VFs
[08:53:09] [PASSED] 26 VFs
[08:53:09] [PASSED] 27 VFs
[08:53:09] [PASSED] 28 VFs
[08:53:09] [PASSED] 29 VFs
[08:53:09] [PASSED] 30 VFs
[08:53:09] [PASSED] 31 VFs
[08:53:09] [PASSED] 32 VFs
[08:53:09] [PASSED] 33 VFs
[08:53:09] [PASSED] 34 VFs
[08:53:09] [PASSED] 35 VFs
[08:53:09] [PASSED] 36 VFs
[08:53:09] [PASSED] 37 VFs
[08:53:09] [PASSED] 38 VFs
[08:53:09] [PASSED] 39 VFs
[08:53:09] [PASSED] 40 VFs
[08:53:09] [PASSED] 41 VFs
[08:53:09] [PASSED] 42 VFs
[08:53:09] [PASSED] 43 VFs
[08:53:09] [PASSED] 44 VFs
[08:53:09] [PASSED] 45 VFs
[08:53:09] [PASSED] 46 VFs
[08:53:09] [PASSED] 47 VFs
[08:53:09] [PASSED] 48 VFs
[08:53:09] [PASSED] 49 VFs
[08:53:09] [PASSED] 50 VFs
[08:53:09] [PASSED] 51 VFs
[08:53:09] [PASSED] 52 VFs
[08:53:09] [PASSED] 53 VFs
[08:53:09] [PASSED] 54 VFs
[08:53:09] [PASSED] 55 VFs
[08:53:09] [PASSED] 56 VFs
[08:53:09] [PASSED] 57 VFs
[08:53:09] [PASSED] 58 VFs
[08:53:09] [PASSED] 59 VFs
[08:53:09] [PASSED] 60 VFs
[08:53:09] [PASSED] 61 VFs
[08:53:09] [PASSED] 62 VFs
[08:53:09] [PASSED] 63 VFs
[08:53:09] ==================== [PASSED] fair_ggtt ====================
[08:53:09] ================== [PASSED] pf_gt_config ===================
[08:53:09] ===================== lmtt (1 subtest) =====================
[08:53:09] ======================== test_ops =========================
[08:53:09] [PASSED] 2-level
[08:53:09] [PASSED] multi-level
[08:53:09] ==================== [PASSED] test_ops =====================
[08:53:09] ====================== [PASSED] lmtt =======================
[08:53:09] ================= pf_service (11 subtests) =================
[08:53:09] [PASSED] pf_negotiate_any
[08:53:09] [PASSED] pf_negotiate_base_match
[08:53:09] [PASSED] pf_negotiate_base_newer
[08:53:09] [PASSED] pf_negotiate_base_next
[08:53:09] [SKIPPED] pf_negotiate_base_older
[08:53:09] [PASSED] pf_negotiate_base_prev
[08:53:09] [PASSED] pf_negotiate_latest_match
[08:53:09] [PASSED] pf_negotiate_latest_newer
[08:53:09] [PASSED] pf_negotiate_latest_next
[08:53:09] [SKIPPED] pf_negotiate_latest_older
[08:53:09] [SKIPPED] pf_negotiate_latest_prev
[08:53:09] =================== [PASSED] pf_service ====================
[08:53:09] ================= xe_guc_g2g (2 subtests) ==================
[08:53:09] ============== xe_live_guc_g2g_kunit_default ==============
[08:53:09] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[08:53:09] ============== xe_live_guc_g2g_kunit_allmem ===============
[08:53:09] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[08:53:09] =================== [SKIPPED] xe_guc_g2g ===================
[08:53:09] =================== xe_mocs (2 subtests) ===================
[08:53:09] ================ xe_live_mocs_kernel_kunit ================
[08:53:09] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[08:53:09] ================ xe_live_mocs_reset_kunit =================
[08:53:09] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[08:53:09] ==================== [SKIPPED] xe_mocs =====================
[08:53:09] ================= xe_migrate (2 subtests) ==================
[08:53:09] ================= xe_migrate_sanity_kunit =================
[08:53:09] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[08:53:09] ================== xe_validate_ccs_kunit ==================
[08:53:09] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[08:53:09] =================== [SKIPPED] xe_migrate ===================
[08:53:09] ================== xe_dma_buf (1 subtest) ==================
[08:53:09] ==================== xe_dma_buf_kunit =====================
[08:53:09] ================ [SKIPPED] xe_dma_buf_kunit ================
[08:53:09] =================== [SKIPPED] xe_dma_buf ===================
[08:53:09] ================= xe_bo_shrink (1 subtest) =================
[08:53:09] =================== xe_bo_shrink_kunit ====================
[08:53:09] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[08:53:09] ================== [SKIPPED] xe_bo_shrink ==================
[08:53:09] ==================== xe_bo (2 subtests) ====================
[08:53:09] ================== xe_ccs_migrate_kunit ===================
[08:53:09] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[08:53:09] ==================== xe_bo_evict_kunit ====================
[08:53:09] =============== [SKIPPED] xe_bo_evict_kunit ================
[08:53:09] ===================== [SKIPPED] xe_bo ======================
[08:53:09] ==================== args (13 subtests) ====================
[08:53:09] [PASSED] count_args_test
[08:53:09] [PASSED] call_args_example
[08:53:09] [PASSED] call_args_test
[08:53:09] [PASSED] drop_first_arg_example
[08:53:09] [PASSED] drop_first_arg_test
[08:53:09] [PASSED] first_arg_example
[08:53:09] [PASSED] first_arg_test
[08:53:09] [PASSED] last_arg_example
[08:53:09] [PASSED] last_arg_test
[08:53:09] [PASSED] pick_arg_example
[08:53:09] [PASSED] if_args_example
[08:53:09] [PASSED] if_args_test
[08:53:09] [PASSED] sep_comma_example
[08:53:09] ====================== [PASSED] args =======================
[08:53:09] =================== xe_pci (3 subtests) ====================
[08:53:09] ==================== check_graphics_ip ====================
[08:53:09] [PASSED] 12.00 Xe_LP
[08:53:09] [PASSED] 12.10 Xe_LP+
[08:53:09] [PASSED] 12.55 Xe_HPG
[08:53:09] [PASSED] 12.60 Xe_HPC
[08:53:09] [PASSED] 12.70 Xe_LPG
[08:53:09] [PASSED] 12.71 Xe_LPG
[08:53:09] [PASSED] 12.74 Xe_LPG+
[08:53:09] [PASSED] 20.01 Xe2_HPG
[08:53:09] [PASSED] 20.02 Xe2_HPG
[08:53:09] [PASSED] 20.04 Xe2_LPG
[08:53:09] [PASSED] 30.00 Xe3_LPG
[08:53:09] [PASSED] 30.01 Xe3_LPG
[08:53:09] [PASSED] 30.03 Xe3_LPG
[08:53:09] [PASSED] 30.04 Xe3_LPG
[08:53:09] [PASSED] 30.05 Xe3_LPG
[08:53:09] [PASSED] 35.11 Xe3p_XPC
[08:53:09] ================ [PASSED] check_graphics_ip ================
[08:53:09] ===================== check_media_ip ======================
[08:53:09] [PASSED] 12.00 Xe_M
[08:53:09] [PASSED] 12.55 Xe_HPM
[08:53:09] [PASSED] 13.00 Xe_LPM+
[08:53:09] [PASSED] 13.01 Xe2_HPM
[08:53:09] [PASSED] 20.00 Xe2_LPM
[08:53:09] [PASSED] 30.00 Xe3_LPM
[08:53:09] [PASSED] 30.02 Xe3_LPM
[08:53:09] [PASSED] 35.00 Xe3p_LPM
[08:53:09] [PASSED] 35.03 Xe3p_HPM
[08:53:09] ================= [PASSED] check_media_ip ==================
[08:53:09] =================== check_platform_desc ===================
[08:53:09] [PASSED] 0x9A60 (TIGERLAKE)
[08:53:09] [PASSED] 0x9A68 (TIGERLAKE)
[08:53:09] [PASSED] 0x9A70 (TIGERLAKE)
[08:53:09] [PASSED] 0x9A40 (TIGERLAKE)
[08:53:09] [PASSED] 0x9A49 (TIGERLAKE)
[08:53:09] [PASSED] 0x9A59 (TIGERLAKE)
[08:53:09] [PASSED] 0x9A78 (TIGERLAKE)
[08:53:09] [PASSED] 0x9AC0 (TIGERLAKE)
[08:53:09] [PASSED] 0x9AC9 (TIGERLAKE)
[08:53:09] [PASSED] 0x9AD9 (TIGERLAKE)
[08:53:09] [PASSED] 0x9AF8 (TIGERLAKE)
[08:53:09] [PASSED] 0x4C80 (ROCKETLAKE)
[08:53:09] [PASSED] 0x4C8A (ROCKETLAKE)
[08:53:09] [PASSED] 0x4C8B (ROCKETLAKE)
[08:53:09] [PASSED] 0x4C8C (ROCKETLAKE)
[08:53:09] [PASSED] 0x4C90 (ROCKETLAKE)
[08:53:09] [PASSED] 0x4C9A (ROCKETLAKE)
[08:53:09] [PASSED] 0x4680 (ALDERLAKE_S)
[08:53:09] [PASSED] 0x4682 (ALDERLAKE_S)
[08:53:09] [PASSED] 0x4688 (ALDERLAKE_S)
[08:53:09] [PASSED] 0x468A (ALDERLAKE_S)
[08:53:09] [PASSED] 0x468B (ALDERLAKE_S)
[08:53:09] [PASSED] 0x4690 (ALDERLAKE_S)
[08:53:09] [PASSED] 0x4692 (ALDERLAKE_S)
[08:53:09] [PASSED] 0x4693 (ALDERLAKE_S)
[08:53:09] [PASSED] 0x46A0 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46A1 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46A2 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46A3 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46A6 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46A8 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46AA (ALDERLAKE_P)
[08:53:09] [PASSED] 0x462A (ALDERLAKE_P)
[08:53:09] [PASSED] 0x4626 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[08:53:09] [PASSED] 0x46B0 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46B1 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46B2 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46B3 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46C0 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46C1 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46C2 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46C3 (ALDERLAKE_P)
[08:53:09] [PASSED] 0x46D0 (ALDERLAKE_N)
[08:53:09] [PASSED] 0x46D1 (ALDERLAKE_N)
[08:53:09] [PASSED] 0x46D2 (ALDERLAKE_N)
[08:53:09] [PASSED] 0x46D3 (ALDERLAKE_N)
[08:53:09] [PASSED] 0x46D4 (ALDERLAKE_N)
[08:53:09] [PASSED] 0xA721 (ALDERLAKE_P)
[08:53:09] [PASSED] 0xA7A1 (ALDERLAKE_P)
[08:53:09] [PASSED] 0xA7A9 (ALDERLAKE_P)
[08:53:09] [PASSED] 0xA7AC (ALDERLAKE_P)
[08:53:09] [PASSED] 0xA7AD (ALDERLAKE_P)
[08:53:09] [PASSED] 0xA720 (ALDERLAKE_P)
[08:53:09] [PASSED] 0xA7A0 (ALDERLAKE_P)
[08:53:09] [PASSED] 0xA7A8 (ALDERLAKE_P)
[08:53:09] [PASSED] 0xA7AA (ALDERLAKE_P)
[08:53:09] [PASSED] 0xA7AB (ALDERLAKE_P)
[08:53:09] [PASSED] 0xA780 (ALDERLAKE_S)
[08:53:09] [PASSED] 0xA781 (ALDERLAKE_S)
[08:53:09] [PASSED] 0xA782 (ALDERLAKE_S)
[08:53:09] [PASSED] 0xA783 (ALDERLAKE_S)
[08:53:09] [PASSED] 0xA788 (ALDERLAKE_S)
[08:53:09] [PASSED] 0xA789 (ALDERLAKE_S)
[08:53:09] [PASSED] 0xA78A (ALDERLAKE_S)
[08:53:09] [PASSED] 0xA78B (ALDERLAKE_S)
[08:53:09] [PASSED] 0x4905 (DG1)
[08:53:09] [PASSED] 0x4906 (DG1)
[08:53:09] [PASSED] 0x4907 (DG1)
[08:53:09] [PASSED] 0x4908 (DG1)
[08:53:09] [PASSED] 0x4909 (DG1)
[08:53:09] [PASSED] 0x56C0 (DG2)
[08:53:09] [PASSED] 0x56C2 (DG2)
[08:53:09] [PASSED] 0x56C1 (DG2)
[08:53:09] [PASSED] 0x7D51 (METEORLAKE)
[08:53:09] [PASSED] 0x7DD1 (METEORLAKE)
[08:53:09] [PASSED] 0x7D41 (METEORLAKE)
[08:53:09] [PASSED] 0x7D67 (METEORLAKE)
[08:53:09] [PASSED] 0xB640 (METEORLAKE)
[08:53:09] [PASSED] 0x56A0 (DG2)
[08:53:09] [PASSED] 0x56A1 (DG2)
[08:53:09] [PASSED] 0x56A2 (DG2)
[08:53:09] [PASSED] 0x56BE (DG2)
[08:53:09] [PASSED] 0x56BF (DG2)
[08:53:09] [PASSED] 0x5690 (DG2)
[08:53:09] [PASSED] 0x5691 (DG2)
[08:53:09] [PASSED] 0x5692 (DG2)
[08:53:09] [PASSED] 0x56A5 (DG2)
[08:53:09] [PASSED] 0x56A6 (DG2)
[08:53:09] [PASSED] 0x56B0 (DG2)
[08:53:09] [PASSED] 0x56B1 (DG2)
[08:53:09] [PASSED] 0x56BA (DG2)
[08:53:09] [PASSED] 0x56BB (DG2)
[08:53:09] [PASSED] 0x56BC (DG2)
[08:53:09] [PASSED] 0x56BD (DG2)
[08:53:09] [PASSED] 0x5693 (DG2)
[08:53:09] [PASSED] 0x5694 (DG2)
[08:53:09] [PASSED] 0x5695 (DG2)
[08:53:09] [PASSED] 0x56A3 (DG2)
[08:53:09] [PASSED] 0x56A4 (DG2)
[08:53:09] [PASSED] 0x56B2 (DG2)
[08:53:09] [PASSED] 0x56B3 (DG2)
[08:53:09] [PASSED] 0x5696 (DG2)
[08:53:09] [PASSED] 0x5697 (DG2)
[08:53:09] [PASSED] 0xB69 (PVC)
[08:53:09] [PASSED] 0xB6E (PVC)
[08:53:09] [PASSED] 0xBD4 (PVC)
[08:53:09] [PASSED] 0xBD5 (PVC)
[08:53:09] [PASSED] 0xBD6 (PVC)
[08:53:09] [PASSED] 0xBD7 (PVC)
[08:53:09] [PASSED] 0xBD8 (PVC)
[08:53:09] [PASSED] 0xBD9 (PVC)
[08:53:09] [PASSED] 0xBDA (PVC)
[08:53:09] [PASSED] 0xBDB (PVC)
[08:53:09] [PASSED] 0xBE0 (PVC)
[08:53:09] [PASSED] 0xBE1 (PVC)
[08:53:09] [PASSED] 0xBE5 (PVC)
[08:53:09] [PASSED] 0x7D40 (METEORLAKE)
[08:53:09] [PASSED] 0x7D45 (METEORLAKE)
[08:53:09] [PASSED] 0x7D55 (METEORLAKE)
[08:53:09] [PASSED] 0x7D60 (METEORLAKE)
[08:53:09] [PASSED] 0x7DD5 (METEORLAKE)
[08:53:09] [PASSED] 0x6420 (LUNARLAKE)
[08:53:09] [PASSED] 0x64A0 (LUNARLAKE)
[08:53:09] [PASSED] 0x64B0 (LUNARLAKE)
[08:53:09] [PASSED] 0xE202 (BATTLEMAGE)
[08:53:09] [PASSED] 0xE209 (BATTLEMAGE)
[08:53:09] [PASSED] 0xE20B (BATTLEMAGE)
[08:53:09] [PASSED] 0xE20C (BATTLEMAGE)
[08:53:09] [PASSED] 0xE20D (BATTLEMAGE)
[08:53:09] [PASSED] 0xE210 (BATTLEMAGE)
[08:53:09] [PASSED] 0xE211 (BATTLEMAGE)
[08:53:09] [PASSED] 0xE212 (BATTLEMAGE)
[08:53:09] [PASSED] 0xE216 (BATTLEMAGE)
[08:53:09] [PASSED] 0xE220 (BATTLEMAGE)
[08:53:09] [PASSED] 0xE221 (BATTLEMAGE)
[08:53:09] [PASSED] 0xE222 (BATTLEMAGE)
[08:53:09] [PASSED] 0xE223 (BATTLEMAGE)
[08:53:09] [PASSED] 0xB080 (PANTHERLAKE)
[08:53:09] [PASSED] 0xB081 (PANTHERLAKE)
[08:53:09] [PASSED] 0xB082 (PANTHERLAKE)
[08:53:09] [PASSED] 0xB083 (PANTHERLAKE)
[08:53:09] [PASSED] 0xB084 (PANTHERLAKE)
[08:53:09] [PASSED] 0xB085 (PANTHERLAKE)
[08:53:09] [PASSED] 0xB086 (PANTHERLAKE)
[08:53:09] [PASSED] 0xB087 (PANTHERLAKE)
[08:53:09] [PASSED] 0xB08F (PANTHERLAKE)
[08:53:09] [PASSED] 0xB090 (PANTHERLAKE)
[08:53:09] [PASSED] 0xB0A0 (PANTHERLAKE)
[08:53:09] [PASSED] 0xB0B0 (PANTHERLAKE)
[08:53:09] [PASSED] 0xFD80 (PANTHERLAKE)
[08:53:09] [PASSED] 0xFD81 (PANTHERLAKE)
[08:53:09] [PASSED] 0xD740 (NOVALAKE_S)
[08:53:09] [PASSED] 0xD741 (NOVALAKE_S)
[08:53:09] [PASSED] 0xD742 (NOVALAKE_S)
[08:53:09] [PASSED] 0xD743 (NOVALAKE_S)
[08:53:09] [PASSED] 0xD744 (NOVALAKE_S)
[08:53:09] [PASSED] 0xD745 (NOVALAKE_S)
[08:53:09] [PASSED] 0x674C (CRESCENTISLAND)
[08:53:09] =============== [PASSED] check_platform_desc ===============
[08:53:09] ===================== [PASSED] xe_pci ======================
[08:53:09] =================== xe_rtp (2 subtests) ====================
[08:53:09] =============== xe_rtp_process_to_sr_tests ================
[08:53:09] [PASSED] coalesce-same-reg
[08:53:09] [PASSED] no-match-no-add
[08:53:09] [PASSED] match-or
[08:53:09] [PASSED] match-or-xfail
[08:53:09] [PASSED] no-match-no-add-multiple-rules
[08:53:09] [PASSED] two-regs-two-entries
[08:53:09] [PASSED] clr-one-set-other
[08:53:09] [PASSED] set-field
[08:53:09] [PASSED] conflict-duplicate
[08:53:09] [PASSED] conflict-not-disjoint
[08:53:09] [PASSED] conflict-reg-type
[08:53:09] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[08:53:09] ================== xe_rtp_process_tests ===================
[08:53:09] [PASSED] active1
[08:53:09] [PASSED] active2
[08:53:09] [PASSED] active-inactive
[08:53:09] [PASSED] inactive-active
[08:53:09] [PASSED] inactive-1st_or_active-inactive
[08:53:09] [PASSED] inactive-2nd_or_active-inactive
[08:53:09] [PASSED] inactive-last_or_active-inactive
[08:53:09] [PASSED] inactive-no_or_active-inactive
[08:53:09] ============== [PASSED] xe_rtp_process_tests ===============
[08:53:09] ===================== [PASSED] xe_rtp ======================
[08:53:09] ==================== xe_wa (1 subtest) =====================
[08:53:09] ======================== xe_wa_gt =========================
[08:53:09] [PASSED] TIGERLAKE B0
[08:53:09] [PASSED] DG1 A0
[08:53:09] [PASSED] DG1 B0
[08:53:09] [PASSED] ALDERLAKE_S A0
[08:53:09] [PASSED] ALDERLAKE_S B0
[08:53:09] [PASSED] ALDERLAKE_S C0
[08:53:09] [PASSED] ALDERLAKE_S D0
[08:53:09] [PASSED] ALDERLAKE_P A0
[08:53:09] [PASSED] ALDERLAKE_P B0
[08:53:09] [PASSED] ALDERLAKE_P C0
[08:53:09] [PASSED] ALDERLAKE_S RPLS D0
[08:53:09] [PASSED] ALDERLAKE_P RPLU E0
[08:53:09] [PASSED] DG2 G10 C0
[08:53:09] [PASSED] DG2 G11 B1
[08:53:09] [PASSED] DG2 G12 A1
[08:53:09] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:53:09] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:53:09] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[08:53:09] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[08:53:09] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[08:53:09] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[08:53:09] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[08:53:09] ==================== [PASSED] xe_wa_gt =====================
[08:53:09] ====================== [PASSED] xe_wa ======================
[08:53:09] ============================================================
[08:53:09] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[08:53:09] Elapsed time: 36.238s total, 4.204s configuring, 31.517s building, 0.469s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[08:53:09] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:53:10] 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
[08:53:36] Starting KUnit Kernel (1/1)...
[08:53:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:53:36] ============ drm_test_pick_cmdline (2 subtests) ============
[08:53:36] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[08:53:36] =============== drm_test_pick_cmdline_named ===============
[08:53:36] [PASSED] NTSC
[08:53:36] [PASSED] NTSC-J
[08:53:36] [PASSED] PAL
[08:53:36] [PASSED] PAL-M
[08:53:36] =========== [PASSED] drm_test_pick_cmdline_named ===========
[08:53:36] ============== [PASSED] drm_test_pick_cmdline ==============
[08:53:36] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[08:53:36] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[08:53:36] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[08:53:36] =========== drm_validate_clone_mode (2 subtests) ===========
[08:53:36] ============== drm_test_check_in_clone_mode ===============
[08:53:36] [PASSED] in_clone_mode
[08:53:36] [PASSED] not_in_clone_mode
[08:53:36] ========== [PASSED] drm_test_check_in_clone_mode ===========
[08:53:36] =============== drm_test_check_valid_clones ===============
[08:53:36] [PASSED] not_in_clone_mode
[08:53:36] [PASSED] valid_clone
[08:53:36] [PASSED] invalid_clone
[08:53:36] =========== [PASSED] drm_test_check_valid_clones ===========
[08:53:36] ============= [PASSED] drm_validate_clone_mode =============
[08:53:36] ============= drm_validate_modeset (1 subtest) =============
[08:53:36] [PASSED] drm_test_check_connector_changed_modeset
[08:53:36] ============== [PASSED] drm_validate_modeset ===============
[08:53:36] ====== drm_test_bridge_get_current_state (2 subtests) ======
[08:53:36] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[08:53:36] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[08:53:36] ======== [PASSED] drm_test_bridge_get_current_state ========
[08:53:36] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[08:53:36] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[08:53:36] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[08:53:36] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[08:53:36] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[08:53:36] ============== drm_bridge_alloc (2 subtests) ===============
[08:53:36] [PASSED] drm_test_drm_bridge_alloc_basic
[08:53:36] [PASSED] drm_test_drm_bridge_alloc_get_put
[08:53:36] ================ [PASSED] drm_bridge_alloc =================
[08:53:36] ================== drm_buddy (8 subtests) ==================
[08:53:36] [PASSED] drm_test_buddy_alloc_limit
[08:53:36] [PASSED] drm_test_buddy_alloc_optimistic
[08:53:36] [PASSED] drm_test_buddy_alloc_pessimistic
[08:53:36] [PASSED] drm_test_buddy_alloc_pathological
[08:53:36] [PASSED] drm_test_buddy_alloc_contiguous
[08:53:36] [PASSED] drm_test_buddy_alloc_clear
[08:53:36] [PASSED] drm_test_buddy_alloc_range_bias
[08:53:36] [PASSED] drm_test_buddy_fragmentation_performance
[08:53:36] ==================== [PASSED] drm_buddy ====================
[08:53:36] ============= drm_cmdline_parser (40 subtests) =============
[08:53:36] [PASSED] drm_test_cmdline_force_d_only
[08:53:36] [PASSED] drm_test_cmdline_force_D_only_dvi
[08:53:36] [PASSED] drm_test_cmdline_force_D_only_hdmi
[08:53:36] [PASSED] drm_test_cmdline_force_D_only_not_digital
[08:53:36] [PASSED] drm_test_cmdline_force_e_only
[08:53:36] [PASSED] drm_test_cmdline_res
[08:53:36] [PASSED] drm_test_cmdline_res_vesa
[08:53:36] [PASSED] drm_test_cmdline_res_vesa_rblank
[08:53:36] [PASSED] drm_test_cmdline_res_rblank
[08:53:36] [PASSED] drm_test_cmdline_res_bpp
[08:53:36] [PASSED] drm_test_cmdline_res_refresh
[08:53:36] [PASSED] drm_test_cmdline_res_bpp_refresh
[08:53:36] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[08:53:36] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[08:53:36] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[08:53:36] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[08:53:36] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[08:53:36] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[08:53:36] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[08:53:36] [PASSED] drm_test_cmdline_res_margins_force_on
[08:53:36] [PASSED] drm_test_cmdline_res_vesa_margins
[08:53:36] [PASSED] drm_test_cmdline_name
[08:53:36] [PASSED] drm_test_cmdline_name_bpp
[08:53:36] [PASSED] drm_test_cmdline_name_option
[08:53:36] [PASSED] drm_test_cmdline_name_bpp_option
[08:53:36] [PASSED] drm_test_cmdline_rotate_0
[08:53:36] [PASSED] drm_test_cmdline_rotate_90
[08:53:36] [PASSED] drm_test_cmdline_rotate_180
[08:53:36] [PASSED] drm_test_cmdline_rotate_270
[08:53:36] [PASSED] drm_test_cmdline_hmirror
[08:53:36] [PASSED] drm_test_cmdline_vmirror
[08:53:36] [PASSED] drm_test_cmdline_margin_options
[08:53:36] [PASSED] drm_test_cmdline_multiple_options
[08:53:36] [PASSED] drm_test_cmdline_bpp_extra_and_option
[08:53:36] [PASSED] drm_test_cmdline_extra_and_option
[08:53:36] [PASSED] drm_test_cmdline_freestanding_options
[08:53:36] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[08:53:36] [PASSED] drm_test_cmdline_panel_orientation
[08:53:36] ================ drm_test_cmdline_invalid =================
[08:53:36] [PASSED] margin_only
[08:53:36] [PASSED] interlace_only
[08:53:36] [PASSED] res_missing_x
[08:53:36] [PASSED] res_missing_y
[08:53:36] [PASSED] res_bad_y
[08:53:36] [PASSED] res_missing_y_bpp
[08:53:36] [PASSED] res_bad_bpp
[08:53:36] [PASSED] res_bad_refresh
[08:53:36] [PASSED] res_bpp_refresh_force_on_off
[08:53:36] [PASSED] res_invalid_mode
[08:53:36] [PASSED] res_bpp_wrong_place_mode
[08:53:36] [PASSED] name_bpp_refresh
[08:53:36] [PASSED] name_refresh
[08:53:36] [PASSED] name_refresh_wrong_mode
[08:53:36] [PASSED] name_refresh_invalid_mode
[08:53:36] [PASSED] rotate_multiple
[08:53:36] [PASSED] rotate_invalid_val
[08:53:36] [PASSED] rotate_truncated
[08:53:36] [PASSED] invalid_option
[08:53:36] [PASSED] invalid_tv_option
[08:53:36] [PASSED] truncated_tv_option
[08:53:36] ============ [PASSED] drm_test_cmdline_invalid =============
[08:53:36] =============== drm_test_cmdline_tv_options ===============
[08:53:36] [PASSED] NTSC
[08:53:36] [PASSED] NTSC_443
[08:53:36] [PASSED] NTSC_J
[08:53:36] [PASSED] PAL
[08:53:36] [PASSED] PAL_M
[08:53:36] [PASSED] PAL_N
[08:53:36] [PASSED] SECAM
[08:53:36] [PASSED] MONO_525
[08:53:36] [PASSED] MONO_625
[08:53:36] =========== [PASSED] drm_test_cmdline_tv_options ===========
[08:53:36] =============== [PASSED] drm_cmdline_parser ================
[08:53:36] ========== drmm_connector_hdmi_init (20 subtests) ==========
[08:53:36] [PASSED] drm_test_connector_hdmi_init_valid
[08:53:36] [PASSED] drm_test_connector_hdmi_init_bpc_8
[08:53:36] [PASSED] drm_test_connector_hdmi_init_bpc_10
[08:53:36] [PASSED] drm_test_connector_hdmi_init_bpc_12
[08:53:36] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[08:53:36] [PASSED] drm_test_connector_hdmi_init_bpc_null
[08:53:36] [PASSED] drm_test_connector_hdmi_init_formats_empty
[08:53:36] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[08:53:36] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:53:36] [PASSED] supported_formats=0x9 yuv420_allowed=1
[08:53:36] [PASSED] supported_formats=0x9 yuv420_allowed=0
[08:53:36] [PASSED] supported_formats=0x3 yuv420_allowed=1
[08:53:36] [PASSED] supported_formats=0x3 yuv420_allowed=0
[08:53:36] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:53:36] [PASSED] drm_test_connector_hdmi_init_null_ddc
[08:53:36] [PASSED] drm_test_connector_hdmi_init_null_product
[08:53:36] [PASSED] drm_test_connector_hdmi_init_null_vendor
[08:53:36] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[08:53:36] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[08:53:36] [PASSED] drm_test_connector_hdmi_init_product_valid
[08:53:36] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[08:53:36] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[08:53:36] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[08:53:36] ========= drm_test_connector_hdmi_init_type_valid =========
[08:53:36] [PASSED] HDMI-A
[08:53:36] [PASSED] HDMI-B
[08:53:36] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[08:53:36] ======== drm_test_connector_hdmi_init_type_invalid ========
[08:53:36] [PASSED] Unknown
[08:53:36] [PASSED] VGA
[08:53:36] [PASSED] DVI-I
[08:53:36] [PASSED] DVI-D
[08:53:36] [PASSED] DVI-A
[08:53:36] [PASSED] Composite
[08:53:36] [PASSED] SVIDEO
[08:53:36] [PASSED] LVDS
[08:53:36] [PASSED] Component
[08:53:36] [PASSED] DIN
[08:53:36] [PASSED] DP
[08:53:36] [PASSED] TV
[08:53:36] [PASSED] eDP
[08:53:36] [PASSED] Virtual
[08:53:36] [PASSED] DSI
[08:53:36] [PASSED] DPI
[08:53:36] [PASSED] Writeback
[08:53:36] [PASSED] SPI
[08:53:36] [PASSED] USB
[08:53:36] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[08:53:36] ============ [PASSED] drmm_connector_hdmi_init =============
[08:53:36] ============= drmm_connector_init (3 subtests) =============
[08:53:36] [PASSED] drm_test_drmm_connector_init
[08:53:36] [PASSED] drm_test_drmm_connector_init_null_ddc
[08:53:36] ========= drm_test_drmm_connector_init_type_valid =========
[08:53:36] [PASSED] Unknown
[08:53:36] [PASSED] VGA
[08:53:36] [PASSED] DVI-I
[08:53:36] [PASSED] DVI-D
[08:53:36] [PASSED] DVI-A
[08:53:36] [PASSED] Composite
[08:53:36] [PASSED] SVIDEO
[08:53:36] [PASSED] LVDS
[08:53:36] [PASSED] Component
[08:53:36] [PASSED] DIN
[08:53:36] [PASSED] DP
[08:53:36] [PASSED] HDMI-A
[08:53:36] [PASSED] HDMI-B
[08:53:36] [PASSED] TV
[08:53:36] [PASSED] eDP
[08:53:36] [PASSED] Virtual
[08:53:36] [PASSED] DSI
[08:53:36] [PASSED] DPI
[08:53:36] [PASSED] Writeback
[08:53:36] [PASSED] SPI
[08:53:36] [PASSED] USB
[08:53:36] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[08:53:36] =============== [PASSED] drmm_connector_init ===============
[08:53:36] ========= drm_connector_dynamic_init (6 subtests) ==========
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_init
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_init_properties
[08:53:36] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[08:53:36] [PASSED] Unknown
[08:53:36] [PASSED] VGA
[08:53:36] [PASSED] DVI-I
[08:53:36] [PASSED] DVI-D
[08:53:36] [PASSED] DVI-A
[08:53:36] [PASSED] Composite
[08:53:36] [PASSED] SVIDEO
[08:53:36] [PASSED] LVDS
[08:53:36] [PASSED] Component
[08:53:36] [PASSED] DIN
[08:53:36] [PASSED] DP
[08:53:36] [PASSED] HDMI-A
[08:53:36] [PASSED] HDMI-B
[08:53:36] [PASSED] TV
[08:53:36] [PASSED] eDP
[08:53:36] [PASSED] Virtual
[08:53:36] [PASSED] DSI
[08:53:36] [PASSED] DPI
[08:53:36] [PASSED] Writeback
[08:53:36] [PASSED] SPI
[08:53:36] [PASSED] USB
[08:53:36] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[08:53:36] ======== drm_test_drm_connector_dynamic_init_name =========
[08:53:36] [PASSED] Unknown
[08:53:36] [PASSED] VGA
[08:53:36] [PASSED] DVI-I
[08:53:36] [PASSED] DVI-D
[08:53:36] [PASSED] DVI-A
[08:53:36] [PASSED] Composite
[08:53:36] [PASSED] SVIDEO
[08:53:36] [PASSED] LVDS
[08:53:36] [PASSED] Component
[08:53:36] [PASSED] DIN
[08:53:36] [PASSED] DP
[08:53:36] [PASSED] HDMI-A
[08:53:36] [PASSED] HDMI-B
[08:53:36] [PASSED] TV
[08:53:36] [PASSED] eDP
[08:53:36] [PASSED] Virtual
[08:53:36] [PASSED] DSI
[08:53:36] [PASSED] DPI
[08:53:36] [PASSED] Writeback
[08:53:36] [PASSED] SPI
[08:53:36] [PASSED] USB
[08:53:36] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[08:53:36] =========== [PASSED] drm_connector_dynamic_init ============
[08:53:36] ==== drm_connector_dynamic_register_early (4 subtests) =====
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[08:53:36] ====== [PASSED] drm_connector_dynamic_register_early =======
[08:53:36] ======= drm_connector_dynamic_register (7 subtests) ========
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[08:53:36] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[08:53:36] ========= [PASSED] drm_connector_dynamic_register ==========
[08:53:36] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[08:53:36] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[08:53:36] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[08:53:36] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[08:53:36] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[08:53:36] ========== drm_test_get_tv_mode_from_name_valid ===========
[08:53:36] [PASSED] NTSC
[08:53:36] [PASSED] NTSC-443
[08:53:36] [PASSED] NTSC-J
[08:53:36] [PASSED] PAL
[08:53:36] [PASSED] PAL-M
[08:53:36] [PASSED] PAL-N
[08:53:36] [PASSED] SECAM
[08:53:36] [PASSED] Mono
[08:53:36] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[08:53:36] [PASSED] drm_test_get_tv_mode_from_name_truncated
[08:53:36] ============ [PASSED] drm_get_tv_mode_from_name ============
[08:53:36] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[08:53:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[08:53:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[08:53:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[08:53:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[08:53:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[08:53:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[08:53:36] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[08:53:36] [PASSED] VIC 96
[08:53:36] [PASSED] VIC 97
[08:53:36] [PASSED] VIC 101
[08:53:36] [PASSED] VIC 102
[08:53:36] [PASSED] VIC 106
[08:53:36] [PASSED] VIC 107
[08:53:36] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[08:53:36] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[08:53:36] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[08:53:36] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[08:53:36] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[08:53:36] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[08:53:36] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[08:53:36] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[08:53:36] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[08:53:36] [PASSED] Automatic
[08:53:36] [PASSED] Full
[08:53:36] [PASSED] Limited 16:235
[08:53:36] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[08:53:36] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[08:53:36] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[08:53:36] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[08:53:36] === drm_test_drm_hdmi_connector_get_output_format_name ====
[08:53:36] [PASSED] RGB
[08:53:36] [PASSED] YUV 4:2:0
[08:53:36] [PASSED] YUV 4:2:2
[08:53:36] [PASSED] YUV 4:4:4
[08:53:36] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[08:53:36] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[08:53:36] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[08:53:36] ============= drm_damage_helper (21 subtests) ==============
[08:53:36] [PASSED] drm_test_damage_iter_no_damage
[08:53:36] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[08:53:36] [PASSED] drm_test_damage_iter_no_damage_src_moved
[08:53:36] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[08:53:36] [PASSED] drm_test_damage_iter_no_damage_not_visible
[08:53:36] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[08:53:36] [PASSED] drm_test_damage_iter_no_damage_no_fb
[08:53:36] [PASSED] drm_test_damage_iter_simple_damage
[08:53:36] [PASSED] drm_test_damage_iter_single_damage
[08:53:36] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[08:53:36] [PASSED] drm_test_damage_iter_single_damage_outside_src
[08:53:36] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[08:53:36] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[08:53:36] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[08:53:36] [PASSED] drm_test_damage_iter_single_damage_src_moved
[08:53:36] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[08:53:36] [PASSED] drm_test_damage_iter_damage
[08:53:36] [PASSED] drm_test_damage_iter_damage_one_intersect
[08:53:36] [PASSED] drm_test_damage_iter_damage_one_outside
[08:53:36] [PASSED] drm_test_damage_iter_damage_src_moved
[08:53:36] [PASSED] drm_test_damage_iter_damage_not_visible
[08:53:36] ================ [PASSED] drm_damage_helper ================
[08:53:36] ============== drm_dp_mst_helper (3 subtests) ==============
[08:53:36] ============== drm_test_dp_mst_calc_pbn_mode ==============
[08:53:36] [PASSED] Clock 154000 BPP 30 DSC disabled
[08:53:36] [PASSED] Clock 234000 BPP 30 DSC disabled
[08:53:36] [PASSED] Clock 297000 BPP 24 DSC disabled
[08:53:36] [PASSED] Clock 332880 BPP 24 DSC enabled
[08:53:36] [PASSED] Clock 324540 BPP 24 DSC enabled
[08:53:36] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[08:53:36] ============== drm_test_dp_mst_calc_pbn_div ===============
[08:53:36] [PASSED] Link rate 2000000 lane count 4
[08:53:36] [PASSED] Link rate 2000000 lane count 2
[08:53:36] [PASSED] Link rate 2000000 lane count 1
[08:53:36] [PASSED] Link rate 1350000 lane count 4
[08:53:36] [PASSED] Link rate 1350000 lane count 2
[08:53:36] [PASSED] Link rate 1350000 lane count 1
[08:53:36] [PASSED] Link rate 1000000 lane count 4
[08:53:36] [PASSED] Link rate 1000000 lane count 2
[08:53:36] [PASSED] Link rate 1000000 lane count 1
[08:53:36] [PASSED] Link rate 810000 lane count 4
[08:53:36] [PASSED] Link rate 810000 lane count 2
[08:53:36] [PASSED] Link rate 810000 lane count 1
[08:53:36] [PASSED] Link rate 540000 lane count 4
[08:53:36] [PASSED] Link rate 540000 lane count 2
[08:53:36] [PASSED] Link rate 540000 lane count 1
[08:53:36] [PASSED] Link rate 270000 lane count 4
[08:53:36] [PASSED] Link rate 270000 lane count 2
[08:53:36] [PASSED] Link rate 270000 lane count 1
[08:53:36] [PASSED] Link rate 162000 lane count 4
[08:53:36] [PASSED] Link rate 162000 lane count 2
[08:53:36] [PASSED] Link rate 162000 lane count 1
[08:53:36] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[08:53:36] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[08:53:36] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[08:53:36] [PASSED] DP_POWER_UP_PHY with port number
[08:53:36] [PASSED] DP_POWER_DOWN_PHY with port number
[08:53:36] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[08:53:36] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[08:53:36] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[08:53:36] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[08:53:36] [PASSED] DP_QUERY_PAYLOAD with port number
[08:53:36] [PASSED] DP_QUERY_PAYLOAD with VCPI
[08:53:36] [PASSED] DP_REMOTE_DPCD_READ with port number
[08:53:36] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[08:53:36] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[08:53:36] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[08:53:36] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[08:53:36] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[08:53:36] [PASSED] DP_REMOTE_I2C_READ with port number
[08:53:36] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[08:53:36] [PASSED] DP_REMOTE_I2C_READ with transactions array
[08:53:36] [PASSED] DP_REMOTE_I2C_WRITE with port number
[08:53:36] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[08:53:36] [PASSED] DP_REMOTE_I2C_WRITE with data array
[08:53:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[08:53:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[08:53:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[08:53:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[08:53:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[08:53:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[08:53:36] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[08:53:36] ================ [PASSED] drm_dp_mst_helper ================
[08:53:36] ================== drm_exec (7 subtests) ===================
[08:53:36] [PASSED] sanitycheck
[08:53:36] [PASSED] test_lock
[08:53:36] [PASSED] test_lock_unlock
[08:53:36] [PASSED] test_duplicates
[08:53:36] [PASSED] test_prepare
[08:53:36] [PASSED] test_prepare_array
[08:53:36] [PASSED] test_multiple_loops
[08:53:36] ==================== [PASSED] drm_exec =====================
[08:53:36] =========== drm_format_helper_test (17 subtests) ===========
[08:53:36] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[08:53:36] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[08:53:36] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[08:53:36] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[08:53:36] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[08:53:36] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[08:53:36] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[08:53:36] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[08:53:36] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[08:53:36] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[08:53:36] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[08:53:36] ============== drm_test_fb_xrgb8888_to_mono ===============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[08:53:36] ==================== drm_test_fb_swab =====================
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ================ [PASSED] drm_test_fb_swab =================
[08:53:36] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[08:53:36] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[08:53:36] [PASSED] single_pixel_source_buffer
[08:53:36] [PASSED] single_pixel_clip_rectangle
[08:53:36] [PASSED] well_known_colors
[08:53:36] [PASSED] destination_pitch
[08:53:36] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[08:53:36] ================= drm_test_fb_clip_offset =================
[08:53:36] [PASSED] pass through
[08:53:36] [PASSED] horizontal offset
[08:53:36] [PASSED] vertical offset
[08:53:36] [PASSED] horizontal and vertical offset
[08:53:36] [PASSED] horizontal offset (custom pitch)
[08:53:36] [PASSED] vertical offset (custom pitch)
[08:53:36] [PASSED] horizontal and vertical offset (custom pitch)
[08:53:36] ============= [PASSED] drm_test_fb_clip_offset =============
[08:53:36] =================== drm_test_fb_memcpy ====================
[08:53:36] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[08:53:36] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[08:53:36] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[08:53:36] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[08:53:36] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[08:53:36] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[08:53:36] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[08:53:36] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[08:53:36] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[08:53:36] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[08:53:36] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[08:53:36] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[08:53:36] =============== [PASSED] drm_test_fb_memcpy ================
[08:53:36] ============= [PASSED] drm_format_helper_test ==============
[08:53:36] ================= drm_format (18 subtests) =================
[08:53:36] [PASSED] drm_test_format_block_width_invalid
[08:53:36] [PASSED] drm_test_format_block_width_one_plane
[08:53:36] [PASSED] drm_test_format_block_width_two_plane
[08:53:36] [PASSED] drm_test_format_block_width_three_plane
[08:53:36] [PASSED] drm_test_format_block_width_tiled
[08:53:36] [PASSED] drm_test_format_block_height_invalid
[08:53:36] [PASSED] drm_test_format_block_height_one_plane
[08:53:36] [PASSED] drm_test_format_block_height_two_plane
[08:53:36] [PASSED] drm_test_format_block_height_three_plane
[08:53:36] [PASSED] drm_test_format_block_height_tiled
[08:53:36] [PASSED] drm_test_format_min_pitch_invalid
[08:53:36] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[08:53:36] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[08:53:36] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[08:53:36] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[08:53:36] [PASSED] drm_test_format_min_pitch_two_plane
[08:53:36] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[08:53:36] [PASSED] drm_test_format_min_pitch_tiled
[08:53:36] =================== [PASSED] drm_format ====================
[08:53:36] ============== drm_framebuffer (10 subtests) ===============
[08:53:36] ========== drm_test_framebuffer_check_src_coords ==========
[08:53:36] [PASSED] Success: source fits into fb
[08:53:36] [PASSED] Fail: overflowing fb with x-axis coordinate
[08:53:36] [PASSED] Fail: overflowing fb with y-axis coordinate
[08:53:36] [PASSED] Fail: overflowing fb with source width
[08:53:36] [PASSED] Fail: overflowing fb with source height
[08:53:36] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[08:53:36] [PASSED] drm_test_framebuffer_cleanup
[08:53:36] =============== drm_test_framebuffer_create ===============
[08:53:36] [PASSED] ABGR8888 normal sizes
[08:53:36] [PASSED] ABGR8888 max sizes
[08:53:36] [PASSED] ABGR8888 pitch greater than min required
[08:53:36] [PASSED] ABGR8888 pitch less than min required
[08:53:36] [PASSED] ABGR8888 Invalid width
[08:53:36] [PASSED] ABGR8888 Invalid buffer handle
[08:53:36] [PASSED] No pixel format
[08:53:36] [PASSED] ABGR8888 Width 0
[08:53:36] [PASSED] ABGR8888 Height 0
[08:53:36] [PASSED] ABGR8888 Out of bound height * pitch combination
[08:53:36] [PASSED] ABGR8888 Large buffer offset
[08:53:36] [PASSED] ABGR8888 Buffer offset for inexistent plane
[08:53:36] [PASSED] ABGR8888 Invalid flag
[08:53:36] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[08:53:36] [PASSED] ABGR8888 Valid buffer modifier
[08:53:36] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[08:53:36] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[08:53:36] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[08:53:36] [PASSED] NV12 Normal sizes
[08:53:36] [PASSED] NV12 Max sizes
[08:53:36] [PASSED] NV12 Invalid pitch
[08:53:36] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[08:53:36] [PASSED] NV12 different modifier per-plane
[08:53:36] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[08:53:36] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[08:53:36] [PASSED] NV12 Modifier for inexistent plane
[08:53:36] [PASSED] NV12 Handle for inexistent plane
[08:53:36] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[08:53:36] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[08:53:36] [PASSED] YVU420 Normal sizes
[08:53:36] [PASSED] YVU420 Max sizes
[08:53:36] [PASSED] YVU420 Invalid pitch
[08:53:36] [PASSED] YVU420 Different pitches
[08:53:36] [PASSED] YVU420 Different buffer offsets/pitches
[08:53:36] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[08:53:36] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[08:53:36] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[08:53:36] [PASSED] YVU420 Valid modifier
[08:53:36] [PASSED] YVU420 Different modifiers per plane
[08:53:36] [PASSED] YVU420 Modifier for inexistent plane
[08:53:36] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[08:53:36] [PASSED] X0L2 Normal sizes
[08:53:36] [PASSED] X0L2 Max sizes
[08:53:36] [PASSED] X0L2 Invalid pitch
[08:53:36] [PASSED] X0L2 Pitch greater than minimum required
[08:53:36] [PASSED] X0L2 Handle for inexistent plane
[08:53:36] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[08:53:36] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[08:53:36] [PASSED] X0L2 Valid modifier
[08:53:36] [PASSED] X0L2 Modifier for inexistent plane
[08:53:36] =========== [PASSED] drm_test_framebuffer_create ===========
[08:53:36] [PASSED] drm_test_framebuffer_free
[08:53:36] [PASSED] drm_test_framebuffer_init
[08:53:36] [PASSED] drm_test_framebuffer_init_bad_format
[08:53:36] [PASSED] drm_test_framebuffer_init_dev_mismatch
[08:53:36] [PASSED] drm_test_framebuffer_lookup
[08:53:36] [PASSED] drm_test_framebuffer_lookup_inexistent
[08:53:36] [PASSED] drm_test_framebuffer_modifiers_not_supported
[08:53:36] ================= [PASSED] drm_framebuffer =================
[08:53:36] ================ drm_gem_shmem (8 subtests) ================
[08:53:36] [PASSED] drm_gem_shmem_test_obj_create
[08:53:36] [PASSED] drm_gem_shmem_test_obj_create_private
[08:53:36] [PASSED] drm_gem_shmem_test_pin_pages
[08:53:36] [PASSED] drm_gem_shmem_test_vmap
[08:53:36] [PASSED] drm_gem_shmem_test_get_sg_table
[08:53:36] [PASSED] drm_gem_shmem_test_get_pages_sgt
[08:53:36] [PASSED] drm_gem_shmem_test_madvise
[08:53:36] [PASSED] drm_gem_shmem_test_purge
[08:53:36] ================== [PASSED] drm_gem_shmem ==================
[08:53:36] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[08:53:36] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[08:53:36] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[08:53:36] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[08:53:36] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[08:53:36] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[08:53:36] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[08:53:36] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[08:53:36] [PASSED] Automatic
[08:53:36] [PASSED] Full
[08:53:36] [PASSED] Limited 16:235
[08:53:36] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[08:53:36] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[08:53:36] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[08:53:36] [PASSED] drm_test_check_disable_connector
[08:53:36] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[08:53:36] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[08:53:36] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[08:53:36] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[08:53:36] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[08:53:36] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[08:53:36] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[08:53:36] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[08:53:36] [PASSED] drm_test_check_output_bpc_dvi
[08:53:36] [PASSED] drm_test_check_output_bpc_format_vic_1
[08:53:36] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[08:53:36] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[08:53:36] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[08:53:36] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[08:53:36] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[08:53:36] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[08:53:36] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[08:53:36] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[08:53:36] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[08:53:36] [PASSED] drm_test_check_broadcast_rgb_value
[08:53:36] [PASSED] drm_test_check_bpc_8_value
[08:53:36] [PASSED] drm_test_check_bpc_10_value
[08:53:36] [PASSED] drm_test_check_bpc_12_value
[08:53:36] [PASSED] drm_test_check_format_value
[08:53:36] [PASSED] drm_test_check_tmds_char_value
[08:53:36] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[08:53:36] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[08:53:36] [PASSED] drm_test_check_mode_valid
[08:53:36] [PASSED] drm_test_check_mode_valid_reject
[08:53:36] [PASSED] drm_test_check_mode_valid_reject_rate
[08:53:36] [PASSED] drm_test_check_mode_valid_reject_max_clock
[08:53:36] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[08:53:36] ================= drm_managed (2 subtests) =================
[08:53:36] [PASSED] drm_test_managed_release_action
[08:53:36] [PASSED] drm_test_managed_run_action
[08:53:36] =================== [PASSED] drm_managed ===================
[08:53:36] =================== drm_mm (6 subtests) ====================
[08:53:36] [PASSED] drm_test_mm_init
[08:53:36] [PASSED] drm_test_mm_debug
[08:53:36] [PASSED] drm_test_mm_align32
[08:53:36] [PASSED] drm_test_mm_align64
[08:53:36] [PASSED] drm_test_mm_lowest
[08:53:36] [PASSED] drm_test_mm_highest
[08:53:36] ===================== [PASSED] drm_mm ======================
[08:53:36] ============= drm_modes_analog_tv (5 subtests) =============
[08:53:36] [PASSED] drm_test_modes_analog_tv_mono_576i
[08:53:36] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[08:53:36] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[08:53:36] [PASSED] drm_test_modes_analog_tv_pal_576i
[08:53:36] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[08:53:36] =============== [PASSED] drm_modes_analog_tv ===============
[08:53:36] ============== drm_plane_helper (2 subtests) ===============
[08:53:36] =============== drm_test_check_plane_state ================
[08:53:36] [PASSED] clipping_simple
[08:53:36] [PASSED] clipping_rotate_reflect
[08:53:36] [PASSED] positioning_simple
[08:53:36] [PASSED] upscaling
[08:53:36] [PASSED] downscaling
[08:53:36] [PASSED] rounding1
[08:53:36] [PASSED] rounding2
[08:53:36] [PASSED] rounding3
[08:53:36] [PASSED] rounding4
[08:53:36] =========== [PASSED] drm_test_check_plane_state ============
[08:53:36] =========== drm_test_check_invalid_plane_state ============
[08:53:36] [PASSED] positioning_invalid
[08:53:36] [PASSED] upscaling_invalid
[08:53:36] [PASSED] downscaling_invalid
[08:53:36] ======= [PASSED] drm_test_check_invalid_plane_state ========
[08:53:36] ================ [PASSED] drm_plane_helper =================
[08:53:36] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[08:53:36] ====== drm_test_connector_helper_tv_get_modes_check =======
[08:53:36] [PASSED] None
[08:53:36] [PASSED] PAL
[08:53:36] [PASSED] NTSC
[08:53:36] [PASSED] Both, NTSC Default
[08:53:36] [PASSED] Both, PAL Default
[08:53:36] [PASSED] Both, NTSC Default, with PAL on command-line
[08:53:36] [PASSED] Both, PAL Default, with NTSC on command-line
[08:53:36] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[08:53:36] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[08:53:36] ================== drm_rect (9 subtests) ===================
[08:53:36] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[08:53:36] [PASSED] drm_test_rect_clip_scaled_not_clipped
[08:53:36] [PASSED] drm_test_rect_clip_scaled_clipped
[08:53:36] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[08:53:36] ================= drm_test_rect_intersect =================
[08:53:36] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[08:53:36] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[08:53:36] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[08:53:36] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[08:53:36] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[08:53:36] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[08:53:36] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[08:53:36] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[08:53:36] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[08:53:36] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[08:53:36] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[08:53:36] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[08:53:36] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[08:53:36] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[08:53:36] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[08:53:36] ============= [PASSED] drm_test_rect_intersect =============
[08:53:36] ================ drm_test_rect_calc_hscale ================
[08:53:36] [PASSED] normal use
[08:53:36] [PASSED] out of max range
[08:53:36] [PASSED] out of min range
[08:53:36] [PASSED] zero dst
[08:53:36] [PASSED] negative src
[08:53:36] [PASSED] negative dst
[08:53:36] ============ [PASSED] drm_test_rect_calc_hscale ============
[08:53:36] ================ drm_test_rect_calc_vscale ================
[08:53:36] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[08:53:36] [PASSED] out of max range
[08:53:36] [PASSED] out of min range
[08:53:36] [PASSED] zero dst
[08:53:36] [PASSED] negative src
[08:53:36] [PASSED] negative dst
[08:53:36] ============ [PASSED] drm_test_rect_calc_vscale ============
[08:53:36] ================== drm_test_rect_rotate ===================
[08:53:36] [PASSED] reflect-x
[08:53:36] [PASSED] reflect-y
[08:53:36] [PASSED] rotate-0
[08:53:36] [PASSED] rotate-90
[08:53:36] [PASSED] rotate-180
[08:53:36] [PASSED] rotate-270
[08:53:36] ============== [PASSED] drm_test_rect_rotate ===============
[08:53:36] ================ drm_test_rect_rotate_inv =================
[08:53:36] [PASSED] reflect-x
[08:53:36] [PASSED] reflect-y
[08:53:36] [PASSED] rotate-0
[08:53:36] [PASSED] rotate-90
[08:53:36] [PASSED] rotate-180
[08:53:36] [PASSED] rotate-270
[08:53:36] ============ [PASSED] drm_test_rect_rotate_inv =============
[08:53:36] ==================== [PASSED] drm_rect =====================
[08:53:36] ============ drm_sysfb_modeset_test (1 subtest) ============
[08:53:36] ============ drm_test_sysfb_build_fourcc_list =============
[08:53:36] [PASSED] no native formats
[08:53:36] [PASSED] XRGB8888 as native format
[08:53:36] [PASSED] remove duplicates
[08:53:36] [PASSED] convert alpha formats
[08:53:36] [PASSED] random formats
[08:53:36] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[08:53:36] ============= [PASSED] drm_sysfb_modeset_test ==============
[08:53:36] ================== drm_fixp (2 subtests) ===================
[08:53:36] [PASSED] drm_test_int2fixp
[08:53:36] [PASSED] drm_test_sm2fixp
[08:53:36] ==================== [PASSED] drm_fixp =====================
[08:53:36] ============================================================
[08:53:36] Testing complete. Ran 624 tests: passed: 624
[08:53:36] Elapsed time: 27.362s total, 1.660s configuring, 25.326s building, 0.373s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[08:53:36] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:53:38] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:53:47] Starting KUnit Kernel (1/1)...
[08:53:47] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:53:47] ================= ttm_device (5 subtests) ==================
[08:53:47] [PASSED] ttm_device_init_basic
[08:53:47] [PASSED] ttm_device_init_multiple
[08:53:47] [PASSED] ttm_device_fini_basic
[08:53:47] [PASSED] ttm_device_init_no_vma_man
[08:53:47] ================== ttm_device_init_pools ==================
[08:53:47] [PASSED] No DMA allocations, no DMA32 required
[08:53:47] [PASSED] DMA allocations, DMA32 required
[08:53:47] [PASSED] No DMA allocations, DMA32 required
[08:53:47] [PASSED] DMA allocations, no DMA32 required
[08:53:47] ============== [PASSED] ttm_device_init_pools ==============
[08:53:47] =================== [PASSED] ttm_device ====================
[08:53:47] ================== ttm_pool (8 subtests) ===================
[08:53:47] ================== ttm_pool_alloc_basic ===================
[08:53:47] [PASSED] One page
[08:53:47] [PASSED] More than one page
[08:53:47] [PASSED] Above the allocation limit
[08:53:47] [PASSED] One page, with coherent DMA mappings enabled
[08:53:47] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:53:47] ============== [PASSED] ttm_pool_alloc_basic ===============
[08:53:47] ============== ttm_pool_alloc_basic_dma_addr ==============
[08:53:47] [PASSED] One page
[08:53:47] [PASSED] More than one page
[08:53:47] [PASSED] Above the allocation limit
[08:53:47] [PASSED] One page, with coherent DMA mappings enabled
[08:53:47] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:53:47] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[08:53:47] [PASSED] ttm_pool_alloc_order_caching_match
[08:53:47] [PASSED] ttm_pool_alloc_caching_mismatch
[08:53:47] [PASSED] ttm_pool_alloc_order_mismatch
[08:53:47] [PASSED] ttm_pool_free_dma_alloc
[08:53:47] [PASSED] ttm_pool_free_no_dma_alloc
[08:53:47] [PASSED] ttm_pool_fini_basic
[08:53:47] ==================== [PASSED] ttm_pool =====================
[08:53:47] ================ ttm_resource (8 subtests) =================
[08:53:47] ================= ttm_resource_init_basic =================
[08:53:47] [PASSED] Init resource in TTM_PL_SYSTEM
[08:53:47] [PASSED] Init resource in TTM_PL_VRAM
[08:53:47] [PASSED] Init resource in a private placement
[08:53:47] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[08:53:47] ============= [PASSED] ttm_resource_init_basic =============
[08:53:47] [PASSED] ttm_resource_init_pinned
[08:53:47] [PASSED] ttm_resource_fini_basic
[08:53:47] [PASSED] ttm_resource_manager_init_basic
[08:53:47] [PASSED] ttm_resource_manager_usage_basic
[08:53:47] [PASSED] ttm_resource_manager_set_used_basic
[08:53:47] [PASSED] ttm_sys_man_alloc_basic
[08:53:47] [PASSED] ttm_sys_man_free_basic
[08:53:47] ================== [PASSED] ttm_resource ===================
[08:53:47] =================== ttm_tt (15 subtests) ===================
[08:53:47] ==================== ttm_tt_init_basic ====================
[08:53:47] [PASSED] Page-aligned size
[08:53:47] [PASSED] Extra pages requested
[08:53:47] ================ [PASSED] ttm_tt_init_basic ================
[08:53:47] [PASSED] ttm_tt_init_misaligned
[08:53:47] [PASSED] ttm_tt_fini_basic
[08:53:47] [PASSED] ttm_tt_fini_sg
[08:53:47] [PASSED] ttm_tt_fini_shmem
[08:53:47] [PASSED] ttm_tt_create_basic
[08:53:47] [PASSED] ttm_tt_create_invalid_bo_type
[08:53:47] [PASSED] ttm_tt_create_ttm_exists
[08:53:47] [PASSED] ttm_tt_create_failed
[08:53:47] [PASSED] ttm_tt_destroy_basic
[08:53:47] [PASSED] ttm_tt_populate_null_ttm
[08:53:47] [PASSED] ttm_tt_populate_populated_ttm
[08:53:47] [PASSED] ttm_tt_unpopulate_basic
[08:53:47] [PASSED] ttm_tt_unpopulate_empty_ttm
[08:53:47] [PASSED] ttm_tt_swapin_basic
[08:53:47] ===================== [PASSED] ttm_tt ======================
[08:53:47] =================== ttm_bo (14 subtests) ===================
[08:53:47] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[08:53:47] [PASSED] Cannot be interrupted and sleeps
[08:53:47] [PASSED] Cannot be interrupted, locks straight away
[08:53:47] [PASSED] Can be interrupted, sleeps
[08:53:47] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[08:53:47] [PASSED] ttm_bo_reserve_locked_no_sleep
[08:53:47] [PASSED] ttm_bo_reserve_no_wait_ticket
[08:53:48] [PASSED] ttm_bo_reserve_double_resv
[08:53:48] [PASSED] ttm_bo_reserve_interrupted
[08:53:48] [PASSED] ttm_bo_reserve_deadlock
[08:53:48] [PASSED] ttm_bo_unreserve_basic
[08:53:48] [PASSED] ttm_bo_unreserve_pinned
[08:53:48] [PASSED] ttm_bo_unreserve_bulk
[08:53:48] [PASSED] ttm_bo_fini_basic
[08:53:48] [PASSED] ttm_bo_fini_shared_resv
[08:53:48] [PASSED] ttm_bo_pin_basic
[08:53:48] [PASSED] ttm_bo_pin_unpin_resource
[08:53:48] [PASSED] ttm_bo_multiple_pin_one_unpin
[08:53:48] ===================== [PASSED] ttm_bo ======================
[08:53:48] ============== ttm_bo_validate (21 subtests) ===============
[08:53:48] ============== ttm_bo_init_reserved_sys_man ===============
[08:53:48] [PASSED] Buffer object for userspace
[08:53:48] [PASSED] Kernel buffer object
[08:53:48] [PASSED] Shared buffer object
[08:53:48] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[08:53:48] ============== ttm_bo_init_reserved_mock_man ==============
[08:53:48] [PASSED] Buffer object for userspace
[08:53:48] [PASSED] Kernel buffer object
[08:53:48] [PASSED] Shared buffer object
[08:53:48] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[08:53:48] [PASSED] ttm_bo_init_reserved_resv
[08:53:48] ================== ttm_bo_validate_basic ==================
[08:53:48] [PASSED] Buffer object for userspace
[08:53:48] [PASSED] Kernel buffer object
[08:53:48] [PASSED] Shared buffer object
[08:53:48] ============== [PASSED] ttm_bo_validate_basic ==============
[08:53:48] [PASSED] ttm_bo_validate_invalid_placement
[08:53:48] ============= ttm_bo_validate_same_placement ==============
[08:53:48] [PASSED] System manager
[08:53:48] [PASSED] VRAM manager
[08:53:48] ========= [PASSED] ttm_bo_validate_same_placement ==========
[08:53:48] [PASSED] ttm_bo_validate_failed_alloc
[08:53:48] [PASSED] ttm_bo_validate_pinned
[08:53:48] [PASSED] ttm_bo_validate_busy_placement
[08:53:48] ================ ttm_bo_validate_multihop =================
[08:53:48] [PASSED] Buffer object for userspace
[08:53:48] [PASSED] Kernel buffer object
[08:53:48] [PASSED] Shared buffer object
[08:53:48] ============ [PASSED] ttm_bo_validate_multihop =============
[08:53:48] ========== ttm_bo_validate_no_placement_signaled ==========
[08:53:48] [PASSED] Buffer object in system domain, no page vector
[08:53:48] [PASSED] Buffer object in system domain with an existing page vector
[08:53:48] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[08:53:48] ======== ttm_bo_validate_no_placement_not_signaled ========
[08:53:48] [PASSED] Buffer object for userspace
[08:53:48] [PASSED] Kernel buffer object
[08:53:48] [PASSED] Shared buffer object
[08:53:48] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[08:53:48] [PASSED] ttm_bo_validate_move_fence_signaled
[08:53:48] ========= ttm_bo_validate_move_fence_not_signaled =========
[08:53:48] [PASSED] Waits for GPU
[08:53:48] [PASSED] Tries to lock straight away
[08:53:48] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[08:53:48] [PASSED] ttm_bo_validate_happy_evict
[08:53:48] [PASSED] ttm_bo_validate_all_pinned_evict
[08:53:48] [PASSED] ttm_bo_validate_allowed_only_evict
[08:53:48] [PASSED] ttm_bo_validate_deleted_evict
[08:53:48] [PASSED] ttm_bo_validate_busy_domain_evict
[08:53:48] [PASSED] ttm_bo_validate_evict_gutting
[08:53:48] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[08:53:48] ================= [PASSED] ttm_bo_validate =================
[08:53:48] ============================================================
[08:53:48] Testing complete. Ran 101 tests: passed: 101
[08:53:48] Elapsed time: 11.359s total, 1.669s configuring, 9.473s building, 0.180s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 25+ messages in thread
* ✗ CI.checksparse: warning for drm: Color pipeline teardown and follow-up fixes/improvements (rev2)
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (14 preceding siblings ...)
2026-01-09 8:53 ` ✓ CI.KUnit: success " Patchwork
@ 2026-01-09 9:08 ` Patchwork
2026-01-09 9:27 ` ✓ Xe.CI.BAT: success " Patchwork
2026-01-09 10:24 ` ✗ Xe.CI.Full: failure " Patchwork
17 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2026-01-09 9:08 UTC (permalink / raw)
To: Borah, Chaitanya Kumar; +Cc: intel-xe
== Series Details ==
Series: drm: Color pipeline teardown and follow-up fixes/improvements (rev2)
URL : https://patchwork.freedesktop.org/series/159263/
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 9e5d93261e35cda4189383e8746fef35c7d0d335
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
+drivers/gpu/drm/i915/display/dvo_ch7017.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/dvo_ch7xxx.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/dvo_ivch.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/dvo_ns2501.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/dvo_sil164.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/dvo_tfp410.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/g4x_dp.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/g4x_hdmi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/hsw_ips.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/i9xx_plane.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/i9xx_wm.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/icl_dsi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_dsi.h):
+drivers/gpu/drm/i915/display/intel_acpi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_alpm.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_atomic.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_audio.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_backlight.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_bios.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_bw.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_casf.c:147:21: error: too long token expansion
+drivers/gpu/drm/i915/display/intel_casf.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_cdclk.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_color.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_colorop.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_combo_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_connector.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_crtc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_crt.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_crtc_state_dump.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_cursor.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_cx0_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dbuf_bw.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_ddi_buf_trans.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_ddi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_debugfs.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_device.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_driver.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_irq.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_display_power.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_power_map.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_power_well.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_reset.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_rps.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dmc.c:131:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:134:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:137:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:140:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:143:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:146:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:149:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:153:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:154:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:157:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:160:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:163:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:166:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:170:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:174:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:178:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:182:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c:186:1: error: bad constant expression
+drivers/gpu/drm/i915/display/intel_dmc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_aux.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_hdcp.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dpio_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_link_training.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dpll.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dpll_mgr.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_mst.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dpt.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dpt_common.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp_test.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_drrs.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dsb.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dsi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_dsi.h):
+drivers/gpu/drm/i915/display/intel_dsi_dcs_backlight.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dsi_vbt.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dvo.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_encoder.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_fb_bo.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_fbc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_fb.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_fb_pin.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_fdi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_fifo_underrun.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_flipq.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_frontbuffer.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_global_state.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_gmbus.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_hdcp.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_hdcp_gsc_message.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_hdmi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_hotplug.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_hotplug_irq.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_initial_plane.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_link_bw.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_load_detect.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_lspcon.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_lt_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_lvds.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_modeset_lock.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_modeset_setup.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_modeset_verify.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_opregion.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_overlay.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_panel.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_pch_display.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_pch_refclk.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_pfit.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_pipe_crc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_plane.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_pmdemand.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/intel_pps.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_quirks.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_sdvo.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_snps_hdmi_pll.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_snps_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_sprite.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_sprite_uapi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_tc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_tv.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_vblank.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_vdsc.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_vga.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_vrr.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_wm.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/skl_prefill.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/skl_scaler.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h, drivers/gpu/drm/i915/display/intel_display_trace.h):
+drivers/gpu/drm/i915/display/skl_universal_plane.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/skl_watermark.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/vlv_clock.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/vlv_dsi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/vlv_dsi_pll.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/vlv_sideband.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/gem/i915_gem_pages.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/i915_initial_plane.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/i915_panic.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 25+ messages in thread
* RE: [PATCH v2 13/13] drm/i915/color: Add failure handling in plane color pipeline init
2026-01-09 8:17 ` [PATCH v2 13/13] drm/i915/color: Add failure handling in plane color pipeline init Chaitanya Kumar Borah
@ 2026-01-09 9:20 ` Kandpal, Suraj
0 siblings, 0 replies; 25+ messages in thread
From: Kandpal, Suraj @ 2026-01-09 9:20 UTC (permalink / raw)
To: Borah, Chaitanya Kumar, dri-devel@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
amd-gfx@lists.freedesktop.org
Cc: harry.wentland@amd.com, jani.nikula@linux.intel.com,
louis.chauvet@bootlin.com, mwen@igalia.com, contact@emersion.fr,
alex.hung@amd.com, daniels@collabora.com, Shankar, Uma,
nfraprado@collabora.com, ville.syrjala@linux.intel.com,
Roper, Matthew D
> Subject: [PATCH v2 13/13] drm/i915/color: Add failure handling in plane color
> pipeline init
>
> The plane color pipeline initialization built up multiple colorop blocks inline,
> but did not reliably clean up partially constructed pipelines when an
> intermediate step failed. This could lead to leaked colorop objects and fragile
> error handling as the pipeline grows.
>
> Refactor the pipeline construction to use a common helper for adding colorop
> blocks. This centralizes allocation, initialization, and teardown logic, allowing
> the caller to reliably unwind all previously created colorops on failure.
>
> v2:
> - Refactor code to avoid repetition (Suraj)
>
> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> ---
> .../drm/i915/display/intel_color_pipeline.c | 164 +++++++++++++-----
> 1 file changed, 117 insertions(+), 47 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_color_pipeline.c
> b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
> index 8fecc53540ba..1b8d504fa9f2 100644
> --- a/drivers/gpu/drm/i915/display/intel_color_pipeline.c
> +++ b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
> @@ -2,6 +2,8 @@
> /*
> * Copyright © 2025 Intel Corporation
> */
> +#include <drm/drm_print.h>
> +
> #include "intel_color.h"
> #include "intel_colorop.h"
> #include "intel_color_pipeline.h"
> @@ -10,6 +12,7 @@
> #include "skl_universal_plane.h"
>
> #define MAX_COLOR_PIPELINES 1
> +#define MAX_COLOROP 4
> #define PLANE_DEGAMMA_SIZE 128
> #define PLANE_GAMMA_SIZE 32
>
> @@ -17,70 +20,137 @@ static const struct drm_colorop_funcs
> intel_colorop_funcs = {
> .destroy = intel_colorop_destroy,
> };
>
> +/*
> + * 3DLUT can be bound to all three HDR planes. However, even with the
> +latest
> + * color pipeline UAPI, there is no good way to represent a HW block
> +which
> + * can be shared/attached at different stages of the pipeline. So right
> +now,
> + * we expose 3DLUT only attached with the primary plane.
> + *
> + * That way we don't confuse the userspace with opaque commit failures
> + * on trying to enable it on multiple planes which would otherwise make
> + * the pipeline totally unusable.
> + */
> +static const enum intel_color_block nvl_primary_plane_pipeline[] = {
Use the official code name that would be xe3plpd
Otherwise LGTM,
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
> + INTEL_PLANE_CB_PRE_CSC_LUT,
> + INTEL_PLANE_CB_CSC,
> + INTEL_PLANE_CB_3DLUT,
> + INTEL_PLANE_CB_POST_CSC_LUT,
> +};
> +
> +static const enum intel_color_block hdr_plane_pipeline[] = {
> + INTEL_PLANE_CB_PRE_CSC_LUT,
> + INTEL_PLANE_CB_CSC,
> + INTEL_PLANE_CB_POST_CSC_LUT,
> +};
> +
> +static bool plane_has_3dlut(struct intel_display *display, enum pipe pipe,
> + struct drm_plane *plane)
> +{
> + return (DISPLAY_VER(display) >= 35 &&
> + intel_color_crtc_has_3dlut(display, pipe) &&
> + plane->type == DRM_PLANE_TYPE_PRIMARY); }
> +
> static
> -int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct
> drm_prop_enum_list *list,
> - enum pipe pipe)
> +struct intel_colorop *intel_color_pipeline_plane_add_colorop(struct
> drm_plane *plane,
> + struct
> intel_colorop *prev,
> + enum
> intel_color_block id)
> {
> struct drm_device *dev = plane->dev;
> - struct intel_display *display = to_intel_display(dev);
> - struct drm_colorop *prev_op;
> struct intel_colorop *colorop;
> int ret;
>
> - colorop = intel_colorop_create(INTEL_PLANE_CB_PRE_CSC_LUT);
> -
> - ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base,
> plane, &intel_colorop_funcs,
> - PLANE_DEGAMMA_SIZE,
> -
> DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
> -
> DRM_COLOROP_FLAG_ALLOW_BYPASS);
> -
> - if (ret)
> - return ret;
> -
> - list->type = colorop->base.base.id;
> -
> - /* TODO: handle failures and clean up */
> - prev_op = &colorop->base;
> -
> - colorop = intel_colorop_create(INTEL_PLANE_CB_CSC);
> - ret = drm_plane_colorop_ctm_3x4_init(dev, &colorop->base, plane,
> &intel_colorop_funcs,
> -
> DRM_COLOROP_FLAG_ALLOW_BYPASS);
> - if (ret)
> - return ret;
> -
> - drm_colorop_set_next_property(prev_op, &colorop->base);
> - prev_op = &colorop->base;
> -
> - if (DISPLAY_VER(display) >= 35 &&
> - intel_color_crtc_has_3dlut(display, pipe) &&
> - plane->type == DRM_PLANE_TYPE_PRIMARY) {
> - colorop = intel_colorop_create(INTEL_PLANE_CB_3DLUT);
> -
> + colorop = intel_colorop_create(id);
> +
> + if (IS_ERR(colorop))
> + return colorop;
> +
> + switch (id) {
> + case INTEL_PLANE_CB_PRE_CSC_LUT:
> + ret = drm_plane_colorop_curve_1d_lut_init(dev,
> + &colorop->base,
> plane,
> +
> &intel_colorop_funcs,
> +
> PLANE_DEGAMMA_SIZE,
> +
> DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
> +
> DRM_COLOROP_FLAG_ALLOW_BYPASS);
> + break;
> + case INTEL_PLANE_CB_CSC:
> + ret = drm_plane_colorop_ctm_3x4_init(dev, &colorop->base,
> plane,
> + &intel_colorop_funcs,
> +
> DRM_COLOROP_FLAG_ALLOW_BYPASS);
> + break;
> + case INTEL_PLANE_CB_3DLUT:
> ret = drm_plane_colorop_3dlut_init(dev, &colorop->base,
> plane,
> &intel_colorop_funcs, 17,
>
> DRM_COLOROP_LUT3D_INTERPOLATION_TETRAHEDRAL,
> true);
> - if (ret)
> - return ret;
> -
> - drm_colorop_set_next_property(prev_op, &colorop->base);
> -
> - prev_op = &colorop->base;
> + break;
> + case INTEL_PLANE_CB_POST_CSC_LUT:
> + ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop-
> >base, plane,
> +
> &intel_colorop_funcs,
> +
> PLANE_GAMMA_SIZE,
> +
> DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
> +
> DRM_COLOROP_FLAG_ALLOW_BYPASS);
> + break;
> + default:
> + drm_err(plane->dev, "Invalid colorop id [%d]", id);
> + ret = -EINVAL;
> }
>
> - colorop = intel_colorop_create(INTEL_PLANE_CB_POST_CSC_LUT);
> - ret = drm_plane_colorop_curve_1d_lut_init(dev, &colorop->base,
> plane, &intel_colorop_funcs,
> - PLANE_GAMMA_SIZE,
> -
> DRM_COLOROP_LUT1D_INTERPOLATION_LINEAR,
> -
> DRM_COLOROP_FLAG_ALLOW_BYPASS);
> if (ret)
> - return ret;
> + goto cleanup;
>
> - drm_colorop_set_next_property(prev_op, &colorop->base);
> + if (prev)
> + drm_colorop_set_next_property(&prev->base, &colorop-
> >base);
>
> - list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", list->type);
> + return colorop;
> +
> +cleanup:
> + intel_colorop_destroy(&colorop->base);
> + return ERR_PTR(ret);
> +}
> +
> +static
> +int _intel_color_pipeline_plane_init(struct drm_plane *plane, struct
> drm_prop_enum_list *list,
> + enum pipe pipe)
> +{
> + struct drm_device *dev = plane->dev;
> + struct intel_display *display = to_intel_display(dev);
> + struct intel_colorop *colorop[MAX_COLOROP];
> + struct intel_colorop *prev = NULL;
> + const enum intel_color_block *pipeline;
> + int pipeline_len;
> + int ret = 0;
> + int i;
> +
> + if (plane_has_3dlut(display, pipe, plane)) {
> + pipeline = nvl_primary_plane_pipeline;
> + pipeline_len = ARRAY_SIZE(nvl_primary_plane_pipeline);
> + } else {
> + pipeline = hdr_plane_pipeline;
> + pipeline_len = ARRAY_SIZE(hdr_plane_pipeline);
> + }
> +
> + for (i = 0; i < pipeline_len; i++) {
> + colorop[i] = intel_color_pipeline_plane_add_colorop(plane,
> prev,
> + pipeline[i]);
> + if (IS_ERR(colorop[i])) {
> + ret = PTR_ERR(colorop[i]);
> + goto cleanup;
> + }
> +
> + prev = colorop[i];
> + }
> +
> + list->type = colorop[0]->base.base.id;
> + list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d",
> +colorop[0]->base.base.id);
>
> return 0;
> +
> +cleanup:
> + while (--i >= 0)
> + intel_colorop_destroy(&colorop[i]->base);
> + return ret;
> }
>
> int intel_color_pipeline_plane_init(struct drm_plane *plane, enum pipe pipe)
> --
> 2.25.1
^ permalink raw reply [flat|nested] 25+ messages in thread
* ✓ Xe.CI.BAT: success for drm: Color pipeline teardown and follow-up fixes/improvements (rev2)
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (15 preceding siblings ...)
2026-01-09 9:08 ` ✗ CI.checksparse: warning " Patchwork
@ 2026-01-09 9:27 ` Patchwork
2026-01-09 10:24 ` ✗ Xe.CI.Full: failure " Patchwork
17 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2026-01-09 9:27 UTC (permalink / raw)
To: Borah, Chaitanya Kumar; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1904 bytes --]
== Series Details ==
Series: drm: Color pipeline teardown and follow-up fixes/improvements (rev2)
URL : https://patchwork.freedesktop.org/series/159263/
State : success
== Summary ==
CI Bug Log - changes from xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335_BAT -> xe-pw-159263v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-159263v2_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [FAIL][1] ([Intel XE#6519]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/bat-dg2-oem2/igt@xe_waitfence@engine.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/bat-dg2-oem2/igt@xe_waitfence@engine.html
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [FAIL][3] ([Intel XE#6520]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* IGT: IGT_8692 -> IGT_8693
* Linux: xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335 -> xe-pw-159263v2
IGT_8692: 8692
IGT_8693: 8693
xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335: 9e5d93261e35cda4189383e8746fef35c7d0d335
xe-pw-159263v2: 159263v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/index.html
[-- Attachment #2: Type: text/html, Size: 2517 bytes --]
^ permalink raw reply [flat|nested] 25+ messages in thread
* ✗ Xe.CI.Full: failure for drm: Color pipeline teardown and follow-up fixes/improvements (rev2)
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
` (16 preceding siblings ...)
2026-01-09 9:27 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2026-01-09 10:24 ` Patchwork
17 siblings, 0 replies; 25+ messages in thread
From: Patchwork @ 2026-01-09 10:24 UTC (permalink / raw)
To: Chaitanya Kumar Borah; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 45023 bytes --]
== Series Details ==
Series: drm: Color pipeline teardown and follow-up fixes/improvements (rev2)
URL : https://patchwork.freedesktop.org/series/159263/
State : failure
== Summary ==
CI Bug Log - changes from xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335_FULL -> xe-pw-159263v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-159263v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-159263v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-159263v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-2/igt@kms_flip@2x-flip-vs-rmfb.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_flip@2x-flip-vs-rmfb.html
Known issues
------------
Here are the changes found in xe-pw-159263v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2370])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +6 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2328]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#607])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +15 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#367])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +22 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: NOTRUN -> [INCOMPLETE][15] ([Intel XE#3862]) +1 other test incomplete
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2724])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2325]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@gamma:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#306])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-7/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +18 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#373]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-4/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#6974])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#6743])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@kms_content_protection@dp-mst-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2390])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#3304]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][26] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2341])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#6707]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2321]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1424])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2320]) +6 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2321])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#309])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2286])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1340])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2244]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4422]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4156])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#776])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2373])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1421]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][42] -> [FAIL][43] ([Intel XE#301])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2293]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2380]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1401] / [Intel XE#1745])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1401])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2293] / [Intel XE#2380]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#4141]) +24 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#651]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2311]) +57 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2313]) +53 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#656]) +7 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@static-toggle-suspend:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1503])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4298])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#6901])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6911])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#6900])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2501])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2486]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4329] / [Intel XE#6912])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#599]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#5021])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#6886]) +9 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#870]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2392])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2499])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#1489]) +14 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#2387])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +24 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@kms_psr@psr2-no-drrs.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2413])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1435])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-a-edp-1:
- shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#6361]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-lnl-8/igt@kms_setmode@basic@pipe-a-edp-1.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-5/igt@kms_setmode@basic@pipe-a-edp-1.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#6503]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2450])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1499]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2168]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#2142]) +1 other test fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1499])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: NOTRUN -> [FAIL][87] ([Intel XE#5937])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#6599]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2504])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#4837]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-5/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#4837]) +14 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#6665])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-3/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_online@resume-dss:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#4837] / [Intel XE#6665])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-5/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4837] / [Intel XE#6665]) +6 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#5793])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][96] -> [INCOMPLETE][97] ([Intel XE#6321])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-cm:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#688]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-5/igt@xe_evict@evict-small-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2322]) +19 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1392]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#6874]) +53 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_multi_queue@many-execs-priority:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#6874]) +5 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-2/igt@xe_exec_multi_queue@many-execs-priority.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#5007]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#4943]) +28 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#5625])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-huge:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4943]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-huge.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#6281])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2457])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122]) -> ([SKIP][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136]) ([Intel XE#2457])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-1/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-10/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-10/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-2/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-9/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-2/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-10/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-2/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-1/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-1/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-9/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-9/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-3/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#6964]) +8 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_multigpu_svm@mgpu-migration-prefetch:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#6964]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-5/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2248])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2245])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2236])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-9/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2284]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-2/igt@xe_pm@d3cold-mocs.html
* igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#4733]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#944]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#944])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-8/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-bmg: [PASS][146] -> [FAIL][147] ([Intel XE#5937])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-bmg-3/igt@xe_sriov_vram@vf-access-after-resize-up.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-bmg-10/igt@xe_sriov_vram@vf-access-after-resize-up.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][148] ([Intel XE#6054]) -> [PASS][149] +3 other tests pass
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][150] ([Intel XE#5625]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[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#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6743
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[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
-------------
* IGT: IGT_8692 -> IGT_8693
* Linux: xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335 -> xe-pw-159263v2
IGT_8692: 8692
IGT_8693: 8693
xe-4354-9e5d93261e35cda4189383e8746fef35c7d0d335: 9e5d93261e35cda4189383e8746fef35c7d0d335
xe-pw-159263v2: 159263v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159263v2/index.html
[-- Attachment #2: Type: text/html, Size: 50529 bytes --]
^ permalink raw reply [flat|nested] 25+ messages in thread
* Re: [PATCH v2 05/13] drm/colorop: Add destroy helper for colorop objects
2026-01-09 8:17 ` [PATCH v2 05/13] drm/colorop: Add destroy helper for colorop objects Chaitanya Kumar Borah
@ 2026-01-12 11:23 ` Jani Nikula
2026-01-13 10:53 ` Borah, Chaitanya Kumar
0 siblings, 1 reply; 25+ messages in thread
From: Jani Nikula @ 2026-01-12 11:23 UTC (permalink / raw)
To: Chaitanya Kumar Borah, dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, louis.chauvet, mwen, contact, alex.hung, daniels,
uma.shankar, suraj.kandpal, nfraprado, ville.syrjala,
matthew.d.roper
On Fri, 09 Jan 2026, Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> wrote:
> Add a helper that performs common cleanup and frees the
> associated object. This can be used by drivers if they do not
> require any driver-specific teardown.
>
> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Uma Shankar <uma.shankar@intel.com>
> Reviewed-by: Alex Hung <alex.hung@amd.com>
> ---
> drivers/gpu/drm/drm_colorop.c | 12 ++++++++++++
> include/drm/drm_colorop.h | 10 ++++++++++
> 2 files changed, 22 insertions(+)
>
> diff --git a/drivers/gpu/drm/drm_colorop.c b/drivers/gpu/drm/drm_colorop.c
> index 44eb823585d2..ba19a3ab23cb 100644
> --- a/drivers/gpu/drm/drm_colorop.c
> +++ b/drivers/gpu/drm/drm_colorop.c
> @@ -178,6 +178,18 @@ void drm_colorop_cleanup(struct drm_colorop *colorop)
> }
> EXPORT_SYMBOL(drm_colorop_cleanup);
>
> +/**
> + * drm_colorop_destroy() - Helper for colorop destruction
> + *
> + * @colorop: colorop to destroy
> + */
> +void drm_colorop_destroy(struct drm_colorop *colorop)
> +{
> + drm_colorop_cleanup(colorop);
> + kfree(colorop);
> +}
> +EXPORT_SYMBOL(drm_colorop_destroy);
> +
> /**
> * drm_colorop_pipeline_destroy - Helper for color pipeline destruction
> *
> diff --git a/include/drm/drm_colorop.h b/include/drm/drm_colorop.h
> index a3a32f9f918c..0f5ba72c1704 100644
> --- a/include/drm/drm_colorop.h
> +++ b/include/drm/drm_colorop.h
> @@ -420,6 +420,16 @@ void drm_colorop_atomic_destroy_state(struct drm_colorop *colorop,
> */
> void drm_colorop_reset(struct drm_colorop *colorop);
>
> +/**
> + * drm_colorop_destroy - destroy colorop
> + * @colorop: drm colorop
> + *
> + * Destroys @colorop by performing common DRM cleanup and freeing the
> + * colorop object. This can be used by drivers if they do not
> + * require any driver-specific teardown.
> + */
The kernel-doc should be with the function definition, not at the
declaration, and certainly not both.
BR,
Jani.
> +void drm_colorop_destroy(struct drm_colorop *colorop);
> +
> /**
> * drm_colorop_index - find the index of a registered colorop
> * @colorop: colorop to find index for
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 25+ messages in thread
* Re: [PATCH v2 03/13] drm/vkms: Fix color pipeline enum name leak
2026-01-09 8:17 ` [PATCH v2 03/13] drm/vkms: " Chaitanya Kumar Borah
@ 2026-01-12 14:31 ` Louis Chauvet
0 siblings, 0 replies; 25+ messages in thread
From: Louis Chauvet @ 2026-01-12 14:31 UTC (permalink / raw)
To: Chaitanya Kumar Borah, dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, mwen, contact, alex.hung, daniels,
uma.shankar, suraj.kandpal, nfraprado, ville.syrjala,
matthew.d.roper
On 1/9/26 09:17, Chaitanya Kumar Borah wrote:
> vkms_initialize_colorops() allocates enum names for color pipelines,
> which are copied by drm_property_create_enum(). The temporary strings
> were not freed, resulting in a memory leak.
>
> Allocate enum names only after successful pipeline construction and
> free them on all exit paths
>
> Fixes: c1e578bd08da ("drm/vkms: Add enumerated 1D curve colorop")
> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> Reviewed-by: Uma Shankar <uma.shankar@intel.com>
> Reviewed-by: Alex Hung <alex.hung@amd.com>
Reviewed-by: Louis Chauvet <louis.chauvet@bootlin.com>
> ---
> drivers/gpu/drm/vkms/vkms_colorop.c | 15 ++++++++-------
> 1 file changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/vkms/vkms_colorop.c b/drivers/gpu/drm/vkms/vkms_colorop.c
> index 5c3ffc78aea0..d03a1f2e9c41 100644
> --- a/drivers/gpu/drm/vkms/vkms_colorop.c
> +++ b/drivers/gpu/drm/vkms/vkms_colorop.c
> @@ -37,7 +37,6 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
> goto cleanup;
>
> list->type = ops[i]->base.id;
> - list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", ops[i]->base.id);
>
> i++;
>
> @@ -88,6 +87,8 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
>
> drm_colorop_set_next_property(ops[i - 1], ops[i]);
>
> + list->name = kasprintf(GFP_KERNEL, "Color Pipeline %d", ops[0]->base.id);
> +
> return 0;
>
> cleanup:
> @@ -103,18 +104,18 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
>
> int vkms_initialize_colorops(struct drm_plane *plane)
> {
> - struct drm_prop_enum_list pipeline;
> - int ret;
> + struct drm_prop_enum_list pipeline = {};
> + int ret = 0;
>
> /* Add color pipeline */
> ret = vkms_initialize_color_pipeline(plane, &pipeline);
> if (ret)
> - return ret;
> + goto out;
>
> /* Create COLOR_PIPELINE property and attach */
> ret = drm_plane_create_color_pipeline_property(plane, &pipeline, 1);
> - if (ret)
> - return ret;
>
> - return 0;
> + kfree(pipeline.name);
> +out:
> + return ret;
> }
^ permalink raw reply [flat|nested] 25+ messages in thread
* Re: [PATCH v2 08/13] drm/vkms: Hook up colorop destroy helper for plane pipelines
2026-01-09 8:17 ` [PATCH v2 08/13] drm/vkms: " Chaitanya Kumar Borah
@ 2026-01-12 14:33 ` Louis Chauvet
0 siblings, 0 replies; 25+ messages in thread
From: Louis Chauvet @ 2026-01-12 14:33 UTC (permalink / raw)
To: Chaitanya Kumar Borah, dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, mwen, contact, alex.hung, daniels,
uma.shankar, suraj.kandpal, nfraprado, ville.syrjala,
matthew.d.roper
On 1/9/26 09:17, Chaitanya Kumar Borah wrote:
> Provide a drm_colorop_funcs instance for vkms color pipeline
> objects and hook up the common drm_colorop_destroy() helper as the
> destroy callback.
>
> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> Reviewed-by: Uma Shankar <uma.shankar@intel.com>
> Reviewed-by: Alex Hung <alex.hung@amd.com>
Reviewed-by: Louis Chauvet <louis.chauvet@bootlin.com>
> ---
> drivers/gpu/drm/vkms/vkms_colorop.c | 14 ++++++++++----
> 1 file changed, 10 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/vkms/vkms_colorop.c b/drivers/gpu/drm/vkms/vkms_colorop.c
> index 9e9dd0494628..ba826ad384b7 100644
> --- a/drivers/gpu/drm/vkms/vkms_colorop.c
> +++ b/drivers/gpu/drm/vkms/vkms_colorop.c
> @@ -12,6 +12,10 @@ static const u64 supported_tfs =
> BIT(DRM_COLOROP_1D_CURVE_SRGB_EOTF) |
> BIT(DRM_COLOROP_1D_CURVE_SRGB_INV_EOTF);
>
> +static const struct drm_colorop_funcs vkms_colorop_funcs = {
> + .destroy = drm_colorop_destroy,
> +};
> +
> #define MAX_COLOR_PIPELINE_OPS 4
>
> static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_prop_enum_list *list)
> @@ -31,7 +35,8 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
> goto cleanup;
> }
>
> - ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL, supported_tfs,
> + ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, &vkms_colorop_funcs,
> + supported_tfs,
> DRM_COLOROP_FLAG_ALLOW_BYPASS);
> if (ret)
> goto cleanup;
> @@ -48,7 +53,7 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
> goto cleanup;
> }
>
> - ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, NULL,
> + ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, &vkms_colorop_funcs,
> DRM_COLOROP_FLAG_ALLOW_BYPASS);
> if (ret)
> goto cleanup;
> @@ -65,7 +70,7 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
> goto cleanup;
> }
>
> - ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, NULL,
> + ret = drm_plane_colorop_ctm_3x4_init(dev, ops[i], plane, &vkms_colorop_funcs,
> DRM_COLOROP_FLAG_ALLOW_BYPASS);
> if (ret)
> goto cleanup;
> @@ -82,7 +87,8 @@ static int vkms_initialize_color_pipeline(struct drm_plane *plane, struct drm_pr
> goto cleanup;
> }
>
> - ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, NULL, supported_tfs,
> + ret = drm_plane_colorop_curve_1d_init(dev, ops[i], plane, &vkms_colorop_funcs,
> + supported_tfs,
> DRM_COLOROP_FLAG_ALLOW_BYPASS);
> if (ret)
> goto cleanup;
^ permalink raw reply [flat|nested] 25+ messages in thread
* Re: [PATCH v2 11/13] drm/vkms: Remove drm_colorop_pipeline_destroy() from vkms_destroy()
2026-01-09 8:17 ` [PATCH v2 11/13] drm/vkms: Remove drm_colorop_pipeline_destroy() from vkms_destroy() Chaitanya Kumar Borah
@ 2026-01-12 14:33 ` Louis Chauvet
0 siblings, 0 replies; 25+ messages in thread
From: Louis Chauvet @ 2026-01-12 14:33 UTC (permalink / raw)
To: Chaitanya Kumar Borah, dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, jani.nikula, mwen, contact, alex.hung, daniels,
uma.shankar, suraj.kandpal, nfraprado, ville.syrjala,
matthew.d.roper
On 1/9/26 09:17, Chaitanya Kumar Borah wrote:
> Now that colorops are cleaned from drm_mode_config_cleanup(), remove
> drm_colorop_pipeline_destroy() from vkms_destroy().
>
> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> Reviewed-by: Uma Shankar <uma.shankar@intel.com>
Reviewed-by: Louis Chauvet <louis.chauvet@bootlin.com>
> ---
> drivers/gpu/drm/vkms/vkms_drv.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/vkms/vkms_drv.c b/drivers/gpu/drm/vkms/vkms_drv.c
> index 434c295f44ba..95020765c4c2 100644
> --- a/drivers/gpu/drm/vkms/vkms_drv.c
> +++ b/drivers/gpu/drm/vkms/vkms_drv.c
> @@ -259,7 +259,6 @@ void vkms_destroy(struct vkms_config *config)
>
> fdev = config->dev->faux_dev;
>
> - drm_colorop_pipeline_destroy(&config->dev->drm);
> drm_dev_unregister(&config->dev->drm);
> drm_atomic_helper_shutdown(&config->dev->drm);
> devres_release_group(&fdev->dev, NULL);
^ permalink raw reply [flat|nested] 25+ messages in thread
* Re: [PATCH v2 05/13] drm/colorop: Add destroy helper for colorop objects
2026-01-12 11:23 ` Jani Nikula
@ 2026-01-13 10:53 ` Borah, Chaitanya Kumar
0 siblings, 0 replies; 25+ messages in thread
From: Borah, Chaitanya Kumar @ 2026-01-13 10:53 UTC (permalink / raw)
To: Jani Nikula, dri-devel, intel-gfx, intel-xe, amd-gfx
Cc: harry.wentland, louis.chauvet, mwen, contact, alex.hung, daniels,
uma.shankar, suraj.kandpal, nfraprado, ville.syrjala,
matthew.d.roper
On 1/12/2026 4:53 PM, Jani Nikula wrote:
> On Fri, 09 Jan 2026, Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> wrote:
>> Add a helper that performs common cleanup and frees the
>> associated object. This can be used by drivers if they do not
>> require any driver-specific teardown.
>>
>> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
>> Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
>> Reviewed-by: Uma Shankar <uma.shankar@intel.com>
>> Reviewed-by: Alex Hung <alex.hung@amd.com>
>> ---
>> drivers/gpu/drm/drm_colorop.c | 12 ++++++++++++
>> include/drm/drm_colorop.h | 10 ++++++++++
>> 2 files changed, 22 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/drm_colorop.c b/drivers/gpu/drm/drm_colorop.c
>> index 44eb823585d2..ba19a3ab23cb 100644
>> --- a/drivers/gpu/drm/drm_colorop.c
>> +++ b/drivers/gpu/drm/drm_colorop.c
>> @@ -178,6 +178,18 @@ void drm_colorop_cleanup(struct drm_colorop *colorop)
>> }
>> EXPORT_SYMBOL(drm_colorop_cleanup);
>>
>> +/**
>> + * drm_colorop_destroy() - Helper for colorop destruction
>> + *
>> + * @colorop: colorop to destroy
>> + */
>> +void drm_colorop_destroy(struct drm_colorop *colorop)
>> +{
>> + drm_colorop_cleanup(colorop);
>> + kfree(colorop);
>> +}
>> +EXPORT_SYMBOL(drm_colorop_destroy);
>> +
>> /**
>> * drm_colorop_pipeline_destroy - Helper for color pipeline destruction
>> *
>> diff --git a/include/drm/drm_colorop.h b/include/drm/drm_colorop.h
>> index a3a32f9f918c..0f5ba72c1704 100644
>> --- a/include/drm/drm_colorop.h
>> +++ b/include/drm/drm_colorop.h
>> @@ -420,6 +420,16 @@ void drm_colorop_atomic_destroy_state(struct drm_colorop *colorop,
>> */
>> void drm_colorop_reset(struct drm_colorop *colorop);
>>
>> +/**
>> + * drm_colorop_destroy - destroy colorop
>> + * @colorop: drm colorop
>> + *
>> + * Destroys @colorop by performing common DRM cleanup and freeing the
>> + * colorop object. This can be used by drivers if they do not
>> + * require any driver-specific teardown.
>> + */
>
> The kernel-doc should be with the function definition, not at the
> declaration, and certainly not both.
>
Thank you, Jani, for pointing it out. I have removed it in v3.
Regards
Chaitanya
> BR,
> Jani.
>
>> +void drm_colorop_destroy(struct drm_colorop *colorop);
>> +
>> /**
>> * drm_colorop_index - find the index of a registered colorop
>> * @colorop: colorop to find index for
>
^ permalink raw reply [flat|nested] 25+ messages in thread
end of thread, other threads:[~2026-01-13 10:53 UTC | newest]
Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-09 8:17 [PATCH v2 00/13] drm: Color pipeline teardown and follow-up fixes/improvements Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 01/13] drm/i915/color: Place 3D LUT after CSC in plane color pipeline Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 02/13] drm/amd/display: Fix color pipeline enum name leak Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 03/13] drm/vkms: " Chaitanya Kumar Borah
2026-01-12 14:31 ` Louis Chauvet
2026-01-09 8:17 ` [PATCH v2 04/13] drm/i915/display: " Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 05/13] drm/colorop: Add destroy helper for colorop objects Chaitanya Kumar Borah
2026-01-12 11:23 ` Jani Nikula
2026-01-13 10:53 ` Borah, Chaitanya Kumar
2026-01-09 8:17 ` [PATCH v2 06/13] drm: Allow driver-managed destruction of " Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 07/13] drm/amd/display: Hook up colorop destroy helper for plane pipelines Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 08/13] drm/vkms: " Chaitanya Kumar Borah
2026-01-12 14:33 ` Louis Chauvet
2026-01-09 8:17 ` [PATCH v2 09/13] drm/i915/display: Hook up intel_colorop_destroy Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 10/13] drm: Clean up colorop objects during mode_config cleanup Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 11/13] drm/vkms: Remove drm_colorop_pipeline_destroy() from vkms_destroy() Chaitanya Kumar Borah
2026-01-12 14:33 ` Louis Chauvet
2026-01-09 8:17 ` [PATCH v2 12/13] drm/colorop: Use destroy callback for color pipeline teardown Chaitanya Kumar Borah
2026-01-09 8:17 ` [PATCH v2 13/13] drm/i915/color: Add failure handling in plane color pipeline init Chaitanya Kumar Borah
2026-01-09 9:20 ` Kandpal, Suraj
2026-01-09 8:52 ` ✗ CI.checkpatch: warning for drm: Color pipeline teardown and follow-up fixes/improvements (rev2) Patchwork
2026-01-09 8:53 ` ✓ CI.KUnit: success " Patchwork
2026-01-09 9:08 ` ✗ CI.checksparse: warning " Patchwork
2026-01-09 9:27 ` ✓ Xe.CI.BAT: success " Patchwork
2026-01-09 10:24 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox