Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND 00/10] Introduce drm sharpness property
@ 2025-10-28 12:07 Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 01/10] drm/drm_crtc: Introduce sharpness strength property Ankit Nautiyal
                   ` (15 more replies)
  0 siblings, 16 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: nemesa.garg, Ankit Nautiyal

This is a resend of the patch series [1] originally submitted by
Nemesa Garg <nemesa.garg@intel.com> to:
- intel-gfx@lists.freedesktop.org
- dri-devel@lists.freedesktop.org
- intel-xe@lists.freedesktop.org

One of the patches was missed by Patchwork, which caused the xe CI to skip
running tests for the full series. To ensure proper CI coverage and
results, I’ve applied the series on top of the latest tree and regenerated
it using `git format-patch`.

[1] https://patchwork.freedesktop.org/series/138754/


--- Original cover letter follows ---

Many a times images are blurred or upscaled content is also not as
crisp as original rendered image. Traditional sharpening techniques often
apply a uniform level of enhancement across entire image, which sometimes
result in over-sharpening of some areas and potential loss of natural details.

Intel has come up with Display Engine based adaptive sharpening filter
with minimal power and performance impact. From LNL onwards, the Display
hardware can use one of the pipe scaler for adaptive sharpness filter.
This can be used for both gaming and non-gaming use cases like photos,
image viewing. It works on a region of pixels depending on the tap size.

This is an attempt to introduce an adaptive sharpness solution which
helps in improving the image quality. For this new CRTC property is added.
The user can set this property with desired sharpness strength value with
0-255. A value of 1 representing minimum sharpening strength and 255
representing maximum sharpness strength. A strength value of 0 means no
sharpening or sharpening feature disabled.
It works on a region of pixels depending on the tap size. The coefficients
are used to generate an alpha value which is used to blend the sharpened
image to original image.

Middleware MR link: https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3665
IGT patchwork link: https://patchwork.freedesktop.org/series/130218/

Continuing discussions from:  https://patchwork.freedesktop.org/series/129888/

https://invent.kde.org/plasma/kwin/-/merge_requests/7689
Got ack from kwin maintainer on the UAPI patch.

Nemesa Garg (10):
  drm/drm_crtc: Introduce sharpness strength property
  drm/i915/display: Introduce HAS_CASF for sharpness support
  drm/i915/display: Add CASF strength and winsize
  drm/i915/display: Add filter lut values
  drm/i915/display: Compute the scaler coefficients
  drm/i915/display: Add and compute scaler parameter
  drm/i915/display: Configure the second scaler
  drm/i915/display: Set and get the casf config
  drm/i915/display: Enable/disable casf
  drm/i915/display: Expose sharpness strength property

 drivers/gpu/drm/drm_atomic_uapi.c             |   4 +
 drivers/gpu/drm/drm_crtc.c                    |  35 +++
 drivers/gpu/drm/i915/Makefile                 |   1 +
 drivers/gpu/drm/i915/display/intel_casf.c     | 293 ++++++++++++++++++
 drivers/gpu/drm/i915/display/intel_casf.h     |  22 ++
 .../gpu/drm/i915/display/intel_casf_regs.h    |  33 ++
 drivers/gpu/drm/i915/display/intel_crtc.c     |   3 +
 .../drm/i915/display/intel_crtc_state_dump.c  |   5 +
 drivers/gpu/drm/i915/display/intel_display.c  |  37 ++-
 .../drm/i915/display/intel_display_device.h   |   1 +
 .../drm/i915/display/intel_display_types.h    |  15 +
 drivers/gpu/drm/i915/display/skl_scaler.c     |  91 +++++-
 drivers/gpu/drm/i915/display/skl_scaler.h     |   2 +
 drivers/gpu/drm/xe/Makefile                   |   1 +
 include/drm/drm_crtc.h                        |  18 ++
 15 files changed, 548 insertions(+), 13 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/display/intel_casf.c
 create mode 100644 drivers/gpu/drm/i915/display/intel_casf.h
 create mode 100644 drivers/gpu/drm/i915/display/intel_casf_regs.h

-- 
2.45.2


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [RESEND 01/10] drm/drm_crtc: Introduce sharpness strength property
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
@ 2025-10-28 12:07 ` Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 02/10] drm/i915/display: Introduce HAS_CASF for sharpness support Ankit Nautiyal
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel
  Cc: nemesa.garg, Ankit Nautiyal, Adarsh G M, Simona Vetter

From: Nemesa Garg <nemesa.garg@intel.com>

Introduce a new crtc property "SHARPNESS_STRENGTH" that allows
the user to set the intensity so as to get the sharpness effect.
The value of this property can be set from 0-255.
It is useful in scenario when the output is blurry and user
want to sharpen the pixels. User can increase/decrease the
sharpness level depending on the content displayed.

v2: Rename crtc property variable [Arun]
    Add modeset detail in uapi doc[Uma]
v3: Fix build issue
v4: Modify the subject line[Ankit]

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Tested-by: Adarsh G M <Adarsh.g.m@intel.com>
Acked-by: Simona Vetter <simona.vetter@ffwll.ch>
---
 drivers/gpu/drm/drm_atomic_uapi.c |  4 ++++
 drivers/gpu/drm/drm_crtc.c        | 35 +++++++++++++++++++++++++++++++
 include/drm/drm_crtc.h            | 18 ++++++++++++++++
 3 files changed, 57 insertions(+)

diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c
index 85dbdaa4a2e2..b2cb5ae5a139 100644
--- a/drivers/gpu/drm/drm_atomic_uapi.c
+++ b/drivers/gpu/drm/drm_atomic_uapi.c
@@ -419,6 +419,8 @@ static int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
 		set_out_fence_for_crtc(state->state, crtc, fence_ptr);
 	} else if (property == crtc->scaling_filter_property) {
 		state->scaling_filter = val;
+	} else if (property == crtc->sharpness_strength_property) {
+		state->sharpness_strength = val;
 	} else if (crtc->funcs->atomic_set_property) {
 		return crtc->funcs->atomic_set_property(crtc, state, property, val);
 	} else {
@@ -456,6 +458,8 @@ drm_atomic_crtc_get_property(struct drm_crtc *crtc,
 		*val = 0;
 	else if (property == crtc->scaling_filter_property)
 		*val = state->scaling_filter;
+	else if (property == crtc->sharpness_strength_property)
+		*val = state->sharpness_strength;
 	else if (crtc->funcs->atomic_get_property)
 		return crtc->funcs->atomic_get_property(crtc, state, property, val);
 	else {
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c
index 46655339003d..a7797d260f1e 100644
--- a/drivers/gpu/drm/drm_crtc.c
+++ b/drivers/gpu/drm/drm_crtc.c
@@ -229,6 +229,25 @@ struct dma_fence *drm_crtc_create_fence(struct drm_crtc *crtc)
  * 		Driver's default scaling filter
  * 	Nearest Neighbor:
  * 		Nearest Neighbor scaling filter
+ * SHARPNESS_STRENGTH:
+ *	Atomic property for setting the sharpness strength/intensity by userspace.
+ *
+ *	The value of this property is set as an integer value ranging
+ *	from 0 - 255 where:
+ *
+ *	0: Sharpness feature is disabled(default value).
+ *
+ *	1: Minimum sharpness.
+ *
+ *	255: Maximum sharpness.
+ *
+ *	User can gradually increase or decrease the sharpness level and can
+ *	set the optimum value depending on content.
+ *	This value will be passed to kernel through the UAPI.
+ *	The setting of this property does not require modeset.
+ *	The sharpness effect takes place post blending on the final composed output.
+ *	If the feature is disabled, the content remains same without any sharpening effect
+ *	and when this feature is applied, it enhances the clarity of the content.
  */
 
 __printf(6, 0)
@@ -940,6 +959,22 @@ int drm_crtc_create_scaling_filter_property(struct drm_crtc *crtc,
 }
 EXPORT_SYMBOL(drm_crtc_create_scaling_filter_property);
 
+int drm_crtc_create_sharpness_strength_property(struct drm_crtc *crtc)
+{
+	struct drm_device *dev = crtc->dev;
+	struct drm_property *prop =
+		drm_property_create_range(dev, 0, "SHARPNESS_STRENGTH", 0, 255);
+
+	if (!prop)
+		return -ENOMEM;
+
+	crtc->sharpness_strength_property = prop;
+	drm_object_attach_property(&crtc->base, prop, 0);
+
+	return 0;
+}
+EXPORT_SYMBOL(drm_crtc_create_sharpness_strength_property);
+
 /**
  * drm_crtc_in_clone_mode - check if the given CRTC state is in clone mode
  *
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h
index 2d2a0bd526cf..66278ffeebd6 100644
--- a/include/drm/drm_crtc.h
+++ b/include/drm/drm_crtc.h
@@ -317,6 +317,17 @@ struct drm_crtc_state {
 	 */
 	enum drm_scaling_filter scaling_filter;
 
+	/**
+	 * @sharpness_strength:
+	 *
+	 * Used by the user to set the sharpness intensity.
+	 * The value ranges from 0-255.
+	 * Default value is 0 which disable the sharpness feature.
+	 * Any value greater than 0 enables sharpening with the
+	 * specified strength.
+	 */
+	u8 sharpness_strength;
+
 	/**
 	 * @event:
 	 *
@@ -1088,6 +1099,12 @@ struct drm_crtc {
 	 */
 	struct drm_property *scaling_filter_property;
 
+	/**
+	 * @sharpness_strength_property: property to apply
+	 * the intensity of the sharpness requested.
+	 */
+	struct drm_property *sharpness_strength_property;
+
 	/**
 	 * @state:
 	 *
@@ -1324,4 +1341,5 @@ static inline struct drm_crtc *drm_crtc_find(struct drm_device *dev,
 int drm_crtc_create_scaling_filter_property(struct drm_crtc *crtc,
 					    unsigned int supported_filters);
 bool drm_crtc_in_clone_mode(struct drm_crtc_state *crtc_state);
+int drm_crtc_create_sharpness_strength_property(struct drm_crtc *crtc);
 #endif /* __DRM_CRTC_H__ */
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [RESEND 02/10] drm/i915/display: Introduce HAS_CASF for sharpness support
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 01/10] drm/drm_crtc: Introduce sharpness strength property Ankit Nautiyal
@ 2025-10-28 12:07 ` Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 03/10] drm/i915/display: Add CASF strength and winsize Ankit Nautiyal
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: nemesa.garg, Ankit Nautiyal

From: Nemesa Garg <nemesa.garg@intel.com>

Add HAS_CASF macro to check whether platform supports
the content adaptive sharpness capability or not.

v2: Update commit message[Ankit]
v3: Remove \n from middle[Jani]
v4: Remove the logging part

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 8fdb8a0a4282..ece66c8c4ce6 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -148,6 +148,7 @@ struct intel_display_platforms {
 #define HAS_AS_SDP(__display)		(DISPLAY_VER(__display) >= 13)
 #define HAS_AUX_CCS(__display)		(IS_DISPLAY_VER(__display, 9, 12) || (__display)->platform.alderlake_p || (__display)->platform.meteorlake)
 #define HAS_BIGJOINER(__display)	(DISPLAY_VER(__display) >= 11 && HAS_DSC(__display))
+#define HAS_CASF(__display)		(DISPLAY_VER(__display) >= 20)
 #define HAS_CDCLK_CRAWL(__display)	(DISPLAY_INFO(__display)->has_cdclk_crawl)
 #define HAS_CDCLK_SQUASH(__display)	(DISPLAY_INFO(__display)->has_cdclk_squash)
 #define HAS_CMRR(__display)		(DISPLAY_VER(__display) >= 20)
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [RESEND 03/10] drm/i915/display: Add CASF strength and winsize
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 01/10] drm/drm_crtc: Introduce sharpness strength property Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 02/10] drm/i915/display: Introduce HAS_CASF for sharpness support Ankit Nautiyal
@ 2025-10-28 12:07 ` Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 04/10] drm/i915/display: Add filter lut values Ankit Nautiyal
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: nemesa.garg, Ankit Nautiyal

From: Nemesa Garg <nemesa.garg@intel.com>

Add register definitions for sharpness strength and
filter window size used by CASF. Provide functions to
read and write these fields.

The sharpness strength value is determined by user input,
while the winsize is based on the resolution. The casf_enable
flag should be set if the platform supports sharpness adjustments
and the user API strength is not zero. Once sharpness is
enabled, update the strength bit of the register whenever
the user changes the strength value, as the enable bit and
winsize bit remain constant.

Introduce helper to enable, disable and update strength.
Add relavant strength and winsize in both enable and disable.

v2: Introduce get_config for casf[Ankit]
v3: Replace 0 with FILTER_STRENGTH_MASK[Ankit]
v4: After updating strength add win_sz register
v5: Replace u16 with u32 for total_pixel
v6: Add casf logging
v7: Add helper for enable and disable casf

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/Makefile                 |   1 +
 drivers/gpu/drm/i915/display/intel_casf.c     | 131 ++++++++++++++++++
 drivers/gpu/drm/i915/display/intel_casf.h     |  19 +++
 .../gpu/drm/i915/display/intel_casf_regs.h    |  22 +++
 .../drm/i915/display/intel_crtc_state_dump.c  |   5 +
 .../drm/i915/display/intel_display_types.h    |   7 +
 drivers/gpu/drm/i915/display/skl_scaler.c     |   1 +
 drivers/gpu/drm/xe/Makefile                   |   1 +
 8 files changed, 187 insertions(+)
 create mode 100644 drivers/gpu/drm/i915/display/intel_casf.c
 create mode 100644 drivers/gpu/drm/i915/display/intel_casf.h
 create mode 100644 drivers/gpu/drm/i915/display/intel_casf_regs.h

diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 47bac9b2c611..be439fb45cca 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -234,6 +234,7 @@ i915-y += \
 	display/intel_bios.o \
 	display/intel_bo.o \
 	display/intel_bw.o \
+	display/intel_casf.o \
 	display/intel_cdclk.o \
 	display/intel_cmtg.o \
 	display/intel_color.o \
diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
new file mode 100644
index 000000000000..ad2faed5c1b3
--- /dev/null
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -0,0 +1,131 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ *
+ */
+
+#include <drm/drm_print.h>
+
+#include "i915_reg.h"
+#include "intel_casf.h"
+#include "intel_casf_regs.h"
+#include "intel_de.h"
+#include "intel_display_regs.h"
+#include "intel_display_types.h"
+
+#define MAX_PIXELS_FOR_3_TAP_FILTER (1920 * 1080)
+#define MAX_PIXELS_FOR_5_TAP_FILTER (3840 * 2160)
+
+/**
+ * DOC: Content Adaptive Sharpness Filter (CASF)
+ *
+ * Starting from LNL the display engine supports an
+ * adaptive sharpening filter, enhancing the image
+ * quality. The display hardware utilizes the second
+ * pipe scaler for implementing CASF.
+ * If sharpness is being enabled then pipe scaling
+ * cannot be used.
+ * This filter operates on a region of pixels based
+ * on the tap size. Coefficients are used to generate
+ * an alpha value which blends the sharpened image to
+ * original image.
+ */
+
+void intel_casf_update_strength(struct intel_crtc_state *crtc_state)
+{
+	struct intel_display *display = to_intel_display(crtc_state);
+	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+	int win_size;
+
+	intel_de_rmw(display, SHARPNESS_CTL(crtc->pipe), FILTER_STRENGTH_MASK,
+		     FILTER_STRENGTH(crtc_state->hw.casf_params.strength));
+
+	win_size = intel_de_read(display, SKL_PS_WIN_SZ(crtc->pipe, 1));
+
+	intel_de_write_fw(display, SKL_PS_WIN_SZ(crtc->pipe, 1), win_size);
+}
+
+static void intel_casf_compute_win_size(struct intel_crtc_state *crtc_state)
+{
+	const struct drm_display_mode *mode = &crtc_state->hw.adjusted_mode;
+	u32 total_pixels = mode->hdisplay * mode->vdisplay;
+
+	if (total_pixels <= MAX_PIXELS_FOR_3_TAP_FILTER)
+		crtc_state->hw.casf_params.win_size = SHARPNESS_FILTER_SIZE_3X3;
+	else if (total_pixels <= MAX_PIXELS_FOR_5_TAP_FILTER)
+		crtc_state->hw.casf_params.win_size = SHARPNESS_FILTER_SIZE_5X5;
+	else
+		crtc_state->hw.casf_params.win_size = SHARPNESS_FILTER_SIZE_7X7;
+}
+
+int intel_casf_compute_config(struct intel_crtc_state *crtc_state)
+{
+	struct intel_display *display = to_intel_display(crtc_state);
+
+	if (!HAS_CASF(display))
+		return 0;
+
+	if (crtc_state->uapi.sharpness_strength == 0) {
+		crtc_state->hw.casf_params.casf_enable = false;
+		crtc_state->hw.casf_params.strength = 0;
+		return 0;
+	}
+
+	crtc_state->hw.casf_params.casf_enable = true;
+
+	/*
+	 * HW takes a value in form (1.0 + strength) in 4.4 fixed format.
+	 * Strength is from 0.0-14.9375 ie from 0-239.
+	 * User can give value from 0-255 but is clamped to 239.
+	 * Ex. User gives 85 which is 5.3125 and adding 1.0 gives 6.3125.
+	 * 6.3125 in 4.4 format is b01100101 which is equal to 101.
+	 * Also 85 + 16 = 101.
+	 */
+	crtc_state->hw.casf_params.strength =
+		min(crtc_state->uapi.sharpness_strength, 0xEF) + 0x10;
+
+	intel_casf_compute_win_size(crtc_state);
+
+	return 0;
+}
+
+void intel_casf_sharpness_get_config(struct intel_crtc_state *crtc_state)
+{
+	struct intel_display *display = to_intel_display(crtc_state);
+	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+	u32 sharp;
+
+	sharp = intel_de_read(display, SHARPNESS_CTL(crtc->pipe));
+	if (sharp & FILTER_EN) {
+		if (drm_WARN_ON(display->drm,
+				REG_FIELD_GET(FILTER_STRENGTH_MASK, sharp) < 16))
+			crtc_state->hw.casf_params.strength = 0;
+		else
+			crtc_state->hw.casf_params.strength =
+				REG_FIELD_GET(FILTER_STRENGTH_MASK, sharp);
+		crtc_state->hw.casf_params.casf_enable = true;
+		crtc_state->hw.casf_params.win_size =
+			REG_FIELD_GET(FILTER_SIZE_MASK, sharp);
+	}
+}
+
+void intel_casf_enable(struct intel_crtc_state *crtc_state)
+{
+	struct intel_display *display = to_intel_display(crtc_state);
+	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+	u32 sharpness_ctl;
+
+	sharpness_ctl = FILTER_EN | FILTER_STRENGTH(crtc_state->hw.casf_params.strength);
+
+	sharpness_ctl |= crtc_state->hw.casf_params.win_size;
+
+	intel_de_write(display, SHARPNESS_CTL(crtc->pipe), sharpness_ctl);
+}
+
+void intel_casf_disable(const struct intel_crtc_state *crtc_state)
+{
+	struct intel_display *display = to_intel_display(crtc_state);
+	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+
+	intel_de_write(display, SHARPNESS_CTL(crtc->pipe), 0);
+}
diff --git a/drivers/gpu/drm/i915/display/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
new file mode 100644
index 000000000000..753871880279
--- /dev/null
+++ b/drivers/gpu/drm/i915/display/intel_casf.h
@@ -0,0 +1,19 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef __INTEL_CASF_H__
+#define __INTEL_CASF_H__
+
+#include <linux/types.h>
+
+struct intel_crtc_state;
+
+int intel_casf_compute_config(struct intel_crtc_state *crtc_state);
+void intel_casf_update_strength(struct intel_crtc_state *new_crtc_state);
+void intel_casf_sharpness_get_config(struct intel_crtc_state *crtc_state);
+void intel_casf_enable(struct intel_crtc_state *crtc_state);
+void intel_casf_disable(const struct intel_crtc_state *crtc_state);
+
+#endif /* __INTEL_CASF_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_casf_regs.h b/drivers/gpu/drm/i915/display/intel_casf_regs.h
new file mode 100644
index 000000000000..bd763efe5c1b
--- /dev/null
+++ b/drivers/gpu/drm/i915/display/intel_casf_regs.h
@@ -0,0 +1,22 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef __INTEL_CASF_REGS_H__
+#define __INTEL_CASF_REGS_H__
+
+#include "intel_display_reg_defs.h"
+
+#define _SHARPNESS_CTL_A		0x682B0
+#define _SHARPNESS_CTL_B		0x68AB0
+#define SHARPNESS_CTL(pipe)		_MMIO_PIPE(pipe, _SHARPNESS_CTL_A, _SHARPNESS_CTL_B)
+#define   FILTER_EN			REG_BIT(31)
+#define   FILTER_STRENGTH_MASK		REG_GENMASK(15, 8)
+#define   FILTER_STRENGTH(x)		REG_FIELD_PREP(FILTER_STRENGTH_MASK, (x))
+#define   FILTER_SIZE_MASK		REG_GENMASK(1, 0)
+#define   SHARPNESS_FILTER_SIZE_3X3	REG_FIELD_PREP(FILTER_SIZE_MASK, 0)
+#define   SHARPNESS_FILTER_SIZE_5X5	REG_FIELD_PREP(FILTER_SIZE_MASK, 1)
+#define   SHARPNESS_FILTER_SIZE_7X7	REG_FIELD_PREP(FILTER_SIZE_MASK, 2)
+
+#endif /* __INTEL_CASF_REGS__ */
diff --git a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
index e6f300dbb5ee..c2a6217c2262 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
@@ -372,6 +372,11 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
 
 	intel_vdsc_state_dump(&p, 0, pipe_config);
 
+	drm_printf(&p, "sharpness strength: %d, sharpness tap size: %d, sharpness enable: %d\n",
+		   pipe_config->hw.casf_params.strength,
+		   pipe_config->hw.casf_params.win_size,
+		   pipe_config->hw.casf_params.casf_enable);
+
 dump_planes:
 	if (!state)
 		return;
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 5ae66b7444b6..2afb346249ef 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -961,6 +961,12 @@ enum intel_panel_replay_dsc_support {
 	INTEL_DP_PANEL_REPLAY_DSC_SELECTIVE_UPDATE,
 };
 
+struct intel_casf {
+	u8 strength;
+	u8 win_size;
+	bool casf_enable;
+};
+
 struct intel_crtc_state {
 	/*
 	 * uapi (drm) state. This is the software state shown to userspace.
@@ -997,6 +1003,7 @@ struct intel_crtc_state {
 		struct drm_property_blob *degamma_lut, *gamma_lut, *ctm;
 		struct drm_display_mode mode, pipe_mode, adjusted_mode;
 		enum drm_scaling_filter scaling_filter;
+		struct intel_casf casf_params;
 	} hw;
 
 	/* actual state of LUTs */
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
index d29efcbf2319..dbe1c4a63ec7 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.c
+++ b/drivers/gpu/drm/i915/display/skl_scaler.c
@@ -6,6 +6,7 @@
 #include <drm/drm_print.h>
 
 #include "i915_utils.h"
+#include "intel_casf_regs.h"
 #include "intel_de.h"
 #include "intel_display_regs.h"
 #include "intel_display_trace.h"
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index 82c6b3d29676..bfc72f3dd61b 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -235,6 +235,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
 	i915-display/intel_backlight.o \
 	i915-display/intel_bios.o \
 	i915-display/intel_bw.o \
+	i915-display/intel_casf.o \
 	i915-display/intel_cdclk.o \
 	i915-display/intel_cmtg.o \
 	i915-display/intel_color.o \
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [RESEND 04/10] drm/i915/display: Add filter lut values
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (2 preceding siblings ...)
  2025-10-28 12:07 ` [RESEND 03/10] drm/i915/display: Add CASF strength and winsize Ankit Nautiyal
@ 2025-10-28 12:07 ` Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 05/10] drm/i915/display: Compute the scaler coefficients Ankit Nautiyal
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: nemesa.garg, Ankit Nautiyal

From: Nemesa Garg <nemesa.garg@intel.com>

Add the register bits related to filter lut values
and helper to load the casf filter lut.

These values are golden values and these value has
to be loaded one time while enabling the casf.

v2: update commit message[Ankit]
v3: Add intel_casf prefix to filter_load fn[Jani]
v4: Define the filter macros here

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_casf.c     | 49 +++++++++++++++++++
 drivers/gpu/drm/i915/display/intel_casf.h     |  1 +
 .../gpu/drm/i915/display/intel_casf_regs.h    | 11 +++++
 3 files changed, 61 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
index ad2faed5c1b3..313ed6b10317 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -16,6 +16,13 @@
 #define MAX_PIXELS_FOR_3_TAP_FILTER (1920 * 1080)
 #define MAX_PIXELS_FOR_5_TAP_FILTER (3840 * 2160)
 
+#define FILTER_COEFF_0_125 125
+#define FILTER_COEFF_0_25 250
+#define FILTER_COEFF_0_5 500
+#define FILTER_COEFF_1_0 1000
+#define FILTER_COEFF_0_0 0
+#define SET_POSITIVE_SIGN(x) ((x) & (~SIGN))
+
 /**
  * DOC: Content Adaptive Sharpness Filter (CASF)
  *
@@ -31,6 +38,46 @@
  * original image.
  */
 
+/* Default LUT values to be loaded one time. */
+static const u16 sharpness_lut[] = {
+	4095, 2047, 1364, 1022, 816, 678, 579,
+	504, 444, 397, 357, 323, 293, 268, 244, 224,
+	204, 187, 170, 154, 139, 125, 111, 98, 85,
+	73, 60, 48, 36, 24, 12, 0
+};
+
+const u16 filtercoeff_1[] = {
+	FILTER_COEFF_0_0, FILTER_COEFF_0_0, FILTER_COEFF_0_5,
+	FILTER_COEFF_1_0, FILTER_COEFF_0_5, FILTER_COEFF_0_0,
+	FILTER_COEFF_0_0,
+};
+
+const u16 filtercoeff_2[] = {
+	FILTER_COEFF_0_0, FILTER_COEFF_0_25, FILTER_COEFF_0_5,
+	FILTER_COEFF_1_0, FILTER_COEFF_0_5, FILTER_COEFF_0_25,
+	FILTER_COEFF_0_0,
+};
+
+const u16 filtercoeff_3[] = {
+	FILTER_COEFF_0_125, FILTER_COEFF_0_25, FILTER_COEFF_0_5,
+	FILTER_COEFF_1_0, FILTER_COEFF_0_5, FILTER_COEFF_0_25,
+	FILTER_COEFF_0_125,
+};
+
+static void intel_casf_filter_lut_load(struct intel_crtc *crtc,
+				       const struct intel_crtc_state *crtc_state)
+{
+	struct intel_display *display = to_intel_display(crtc_state);
+	int i;
+
+	intel_de_write(display, SHRPLUT_INDEX(crtc->pipe),
+		       INDEX_AUTO_INCR | INDEX_VALUE(0));
+
+	for (i = 0; i < ARRAY_SIZE(sharpness_lut); i++)
+		intel_de_write(display, SHRPLUT_DATA(crtc->pipe),
+			       sharpness_lut[i]);
+}
+
 void intel_casf_update_strength(struct intel_crtc_state *crtc_state)
 {
 	struct intel_display *display = to_intel_display(crtc_state);
@@ -115,6 +162,8 @@ void intel_casf_enable(struct intel_crtc_state *crtc_state)
 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
 	u32 sharpness_ctl;
 
+	intel_casf_filter_lut_load(crtc, crtc_state);
+
 	sharpness_ctl = FILTER_EN | FILTER_STRENGTH(crtc_state->hw.casf_params.strength);
 
 	sharpness_ctl |= crtc_state->hw.casf_params.win_size;
diff --git a/drivers/gpu/drm/i915/display/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
index 753871880279..e8432b4bc52b 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.h
+++ b/drivers/gpu/drm/i915/display/intel_casf.h
@@ -9,6 +9,7 @@
 #include <linux/types.h>
 
 struct intel_crtc_state;
+struct intel_crtc;
 
 int intel_casf_compute_config(struct intel_crtc_state *crtc_state);
 void intel_casf_update_strength(struct intel_crtc_state *new_crtc_state);
diff --git a/drivers/gpu/drm/i915/display/intel_casf_regs.h b/drivers/gpu/drm/i915/display/intel_casf_regs.h
index bd763efe5c1b..87803cca510f 100644
--- a/drivers/gpu/drm/i915/display/intel_casf_regs.h
+++ b/drivers/gpu/drm/i915/display/intel_casf_regs.h
@@ -19,4 +19,15 @@
 #define   SHARPNESS_FILTER_SIZE_5X5	REG_FIELD_PREP(FILTER_SIZE_MASK, 1)
 #define   SHARPNESS_FILTER_SIZE_7X7	REG_FIELD_PREP(FILTER_SIZE_MASK, 2)
 
+#define _SHRPLUT_DATA_A			0x682B8
+#define _SHRPLUT_DATA_B			0x68AB8
+#define SHRPLUT_DATA(pipe)		_MMIO_PIPE(pipe, _SHRPLUT_DATA_A, _SHRPLUT_DATA_B)
+
+#define _SHRPLUT_INDEX_A		0x682B4
+#define _SHRPLUT_INDEX_B		0x68AB4
+#define SHRPLUT_INDEX(pipe)		_MMIO_PIPE(pipe, _SHRPLUT_INDEX_A, _SHRPLUT_INDEX_B)
+#define   INDEX_AUTO_INCR		REG_BIT(10)
+#define   INDEX_VALUE_MASK		REG_GENMASK(4, 0)
+#define   INDEX_VALUE(x)		REG_FIELD_PREP(INDEX_VALUE_MASK, (x))
+
 #endif /* __INTEL_CASF_REGS__ */
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [RESEND 05/10] drm/i915/display: Compute the scaler coefficients
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (3 preceding siblings ...)
  2025-10-28 12:07 ` [RESEND 04/10] drm/i915/display: Add filter lut values Ankit Nautiyal
@ 2025-10-28 12:07 ` Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 06/10] drm/i915/display: Add and compute scaler parameter Ankit Nautiyal
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: nemesa.garg, Ankit Nautiyal

From: Nemesa Garg <nemesa.garg@intel.com>

The sharpness property requires the use of one of the scaler
so need to set the sharpness scaler coefficient values.
These values are based on experiments and vary for different
tap value/win size. These values are normalized by taking the
sum of all values and then dividing each value with a sum.

Add helper to compute and set the scaler coefficients.

v2: Fix ifndef header naming issue reported by kernel test robot
v3: Rename file name[Arun]
    Replace array size number with macro[Arun]
v4: Correct the register format[Jani]
    Add brief comment and expalin about file[Jani]
    Remove coefficient value from crtc_state[Jani]
v5: Fix build issue
v6: Add new function for writing coefficients[Ankit]
v7: Add cooments and add a scaler id check [Ankit]
v8: Remove casf_enable from here[Ankit]
v9: Removed REG and use shift operator[Jani]
v10: Remove filter macros
v11: Add casf_write_coeff function to casf_enable

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_casf.c     | 99 +++++++++++++++++++
 drivers/gpu/drm/i915/display/intel_casf.h     |  1 +
 .../drm/i915/display/intel_display_types.h    |  8 ++
 3 files changed, 108 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
index 313ed6b10317..91f2362405b9 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -133,6 +133,8 @@ int intel_casf_compute_config(struct intel_crtc_state *crtc_state)
 
 	intel_casf_compute_win_size(crtc_state);
 
+	intel_casf_scaler_compute_config(crtc_state);
+
 	return 0;
 }
 
@@ -156,6 +158,101 @@ void intel_casf_sharpness_get_config(struct intel_crtc_state *crtc_state)
 	}
 }
 
+static int casf_coeff_tap(int i)
+{
+	return i % SCALER_FILTER_NUM_TAPS;
+}
+
+static u32 casf_coeff(struct intel_crtc_state *crtc_state, int t)
+{
+	struct scaler_filter_coeff value;
+	u32 coeff;
+
+	value = crtc_state->hw.casf_params.coeff[t];
+	value.sign = 0;
+
+	coeff = value.sign << 15 | value.exp << 12 | value.mantissa << 3;
+	return coeff;
+}
+
+/*
+ * 17 phase of 7 taps requires 119 coefficients in 60 dwords per set.
+ * To enable casf:  program scaler coefficients with the coeffients
+ * that are calculated and stored in hw.casf_params.coeff as per
+ * SCALER_COEFFICIENT_FORMAT
+ */
+static void intel_casf_write_coeff(struct intel_crtc_state *crtc_state)
+{
+	struct intel_display *display = to_intel_display(crtc_state);
+	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+	int id = crtc_state->scaler_state.scaler_id;
+	int i;
+
+	if (id != 1) {
+		drm_WARN(display->drm, 0, "Second scaler not enabled\n");
+		return;
+	}
+
+	intel_de_write_fw(display, GLK_PS_COEF_INDEX_SET(crtc->pipe, id, 0),
+			  PS_COEF_INDEX_AUTO_INC);
+
+	for (i = 0; i < 17 * SCALER_FILTER_NUM_TAPS; i += 2) {
+		u32 tmp;
+		int t;
+
+		t = casf_coeff_tap(i);
+		tmp = casf_coeff(crtc_state, t);
+
+		t = casf_coeff_tap(i + 1);
+		tmp |= casf_coeff(crtc_state, t) << 16;
+
+		intel_de_write_fw(display, GLK_PS_COEF_DATA_SET(crtc->pipe, id, 0),
+				  tmp);
+	}
+}
+
+static void convert_sharpness_coef_binary(struct scaler_filter_coeff *coeff,
+					  u16 coefficient)
+{
+	if (coefficient < 25) {
+		coeff->mantissa = (coefficient * 2048) / 100;
+		coeff->exp = 3;
+	} else if (coefficient < 50) {
+		coeff->mantissa = (coefficient * 1024) / 100;
+		coeff->exp = 2;
+	} else if (coefficient < 100) {
+		coeff->mantissa = (coefficient * 512) / 100;
+		coeff->exp = 1;
+	} else {
+		coeff->mantissa = (coefficient * 256) / 100;
+		coeff->exp = 0;
+	}
+}
+
+void intel_casf_scaler_compute_config(struct intel_crtc_state *crtc_state)
+{
+	const u16 *filtercoeff;
+	u16 filter_coeff[SCALER_FILTER_NUM_TAPS];
+	u16 sumcoeff = 0;
+	int i;
+
+	if (crtc_state->hw.casf_params.win_size == 0)
+		filtercoeff = filtercoeff_1;
+	else if (crtc_state->hw.casf_params.win_size == 1)
+		filtercoeff = filtercoeff_2;
+	else
+		filtercoeff = filtercoeff_3;
+
+	for (i = 0; i < SCALER_FILTER_NUM_TAPS; i++)
+		sumcoeff += *(filtercoeff + i);
+
+	for (i = 0; i < SCALER_FILTER_NUM_TAPS; i++) {
+		filter_coeff[i] = (*(filtercoeff + i) * 100 / sumcoeff);
+		convert_sharpness_coef_binary(&crtc_state->hw.casf_params.coeff[i],
+					      filter_coeff[i]);
+	}
+}
+
 void intel_casf_enable(struct intel_crtc_state *crtc_state)
 {
 	struct intel_display *display = to_intel_display(crtc_state);
@@ -164,6 +261,8 @@ void intel_casf_enable(struct intel_crtc_state *crtc_state)
 
 	intel_casf_filter_lut_load(crtc, crtc_state);
 
+	intel_casf_write_coeff(crtc_state);
+
 	sharpness_ctl = FILTER_EN | FILTER_STRENGTH(crtc_state->hw.casf_params.strength);
 
 	sharpness_ctl |= crtc_state->hw.casf_params.win_size;
diff --git a/drivers/gpu/drm/i915/display/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
index e8432b4bc52b..13e5003a23fc 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.h
+++ b/drivers/gpu/drm/i915/display/intel_casf.h
@@ -16,5 +16,6 @@ void intel_casf_update_strength(struct intel_crtc_state *new_crtc_state);
 void intel_casf_sharpness_get_config(struct intel_crtc_state *crtc_state);
 void intel_casf_enable(struct intel_crtc_state *crtc_state);
 void intel_casf_disable(const struct intel_crtc_state *crtc_state);
+void intel_casf_scaler_compute_config(struct intel_crtc_state *crtc_state);
 
 #endif /* __INTEL_CASF_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 2afb346249ef..00600134bda0 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -961,7 +961,15 @@ enum intel_panel_replay_dsc_support {
 	INTEL_DP_PANEL_REPLAY_DSC_SELECTIVE_UPDATE,
 };
 
+struct scaler_filter_coeff {
+	u16 sign;
+	u16 exp;
+	u16 mantissa;
+};
+
 struct intel_casf {
+	#define SCALER_FILTER_NUM_TAPS 7
+	struct scaler_filter_coeff coeff[SCALER_FILTER_NUM_TAPS];
 	u8 strength;
 	u8 win_size;
 	bool casf_enable;
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [RESEND 06/10] drm/i915/display: Add and compute scaler parameter
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (4 preceding siblings ...)
  2025-10-28 12:07 ` [RESEND 05/10] drm/i915/display: Compute the scaler coefficients Ankit Nautiyal
@ 2025-10-28 12:07 ` Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 07/10] drm/i915/display: Configure the second scaler Ankit Nautiyal
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: nemesa.garg, Ankit Nautiyal

From: Nemesa Garg <nemesa.garg@intel.com>

Compute the values for second scaler for sharpness.
Fill the register bits corresponding to the scaler.

v1: Rename the title of patch [Ankit]
v2: Remove setup_casf from here[Ankit]
v3: Add skl_scaler_setup_casf in casf_enable

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_casf.c |  6 +++
 drivers/gpu/drm/i915/display/skl_scaler.c | 46 +++++++++++++++++++++++
 drivers/gpu/drm/i915/display/skl_scaler.h |  2 +
 3 files changed, 54 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
index 91f2362405b9..8c84a1759919 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -12,6 +12,7 @@
 #include "intel_de.h"
 #include "intel_display_regs.h"
 #include "intel_display_types.h"
+#include "skl_scaler.h"
 
 #define MAX_PIXELS_FOR_3_TAP_FILTER (1920 * 1080)
 #define MAX_PIXELS_FOR_5_TAP_FILTER (3840 * 2160)
@@ -268,6 +269,8 @@ void intel_casf_enable(struct intel_crtc_state *crtc_state)
 	sharpness_ctl |= crtc_state->hw.casf_params.win_size;
 
 	intel_de_write(display, SHARPNESS_CTL(crtc->pipe), sharpness_ctl);
+
+	skl_scaler_setup_casf(crtc_state);
 }
 
 void intel_casf_disable(const struct intel_crtc_state *crtc_state)
@@ -275,5 +278,8 @@ void intel_casf_disable(const struct intel_crtc_state *crtc_state)
 	struct intel_display *display = to_intel_display(crtc_state);
 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
 
+	intel_de_write(display, SKL_PS_CTRL(crtc->pipe, 1), 0);
+	intel_de_write(display, SKL_PS_WIN_POS(crtc->pipe, 1), 0);
 	intel_de_write(display, SHARPNESS_CTL(crtc->pipe), 0);
+	intel_de_write(display, SKL_PS_WIN_SZ(crtc->pipe, 1), 0);
 }
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
index dbe1c4a63ec7..dbb810c0474c 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.c
+++ b/drivers/gpu/drm/i915/display/skl_scaler.c
@@ -739,6 +739,52 @@ static void skl_scaler_setup_filter(struct intel_display *display,
 	}
 }
 
+#define CASF_SCALER_FILTER_SELECT \
+	(PS_FILTER_PROGRAMMED | \
+	PS_Y_VERT_FILTER_SELECT(0) | \
+	PS_Y_HORZ_FILTER_SELECT(0) | \
+	PS_UV_VERT_FILTER_SELECT(0) | \
+	PS_UV_HORZ_FILTER_SELECT(0))
+
+void skl_scaler_setup_casf(struct intel_crtc_state *crtc_state)
+{
+	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+	struct intel_display *display = to_intel_display(crtc);
+	struct drm_display_mode *adjusted_mode =
+	&crtc_state->hw.adjusted_mode;
+	struct intel_crtc_scaler_state *scaler_state =
+		&crtc_state->scaler_state;
+	struct drm_rect src, dest;
+	int id, width, height;
+	int x = 0, y = 0;
+	enum pipe pipe = crtc->pipe;
+	u32 ps_ctrl;
+
+	width = adjusted_mode->crtc_hdisplay;
+	height = adjusted_mode->crtc_vdisplay;
+
+	drm_rect_init(&dest, x, y, width, height);
+
+	width = drm_rect_width(&dest);
+	height = drm_rect_height(&dest);
+	id = scaler_state->scaler_id;
+
+	drm_rect_init(&src, 0, 0,
+		      drm_rect_width(&crtc_state->pipe_src) << 16,
+		      drm_rect_height(&crtc_state->pipe_src) << 16);
+
+	trace_intel_pipe_scaler_update_arm(crtc, id, x, y, width, height);
+
+	ps_ctrl = PS_SCALER_EN | PS_BINDING_PIPE | scaler_state->scalers[id].mode |
+		  CASF_SCALER_FILTER_SELECT;
+
+	intel_de_write_fw(display, SKL_PS_CTRL(pipe, id), ps_ctrl);
+	intel_de_write_fw(display, SKL_PS_WIN_POS(pipe, id),
+			  PS_WIN_XPOS(x) | PS_WIN_YPOS(y));
+	intel_de_write_fw(display, SKL_PS_WIN_SZ(pipe, id),
+			  PS_WIN_XSIZE(width) | PS_WIN_YSIZE(height));
+}
+
 void skl_pfit_enable(const struct intel_crtc_state *crtc_state)
 {
 	struct intel_display *display = to_intel_display(crtc_state);
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.h b/drivers/gpu/drm/i915/display/skl_scaler.h
index 5deabca909e6..7e8d819c019d 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.h
+++ b/drivers/gpu/drm/i915/display/skl_scaler.h
@@ -36,6 +36,8 @@ void skl_scaler_disable(const struct intel_crtc_state *old_crtc_state);
 
 void skl_scaler_get_config(struct intel_crtc_state *crtc_state);
 
+void skl_scaler_setup_casf(struct intel_crtc_state *crtc_state);
+
 enum drm_mode_status
 skl_scaler_mode_valid(struct intel_display *display,
 		      const struct drm_display_mode *mode,
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [RESEND 07/10] drm/i915/display: Configure the second scaler
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (5 preceding siblings ...)
  2025-10-28 12:07 ` [RESEND 06/10] drm/i915/display: Add and compute scaler parameter Ankit Nautiyal
@ 2025-10-28 12:07 ` Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 08/10] drm/i915/display: Set and get the casf config Ankit Nautiyal
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: nemesa.garg, Ankit Nautiyal

From: Nemesa Garg <nemesa.garg@intel.com>

Both sharpness and panel fitter use pipe scaler,
but only one can be enabled at a time. Furthermore
sharpness uses second scaler. So for CASF, check if
second scaler is available and make sure that only
either of panel fitter or sharpness is enabled at
a time.

v2: Add the panel fitting check before enabling sharpness
v3: Reframe commit message[Arun]
v4: Replace string based comparison with plane_state[Jani]
v5: Rebase
v6: Fix build issue
v7: Remove scaler id from verify_crtc_state[Ankit]
v8: Change the patch title. Add code comment.
    Move the config part in patch#6. [Ankit]
v9: Refactor the patch[Ankit]
v10: Modify the header of patch[Ankit]

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_casf.c    |  8 +++++++
 drivers/gpu/drm/i915/display/intel_casf.h    |  1 +
 drivers/gpu/drm/i915/display/intel_display.c |  4 +++-
 drivers/gpu/drm/i915/display/skl_scaler.c    | 25 +++++++++++++++-----
 4 files changed, 31 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
index 8c84a1759919..026e5fadd63c 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -159,6 +159,14 @@ void intel_casf_sharpness_get_config(struct intel_crtc_state *crtc_state)
 	}
 }
 
+bool intel_casf_needs_scaler(const struct intel_crtc_state *crtc_state)
+{
+	if (crtc_state->hw.casf_params.casf_enable)
+		return true;
+
+	return false;
+}
+
 static int casf_coeff_tap(int i)
 {
 	return i % SCALER_FILTER_NUM_TAPS;
diff --git a/drivers/gpu/drm/i915/display/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
index 13e5003a23fc..595c2b35e08d 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.h
+++ b/drivers/gpu/drm/i915/display/intel_casf.h
@@ -17,5 +17,6 @@ void intel_casf_sharpness_get_config(struct intel_crtc_state *crtc_state);
 void intel_casf_enable(struct intel_crtc_state *crtc_state);
 void intel_casf_disable(const struct intel_crtc_state *crtc_state);
 void intel_casf_scaler_compute_config(struct intel_crtc_state *crtc_state);
+bool intel_casf_needs_scaler(const struct intel_crtc_state *crtc_state);
 
 #endif /* __INTEL_CASF_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 2744f83bda2e..0435b5da674a 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -60,6 +60,7 @@
 #include "intel_audio.h"
 #include "intel_bo.h"
 #include "intel_bw.h"
+#include "intel_casf.h"
 #include "intel_cdclk.h"
 #include "intel_clock_gating.h"
 #include "intel_color.h"
@@ -4229,7 +4230,8 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state,
 
 	if (DISPLAY_VER(display) >= 9) {
 		if (intel_crtc_needs_modeset(crtc_state) ||
-		    intel_crtc_needs_fastset(crtc_state)) {
+		    intel_crtc_needs_fastset(crtc_state) ||
+		    intel_casf_needs_scaler(crtc_state)) {
 			ret = skl_update_scaler_crtc(crtc_state);
 			if (ret)
 				return ret;
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
index dbb810c0474c..9439b1a65fa6 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.c
+++ b/drivers/gpu/drm/i915/display/skl_scaler.c
@@ -6,6 +6,7 @@
 #include <drm/drm_print.h>
 
 #include "i915_utils.h"
+#include "intel_casf.h"
 #include "intel_casf_regs.h"
 #include "intel_de.h"
 #include "intel_display_regs.h"
@@ -283,7 +284,8 @@ int skl_update_scaler_crtc(struct intel_crtc_state *crtc_state)
 				 drm_rect_width(&crtc_state->pipe_src),
 				 drm_rect_height(&crtc_state->pipe_src),
 				 width, height, NULL, 0,
-				 crtc_state->pch_pfit.enabled);
+				 crtc_state->pch_pfit.enabled ||
+				 intel_casf_needs_scaler(crtc_state));
 }
 
 /**
@@ -322,7 +324,9 @@ int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
 }
 
 static int intel_allocate_scaler(struct intel_crtc_scaler_state *scaler_state,
-				 struct intel_crtc *crtc)
+				 struct intel_crtc *crtc,
+				 struct intel_plane_state *plane_state,
+				 bool casf_scaler)
 {
 	int i;
 
@@ -330,6 +334,10 @@ static int intel_allocate_scaler(struct intel_crtc_scaler_state *scaler_state,
 		if (scaler_state->scalers[i].in_use)
 			continue;
 
+		/* CASF needs second scaler */
+		if (!plane_state && casf_scaler && i != 1)
+			continue;
+
 		scaler_state->scalers[i].in_use = true;
 
 		return i;
@@ -380,7 +388,7 @@ static int intel_atomic_setup_scaler(struct intel_crtc_state *crtc_state,
 				     int num_scalers_need, struct intel_crtc *crtc,
 				     const char *name, int idx,
 				     struct intel_plane_state *plane_state,
-				     int *scaler_id)
+				     int *scaler_id, bool casf_scaler)
 {
 	struct intel_display *display = to_intel_display(crtc);
 	struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
@@ -389,7 +397,7 @@ static int intel_atomic_setup_scaler(struct intel_crtc_state *crtc_state,
 	int vscale = 0;
 
 	if (*scaler_id < 0)
-		*scaler_id = intel_allocate_scaler(scaler_state, crtc);
+		*scaler_id = intel_allocate_scaler(scaler_state, crtc, plane_state, casf_scaler);
 
 	if (drm_WARN(display->drm, *scaler_id < 0,
 		     "Cannot find scaler for %s:%d\n", name, idx))
@@ -521,10 +529,14 @@ static int setup_crtc_scaler(struct intel_atomic_state *state,
 	struct intel_crtc_scaler_state *scaler_state =
 		&crtc_state->scaler_state;
 
+	if (intel_casf_needs_scaler(crtc_state) && crtc_state->pch_pfit.enabled)
+		return -EINVAL;
+
 	return intel_atomic_setup_scaler(crtc_state,
 					 hweight32(scaler_state->scaler_users),
 					 crtc, "CRTC", crtc->base.base.id,
-					 NULL, &scaler_state->scaler_id);
+					 NULL, &scaler_state->scaler_id,
+					 intel_casf_needs_scaler(crtc_state));
 }
 
 static int setup_plane_scaler(struct intel_atomic_state *state,
@@ -559,7 +571,8 @@ static int setup_plane_scaler(struct intel_atomic_state *state,
 	return intel_atomic_setup_scaler(crtc_state,
 					 hweight32(scaler_state->scaler_users),
 					 crtc, "PLANE", plane->base.base.id,
-					 plane_state, &plane_state->scaler_id);
+					 plane_state, &plane_state->scaler_id,
+					 false);
 }
 
 /**
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [RESEND 08/10] drm/i915/display: Set and get the casf config
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (6 preceding siblings ...)
  2025-10-28 12:07 ` [RESEND 07/10] drm/i915/display: Configure the second scaler Ankit Nautiyal
@ 2025-10-28 12:07 ` Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 09/10] drm/i915/display: Enable/disable casf Ankit Nautiyal
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: nemesa.garg, Ankit Nautiyal

From: Nemesa Garg <nemesa.garg@intel.com>

Set the configuration for CASF and capture it
in crtc_state and get the configuration by
reading back. Add the support to compare the
software and hardware state of CASF.

v2: Update subject[Ankit]
v3: Add the state compare[Ankit]

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_display.c |  7 +++++++
 drivers/gpu/drm/i915/display/skl_scaler.c    | 19 +++++++++++++------
 2 files changed, 20 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 0435b5da674a..c82439150eb9 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -4228,6 +4228,10 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state,
 		return ret;
 	}
 
+	ret = intel_casf_compute_config(crtc_state);
+	if (ret)
+		return ret;
+
 	if (DISPLAY_VER(display) >= 9) {
 		if (intel_crtc_needs_modeset(crtc_state) ||
 		    intel_crtc_needs_fastset(crtc_state) ||
@@ -5294,6 +5298,9 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
 
 		PIPE_CONF_CHECK_I(scaler_state.scaler_id);
 		PIPE_CONF_CHECK_I(pixel_rate);
+		PIPE_CONF_CHECK_BOOL(hw.casf_params.casf_enable);
+		PIPE_CONF_CHECK_I(hw.casf_params.win_size);
+		PIPE_CONF_CHECK_I(hw.casf_params.strength);
 
 		PIPE_CONF_CHECK_X(gamma_mode);
 		if (display->platform.cherryview)
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
index 9439b1a65fa6..92b920899dce 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.c
+++ b/drivers/gpu/drm/i915/display/skl_scaler.c
@@ -981,16 +981,23 @@ void skl_scaler_get_config(struct intel_crtc_state *crtc_state)
 			continue;
 
 		id = i;
-		crtc_state->pch_pfit.enabled = true;
+
+		/* Read CASF regs for second scaler */
+		if (HAS_CASF(display) && id == 1)
+			intel_casf_sharpness_get_config(crtc_state);
+
+		if (!crtc_state->hw.casf_params.casf_enable)
+			crtc_state->pch_pfit.enabled = true;
 
 		pos = intel_de_read(display, SKL_PS_WIN_POS(crtc->pipe, i));
 		size = intel_de_read(display, SKL_PS_WIN_SZ(crtc->pipe, i));
 
-		drm_rect_init(&crtc_state->pch_pfit.dst,
-			      REG_FIELD_GET(PS_WIN_XPOS_MASK, pos),
-			      REG_FIELD_GET(PS_WIN_YPOS_MASK, pos),
-			      REG_FIELD_GET(PS_WIN_XSIZE_MASK, size),
-			      REG_FIELD_GET(PS_WIN_YSIZE_MASK, size));
+		if (!crtc_state->hw.casf_params.casf_enable)
+			drm_rect_init(&crtc_state->pch_pfit.dst,
+				      REG_FIELD_GET(PS_WIN_XPOS_MASK, pos),
+				      REG_FIELD_GET(PS_WIN_YPOS_MASK, pos),
+				      REG_FIELD_GET(PS_WIN_XSIZE_MASK, size),
+				      REG_FIELD_GET(PS_WIN_YSIZE_MASK, size));
 
 		scaler_state->scalers[i].in_use = true;
 		break;
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [RESEND 09/10] drm/i915/display: Enable/disable casf
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (7 preceding siblings ...)
  2025-10-28 12:07 ` [RESEND 08/10] drm/i915/display: Set and get the casf config Ankit Nautiyal
@ 2025-10-28 12:07 ` Ankit Nautiyal
  2025-10-28 12:07 ` [RESEND 10/10] drm/i915/display: Expose sharpness strength property Ankit Nautiyal
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: nemesa.garg, Ankit Nautiyal

From: Nemesa Garg <nemesa.garg@intel.com>

Call intel_casf_enable and intel_casf_disable
in atomic commit path to enable and disable casf.
Call intel_casf_update_strength to only update
the desired strength value.

v2: Introduce casf_enable here.[Ankit]
v3: Use is_disabling in casf_disabling.[Ankit]
v4: Swap old_state and new_state param.[Ankit]
v5: In disable fn move win_sz after sharpness_ctl.
v6: Rebase and update commit message.

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_display.c | 26 ++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index c82439150eb9..94fff7c5f8dc 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -980,6 +980,24 @@ static bool audio_disabling(const struct intel_crtc_state *old_crtc_state,
 		 memcmp(old_crtc_state->eld, new_crtc_state->eld, MAX_ELD_BYTES) != 0);
 }
 
+static bool intel_casf_enabling(const struct intel_crtc_state *new_crtc_state,
+				const struct intel_crtc_state *old_crtc_state)
+{
+	if (!new_crtc_state->hw.active)
+		return false;
+
+	return is_enabling(hw.casf_params.casf_enable, old_crtc_state, new_crtc_state);
+}
+
+static bool intel_casf_disabling(const struct intel_crtc_state *old_crtc_state,
+				 const struct intel_crtc_state *new_crtc_state)
+{
+	if (!new_crtc_state->hw.active)
+		return false;
+
+	return is_disabling(hw.casf_params.casf_enable, old_crtc_state, new_crtc_state);
+}
+
 #undef is_disabling
 #undef is_enabling
 
@@ -1135,6 +1153,9 @@ static void intel_pre_plane_update(struct intel_atomic_state *state,
 	if (audio_disabling(old_crtc_state, new_crtc_state))
 		intel_encoders_audio_disable(state, crtc);
 
+	if (intel_casf_disabling(old_crtc_state, new_crtc_state))
+		intel_casf_disable(new_crtc_state);
+
 	intel_drrs_deactivate(old_crtc_state);
 
 	if (hsw_ips_pre_update(state, crtc))
@@ -6735,6 +6756,11 @@ static void intel_pre_update_crtc(struct intel_atomic_state *state,
 			intel_vrr_set_transcoder_timings(new_crtc_state);
 	}
 
+	if (intel_casf_enabling(new_crtc_state, old_crtc_state))
+		intel_casf_enable(new_crtc_state);
+	else if (new_crtc_state->hw.casf_params.strength != old_crtc_state->hw.casf_params.strength)
+		intel_casf_update_strength(new_crtc_state);
+
 	intel_fbc_update(state, crtc);
 
 	drm_WARN_ON(display->drm, !intel_display_power_is_enabled(display, POWER_DOMAIN_DC_OFF));
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [RESEND 10/10] drm/i915/display: Expose sharpness strength property
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (8 preceding siblings ...)
  2025-10-28 12:07 ` [RESEND 09/10] drm/i915/display: Enable/disable casf Ankit Nautiyal
@ 2025-10-28 12:07 ` Ankit Nautiyal
  2025-10-28 12:38 ` ✗ CI.checkpatch: warning for Introduce drm sharpness property Patchwork
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2025-10-28 12:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: nemesa.garg, Ankit Nautiyal

From: Nemesa Garg <nemesa.garg@intel.com>

Expose the drm crtc sharpness strength property which will enable
or disable the sharpness/casf based on user input. With this user
can set/update the strength of the sharpness or casf filter.

v2: Update subject[Ankit]

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_crtc.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_crtc.c b/drivers/gpu/drm/i915/display/intel_crtc.c
index d300ba1dcd2c..802ae5aaece1 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc.c
@@ -395,6 +395,9 @@ int intel_crtc_init(struct intel_display *display, enum pipe pipe)
 
 	drm_WARN_ON(display->drm, drm_crtc_index(&crtc->base) != crtc->pipe);
 
+	if (HAS_CASF(display))
+		drm_crtc_create_sharpness_strength_property(&crtc->base);
+
 	return 0;
 
 fail:
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* ✗ CI.checkpatch: warning for Introduce drm sharpness property
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (9 preceding siblings ...)
  2025-10-28 12:07 ` [RESEND 10/10] drm/i915/display: Expose sharpness strength property Ankit Nautiyal
@ 2025-10-28 12:38 ` Patchwork
  2025-10-28 12:40 ` ✓ CI.KUnit: success " Patchwork
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-10-28 12:38 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: Introduce drm sharpness property
URL   : https://patchwork.freedesktop.org/series/156648/
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
f867e605613af1770f90c4b0afd4a8f06424d1f0
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit d744f3ceeb80fe4086c57e5277544e1c657c93e2
Author: Nemesa Garg <nemesa.garg@intel.com>
Date:   Tue Oct 28 17:37:46 2025 +0530

    drm/i915/display: Expose sharpness strength property
    
    Expose the drm crtc sharpness strength property which will enable
    or disable the sharpness/casf based on user input. With this user
    can set/update the strength of the sharpness or casf filter.
    
    v2: Update subject[Ankit]
    
    Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
    Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
+ /mt/dim checkpatch 894bc3ad572262b3c29e8cf0352adaa07275dbfc drm-intel
879764f6cd76 drm/drm_crtc: Introduce sharpness strength property
d182484468db drm/i915/display: Introduce HAS_CASF for sharpness support
d805281057d3 drm/i915/display: Add CASF strength and winsize
-:44: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#44: 
new file mode 100644

total: 0 errors, 1 warnings, 0 checks, 223 lines checked
91a75c1ca032 drm/i915/display: Add filter lut values
f6ca6e55d4d3 drm/i915/display: Compute the scaler coefficients
8a178df9374a drm/i915/display: Add and compute scaler parameter
0de607c91e41 drm/i915/display: Configure the second scaler
6006f40f4bcc drm/i915/display: Set and get the casf config
24f681a8f822 drm/i915/display: Enable/disable casf
d744f3ceeb80 drm/i915/display: Expose sharpness strength property



^ permalink raw reply	[flat|nested] 18+ messages in thread

* ✓ CI.KUnit: success for Introduce drm sharpness property
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (10 preceding siblings ...)
  2025-10-28 12:38 ` ✗ CI.checkpatch: warning for Introduce drm sharpness property Patchwork
@ 2025-10-28 12:40 ` Patchwork
  2025-10-28 12:55 ` ✗ CI.checksparse: warning " Patchwork
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-10-28 12:40 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: Introduce drm sharpness property
URL   : https://patchwork.freedesktop.org/series/156648/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:38:55] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:38:59] 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
[12:39:29] Starting KUnit Kernel (1/1)...
[12:39:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:39:30] ================== guc_buf (11 subtests) ===================
[12:39:30] [PASSED] test_smallest
[12:39:30] [PASSED] test_largest
[12:39:30] [PASSED] test_granular
[12:39:30] [PASSED] test_unique
[12:39:30] [PASSED] test_overlap
[12:39:30] [PASSED] test_reusable
[12:39:30] [PASSED] test_too_big
[12:39:30] [PASSED] test_flush
[12:39:30] [PASSED] test_lookup
[12:39:30] [PASSED] test_data
[12:39:30] [PASSED] test_class
[12:39:30] ===================== [PASSED] guc_buf =====================
[12:39:30] =================== guc_dbm (7 subtests) ===================
[12:39:30] [PASSED] test_empty
[12:39:30] [PASSED] test_default
[12:39:30] ======================== test_size  ========================
[12:39:30] [PASSED] 4
[12:39:30] [PASSED] 8
[12:39:30] [PASSED] 32
[12:39:30] [PASSED] 256
[12:39:30] ==================== [PASSED] test_size ====================
[12:39:30] ======================= test_reuse  ========================
[12:39:30] [PASSED] 4
[12:39:30] [PASSED] 8
[12:39:30] [PASSED] 32
[12:39:30] [PASSED] 256
[12:39:30] =================== [PASSED] test_reuse ====================
[12:39:30] =================== test_range_overlap  ====================
[12:39:30] [PASSED] 4
[12:39:30] [PASSED] 8
[12:39:30] [PASSED] 32
[12:39:30] [PASSED] 256
[12:39:30] =============== [PASSED] test_range_overlap ================
[12:39:30] =================== test_range_compact  ====================
[12:39:30] [PASSED] 4
[12:39:30] [PASSED] 8
[12:39:30] [PASSED] 32
[12:39:30] [PASSED] 256
[12:39:30] =============== [PASSED] test_range_compact ================
[12:39:30] ==================== test_range_spare  =====================
[12:39:30] [PASSED] 4
[12:39:30] [PASSED] 8
[12:39:30] [PASSED] 32
[12:39:30] [PASSED] 256
[12:39:30] ================ [PASSED] test_range_spare =================
[12:39:30] ===================== [PASSED] guc_dbm =====================
[12:39:30] =================== guc_idm (6 subtests) ===================
[12:39:30] [PASSED] bad_init
[12:39:30] [PASSED] no_init
[12:39:30] [PASSED] init_fini
[12:39:30] [PASSED] check_used
[12:39:30] [PASSED] check_quota
[12:39:30] [PASSED] check_all
[12:39:30] ===================== [PASSED] guc_idm =====================
[12:39:30] ================== no_relay (3 subtests) ===================
[12:39:30] [PASSED] xe_drops_guc2pf_if_not_ready
[12:39:30] [PASSED] xe_drops_guc2vf_if_not_ready
[12:39:30] [PASSED] xe_rejects_send_if_not_ready
[12:39:30] ==================== [PASSED] no_relay =====================
[12:39:30] ================== pf_relay (14 subtests) ==================
[12:39:30] [PASSED] pf_rejects_guc2pf_too_short
[12:39:30] [PASSED] pf_rejects_guc2pf_too_long
[12:39:30] [PASSED] pf_rejects_guc2pf_no_payload
[12:39:30] [PASSED] pf_fails_no_payload
[12:39:30] [PASSED] pf_fails_bad_origin
[12:39:30] [PASSED] pf_fails_bad_type
[12:39:30] [PASSED] pf_txn_reports_error
[12:39:30] [PASSED] pf_txn_sends_pf2guc
[12:39:30] [PASSED] pf_sends_pf2guc
[12:39:30] [SKIPPED] pf_loopback_nop
[12:39:30] [SKIPPED] pf_loopback_echo
[12:39:30] [SKIPPED] pf_loopback_fail
[12:39:30] [SKIPPED] pf_loopback_busy
[12:39:30] [SKIPPED] pf_loopback_retry
[12:39:30] ==================== [PASSED] pf_relay =====================
[12:39:30] ================== vf_relay (3 subtests) ===================
[12:39:30] [PASSED] vf_rejects_guc2vf_too_short
[12:39:30] [PASSED] vf_rejects_guc2vf_too_long
[12:39:30] [PASSED] vf_rejects_guc2vf_no_payload
[12:39:30] ==================== [PASSED] vf_relay =====================
[12:39:30] ===================== lmtt (1 subtest) =====================
[12:39:30] ======================== test_ops  =========================
[12:39:30] [PASSED] 2-level
[12:39:30] [PASSED] multi-level
[12:39:30] ==================== [PASSED] test_ops =====================
[12:39:30] ====================== [PASSED] lmtt =======================
[12:39:30] ================= pf_service (11 subtests) =================
[12:39:30] [PASSED] pf_negotiate_any
[12:39:30] [PASSED] pf_negotiate_base_match
[12:39:30] [PASSED] pf_negotiate_base_newer
[12:39:30] [PASSED] pf_negotiate_base_next
[12:39:30] [SKIPPED] pf_negotiate_base_older
[12:39:30] [PASSED] pf_negotiate_base_prev
[12:39:30] [PASSED] pf_negotiate_latest_match
[12:39:30] [PASSED] pf_negotiate_latest_newer
[12:39:30] [PASSED] pf_negotiate_latest_next
[12:39:30] [SKIPPED] pf_negotiate_latest_older
[12:39:30] [SKIPPED] pf_negotiate_latest_prev
[12:39:30] =================== [PASSED] pf_service ====================
[12:39:30] ================= xe_guc_g2g (2 subtests) ==================
[12:39:30] ============== xe_live_guc_g2g_kunit_default  ==============
[12:39:30] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:39:30] ============== xe_live_guc_g2g_kunit_allmem  ===============
[12:39:30] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:39:30] =================== [SKIPPED] xe_guc_g2g ===================
[12:39:30] =================== xe_mocs (2 subtests) ===================
[12:39:30] ================ xe_live_mocs_kernel_kunit  ================
[12:39:30] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:39:30] ================ xe_live_mocs_reset_kunit  =================
[12:39:30] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:39:30] ==================== [SKIPPED] xe_mocs =====================
[12:39:30] ================= xe_migrate (2 subtests) ==================
[12:39:30] ================= xe_migrate_sanity_kunit  =================
[12:39:30] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:39:30] ================== xe_validate_ccs_kunit  ==================
[12:39:30] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:39:30] =================== [SKIPPED] xe_migrate ===================
[12:39:30] ================== xe_dma_buf (1 subtest) ==================
[12:39:30] ==================== xe_dma_buf_kunit  =====================
[12:39:30] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:39:30] =================== [SKIPPED] xe_dma_buf ===================
[12:39:30] ================= xe_bo_shrink (1 subtest) =================
[12:39:30] =================== xe_bo_shrink_kunit  ====================
[12:39:30] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:39:30] ================== [SKIPPED] xe_bo_shrink ==================
[12:39:30] ==================== xe_bo (2 subtests) ====================
[12:39:30] ================== xe_ccs_migrate_kunit  ===================
[12:39:30] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:39:30] ==================== xe_bo_evict_kunit  ====================
[12:39:30] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:39:30] ===================== [SKIPPED] xe_bo ======================
[12:39:30] ==================== args (11 subtests) ====================
[12:39:30] [PASSED] count_args_test
[12:39:30] [PASSED] call_args_example
[12:39:30] [PASSED] call_args_test
[12:39:30] [PASSED] drop_first_arg_example
[12:39:30] [PASSED] drop_first_arg_test
[12:39:30] [PASSED] first_arg_example
[12:39:30] [PASSED] first_arg_test
[12:39:30] [PASSED] last_arg_example
[12:39:30] [PASSED] last_arg_test
[12:39:30] [PASSED] pick_arg_example
[12:39:30] [PASSED] sep_comma_example
[12:39:30] ====================== [PASSED] args =======================
[12:39:30] =================== xe_pci (3 subtests) ====================
[12:39:30] ==================== check_graphics_ip  ====================
[12:39:30] [PASSED] 12.00 Xe_LP
[12:39:30] [PASSED] 12.10 Xe_LP+
[12:39:30] [PASSED] 12.55 Xe_HPG
[12:39:30] [PASSED] 12.60 Xe_HPC
[12:39:30] [PASSED] 12.70 Xe_LPG
[12:39:30] [PASSED] 12.71 Xe_LPG
[12:39:30] [PASSED] 12.74 Xe_LPG+
[12:39:30] [PASSED] 20.01 Xe2_HPG
[12:39:30] [PASSED] 20.02 Xe2_HPG
[12:39:30] [PASSED] 20.04 Xe2_LPG
[12:39:30] [PASSED] 30.00 Xe3_LPG
[12:39:30] [PASSED] 30.01 Xe3_LPG
[12:39:30] [PASSED] 30.03 Xe3_LPG
[12:39:30] [PASSED] 30.04 Xe3_LPG
[12:39:30] [PASSED] 30.05 Xe3_LPG
[12:39:30] [PASSED] 35.11 Xe3p_XPC
[12:39:30] ================ [PASSED] check_graphics_ip ================
[12:39:30] ===================== check_media_ip  ======================
[12:39:30] [PASSED] 12.00 Xe_M
[12:39:30] [PASSED] 12.55 Xe_HPM
[12:39:30] [PASSED] 13.00 Xe_LPM+
[12:39:30] [PASSED] 13.01 Xe2_HPM
[12:39:30] [PASSED] 20.00 Xe2_LPM
[12:39:30] [PASSED] 30.00 Xe3_LPM
[12:39:30] [PASSED] 30.02 Xe3_LPM
[12:39:30] [PASSED] 35.00 Xe3p_LPM
[12:39:30] [PASSED] 35.03 Xe3p_HPM
[12:39:30] ================= [PASSED] check_media_ip ==================
[12:39:30] =================== check_platform_desc  ===================
[12:39:30] [PASSED] 0x9A60 (TIGERLAKE)
[12:39:30] [PASSED] 0x9A68 (TIGERLAKE)
[12:39:30] [PASSED] 0x9A70 (TIGERLAKE)
[12:39:30] [PASSED] 0x9A40 (TIGERLAKE)
[12:39:30] [PASSED] 0x9A49 (TIGERLAKE)
[12:39:30] [PASSED] 0x9A59 (TIGERLAKE)
[12:39:30] [PASSED] 0x9A78 (TIGERLAKE)
[12:39:30] [PASSED] 0x9AC0 (TIGERLAKE)
[12:39:30] [PASSED] 0x9AC9 (TIGERLAKE)
[12:39:30] [PASSED] 0x9AD9 (TIGERLAKE)
[12:39:30] [PASSED] 0x9AF8 (TIGERLAKE)
[12:39:30] [PASSED] 0x4C80 (ROCKETLAKE)
[12:39:30] [PASSED] 0x4C8A (ROCKETLAKE)
[12:39:30] [PASSED] 0x4C8B (ROCKETLAKE)
[12:39:30] [PASSED] 0x4C8C (ROCKETLAKE)
[12:39:30] [PASSED] 0x4C90 (ROCKETLAKE)
[12:39:30] [PASSED] 0x4C9A (ROCKETLAKE)
[12:39:30] [PASSED] 0x4680 (ALDERLAKE_S)
[12:39:30] [PASSED] 0x4682 (ALDERLAKE_S)
[12:39:30] [PASSED] 0x4688 (ALDERLAKE_S)
[12:39:30] [PASSED] 0x468A (ALDERLAKE_S)
[12:39:30] [PASSED] 0x468B (ALDERLAKE_S)
[12:39:30] [PASSED] 0x4690 (ALDERLAKE_S)
[12:39:30] [PASSED] 0x4692 (ALDERLAKE_S)
[12:39:30] [PASSED] 0x4693 (ALDERLAKE_S)
[12:39:30] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46AA (ALDERLAKE_P)
[12:39:30] [PASSED] 0x462A (ALDERLAKE_P)
[12:39:30] [PASSED] 0x4626 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x4628 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:39:30] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:39:30] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:39:30] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:39:30] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:39:30] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:39:30] [PASSED] 0xA721 (ALDERLAKE_P)
[12:39:30] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:39:30] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:39:30] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:39:30] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:39:30] [PASSED] 0xA720 (ALDERLAKE_P)
[12:39:30] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:39:30] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:39:30] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:39:30] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:39:30] [PASSED] 0xA780 (ALDERLAKE_S)
[12:39:30] [PASSED] 0xA781 (ALDERLAKE_S)
[12:39:30] [PASSED] 0xA782 (ALDERLAKE_S)
[12:39:30] [PASSED] 0xA783 (ALDERLAKE_S)
[12:39:30] [PASSED] 0xA788 (ALDERLAKE_S)
[12:39:30] [PASSED] 0xA789 (ALDERLAKE_S)
[12:39:30] [PASSED] 0xA78A (ALDERLAKE_S)
[12:39:30] [PASSED] 0xA78B (ALDERLAKE_S)
[12:39:30] [PASSED] 0x4905 (DG1)
[12:39:30] [PASSED] 0x4906 (DG1)
[12:39:30] [PASSED] 0x4907 (DG1)
[12:39:30] [PASSED] 0x4908 (DG1)
[12:39:30] [PASSED] 0x4909 (DG1)
[12:39:30] [PASSED] 0x56C0 (DG2)
[12:39:30] [PASSED] 0x56C2 (DG2)
[12:39:30] [PASSED] 0x56C1 (DG2)
[12:39:30] [PASSED] 0x7D51 (METEORLAKE)
[12:39:30] [PASSED] 0x7DD1 (METEORLAKE)
[12:39:30] [PASSED] 0x7D41 (METEORLAKE)
[12:39:30] [PASSED] 0x7D67 (METEORLAKE)
[12:39:30] [PASSED] 0xB640 (METEORLAKE)
[12:39:30] [PASSED] 0x56A0 (DG2)
[12:39:30] [PASSED] 0x56A1 (DG2)
[12:39:30] [PASSED] 0x56A2 (DG2)
[12:39:30] [PASSED] 0x56BE (DG2)
[12:39:30] [PASSED] 0x56BF (DG2)
[12:39:30] [PASSED] 0x5690 (DG2)
[12:39:30] [PASSED] 0x5691 (DG2)
[12:39:30] [PASSED] 0x5692 (DG2)
[12:39:30] [PASSED] 0x56A5 (DG2)
[12:39:30] [PASSED] 0x56A6 (DG2)
[12:39:30] [PASSED] 0x56B0 (DG2)
[12:39:30] [PASSED] 0x56B1 (DG2)
[12:39:30] [PASSED] 0x56BA (DG2)
[12:39:30] [PASSED] 0x56BB (DG2)
[12:39:30] [PASSED] 0x56BC (DG2)
[12:39:30] [PASSED] 0x56BD (DG2)
[12:39:30] [PASSED] 0x5693 (DG2)
[12:39:30] [PASSED] 0x5694 (DG2)
[12:39:30] [PASSED] 0x5695 (DG2)
[12:39:30] [PASSED] 0x56A3 (DG2)
[12:39:30] [PASSED] 0x56A4 (DG2)
[12:39:30] [PASSED] 0x56B2 (DG2)
[12:39:30] [PASSED] 0x56B3 (DG2)
[12:39:30] [PASSED] 0x5696 (DG2)
[12:39:30] [PASSED] 0x5697 (DG2)
[12:39:30] [PASSED] 0xB69 (PVC)
[12:39:30] [PASSED] 0xB6E (PVC)
[12:39:30] [PASSED] 0xBD4 (PVC)
[12:39:30] [PASSED] 0xBD5 (PVC)
[12:39:30] [PASSED] 0xBD6 (PVC)
[12:39:30] [PASSED] 0xBD7 (PVC)
[12:39:30] [PASSED] 0xBD8 (PVC)
[12:39:30] [PASSED] 0xBD9 (PVC)
[12:39:30] [PASSED] 0xBDA (PVC)
[12:39:30] [PASSED] 0xBDB (PVC)
[12:39:30] [PASSED] 0xBE0 (PVC)
[12:39:30] [PASSED] 0xBE1 (PVC)
[12:39:30] [PASSED] 0xBE5 (PVC)
[12:39:30] [PASSED] 0x7D40 (METEORLAKE)
[12:39:30] [PASSED] 0x7D45 (METEORLAKE)
[12:39:30] [PASSED] 0x7D55 (METEORLAKE)
[12:39:30] [PASSED] 0x7D60 (METEORLAKE)
[12:39:30] [PASSED] 0x7DD5 (METEORLAKE)
[12:39:30] [PASSED] 0x6420 (LUNARLAKE)
[12:39:30] [PASSED] 0x64A0 (LUNARLAKE)
[12:39:30] [PASSED] 0x64B0 (LUNARLAKE)
[12:39:30] [PASSED] 0xE202 (BATTLEMAGE)
[12:39:30] [PASSED] 0xE209 (BATTLEMAGE)
[12:39:30] [PASSED] 0xE20B (BATTLEMAGE)
[12:39:30] [PASSED] 0xE20C (BATTLEMAGE)
[12:39:30] [PASSED] 0xE20D (BATTLEMAGE)
[12:39:30] [PASSED] 0xE210 (BATTLEMAGE)
[12:39:30] [PASSED] 0xE211 (BATTLEMAGE)
[12:39:30] [PASSED] 0xE212 (BATTLEMAGE)
[12:39:30] [PASSED] 0xE216 (BATTLEMAGE)
[12:39:30] [PASSED] 0xE220 (BATTLEMAGE)
[12:39:30] [PASSED] 0xE221 (BATTLEMAGE)
[12:39:30] [PASSED] 0xE222 (BATTLEMAGE)
[12:39:30] [PASSED] 0xE223 (BATTLEMAGE)
[12:39:30] [PASSED] 0xB080 (PANTHERLAKE)
[12:39:30] [PASSED] 0xB081 (PANTHERLAKE)
[12:39:30] [PASSED] 0xB082 (PANTHERLAKE)
[12:39:30] [PASSED] 0xB083 (PANTHERLAKE)
[12:39:30] [PASSED] 0xB084 (PANTHERLAKE)
[12:39:30] [PASSED] 0xB085 (PANTHERLAKE)
[12:39:30] [PASSED] 0xB086 (PANTHERLAKE)
[12:39:30] [PASSED] 0xB087 (PANTHERLAKE)
[12:39:30] [PASSED] 0xB08F (PANTHERLAKE)
[12:39:30] [PASSED] 0xB090 (PANTHERLAKE)
[12:39:30] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:39:30] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:39:30] [PASSED] 0xFD80 (PANTHERLAKE)
[12:39:30] [PASSED] 0xFD81 (PANTHERLAKE)
[12:39:30] [PASSED] 0xD740 (NOVALAKE_S)
[12:39:30] [PASSED] 0xD741 (NOVALAKE_S)
[12:39:30] [PASSED] 0xD742 (NOVALAKE_S)
[12:39:30] [PASSED] 0xD743 (NOVALAKE_S)
[12:39:30] [PASSED] 0xD744 (NOVALAKE_S)
[12:39:30] [PASSED] 0xD745 (NOVALAKE_S)
[12:39:30] [PASSED] 0x674C (CRESCENTISLAND)
[12:39:30] =============== [PASSED] check_platform_desc ===============
[12:39:30] ===================== [PASSED] xe_pci ======================
[12:39:30] =================== xe_rtp (2 subtests) ====================
[12:39:30] =============== xe_rtp_process_to_sr_tests  ================
[12:39:30] [PASSED] coalesce-same-reg
[12:39:30] [PASSED] no-match-no-add
[12:39:30] [PASSED] match-or
[12:39:30] [PASSED] match-or-xfail
[12:39:30] [PASSED] no-match-no-add-multiple-rules
[12:39:30] [PASSED] two-regs-two-entries
[12:39:30] [PASSED] clr-one-set-other
[12:39:30] [PASSED] set-field
[12:39:30] [PASSED] conflict-duplicate
[12:39:30] [PASSED] conflict-not-disjoint
[12:39:30] [PASSED] conflict-reg-type
[12:39:30] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:39:30] ================== xe_rtp_process_tests  ===================
[12:39:30] [PASSED] active1
[12:39:30] [PASSED] active2
[12:39:30] [PASSED] active-inactive
[12:39:30] [PASSED] inactive-active
[12:39:30] [PASSED] inactive-1st_or_active-inactive
[12:39:30] [PASSED] inactive-2nd_or_active-inactive
[12:39:30] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[12:39:30] [PASSED] inactive-no_or_active-inactive
[12:39:30] ============== [PASSED] xe_rtp_process_tests ===============
[12:39:30] ===================== [PASSED] xe_rtp ======================
[12:39:30] ==================== xe_wa (1 subtest) =====================
[12:39:30] ======================== xe_wa_gt  =========================
[12:39:30] [PASSED] TIGERLAKE B0
[12:39:30] [PASSED] DG1 A0
[12:39:30] [PASSED] DG1 B0
[12:39:30] [PASSED] ALDERLAKE_S A0
[12:39:30] [PASSED] ALDERLAKE_S B0
[12:39:30] [PASSED] ALDERLAKE_S C0
[12:39:30] [PASSED] ALDERLAKE_S D0
[12:39:30] [PASSED] ALDERLAKE_P A0
[12:39:30] [PASSED] ALDERLAKE_P B0
[12:39:30] [PASSED] ALDERLAKE_P C0
[12:39:30] [PASSED] ALDERLAKE_S RPLS D0
[12:39:30] [PASSED] ALDERLAKE_P RPLU E0
[12:39:30] [PASSED] DG2 G10 C0
[12:39:30] [PASSED] DG2 G11 B1
[12:39:30] [PASSED] DG2 G12 A1
[12:39:30] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:39:30] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:39:30] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:39:30] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:39:30] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:39:30] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:39:30] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:39:30] ==================== [PASSED] xe_wa_gt =====================
[12:39:30] ====================== [PASSED] xe_wa ======================
[12:39:30] ============================================================
[12:39:30] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[12:39:30] Elapsed time: 35.142s total, 4.117s configuring, 30.660s building, 0.335s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:39:30] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:39:32] 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
[12:39:57] Starting KUnit Kernel (1/1)...
[12:39:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:39:57] ============ drm_test_pick_cmdline (2 subtests) ============
[12:39:57] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:39:57] =============== drm_test_pick_cmdline_named  ===============
[12:39:57] [PASSED] NTSC
[12:39:57] [PASSED] NTSC-J
[12:39:57] [PASSED] PAL
[12:39:57] [PASSED] PAL-M
[12:39:57] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:39:57] ============== [PASSED] drm_test_pick_cmdline ==============
[12:39:57] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:39:57] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:39:57] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:39:57] =========== drm_validate_clone_mode (2 subtests) ===========
[12:39:57] ============== drm_test_check_in_clone_mode  ===============
[12:39:57] [PASSED] in_clone_mode
[12:39:57] [PASSED] not_in_clone_mode
[12:39:57] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:39:57] =============== drm_test_check_valid_clones  ===============
[12:39:57] [PASSED] not_in_clone_mode
[12:39:57] [PASSED] valid_clone
[12:39:57] [PASSED] invalid_clone
[12:39:57] =========== [PASSED] drm_test_check_valid_clones ===========
[12:39:57] ============= [PASSED] drm_validate_clone_mode =============
[12:39:57] ============= drm_validate_modeset (1 subtest) =============
[12:39:57] [PASSED] drm_test_check_connector_changed_modeset
[12:39:57] ============== [PASSED] drm_validate_modeset ===============
[12:39:57] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:39:57] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:39:57] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:39:57] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:39:57] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:39:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:39:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:39:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:39:57] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:39:57] ============== drm_bridge_alloc (2 subtests) ===============
[12:39:57] [PASSED] drm_test_drm_bridge_alloc_basic
[12:39:57] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:39:57] ================ [PASSED] drm_bridge_alloc =================
[12:39:57] ================== drm_buddy (8 subtests) ==================
[12:39:57] [PASSED] drm_test_buddy_alloc_limit
[12:39:57] [PASSED] drm_test_buddy_alloc_optimistic
[12:39:57] [PASSED] drm_test_buddy_alloc_pessimistic
[12:39:57] [PASSED] drm_test_buddy_alloc_pathological
[12:39:57] [PASSED] drm_test_buddy_alloc_contiguous
[12:39:57] [PASSED] drm_test_buddy_alloc_clear
[12:39:57] [PASSED] drm_test_buddy_alloc_range_bias
[12:39:57] [PASSED] drm_test_buddy_fragmentation_performance
[12:39:57] ==================== [PASSED] drm_buddy ====================
[12:39:57] ============= drm_cmdline_parser (40 subtests) =============
[12:39:57] [PASSED] drm_test_cmdline_force_d_only
[12:39:57] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:39:57] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:39:57] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:39:57] [PASSED] drm_test_cmdline_force_e_only
[12:39:57] [PASSED] drm_test_cmdline_res
[12:39:57] [PASSED] drm_test_cmdline_res_vesa
[12:39:57] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:39:57] [PASSED] drm_test_cmdline_res_rblank
[12:39:57] [PASSED] drm_test_cmdline_res_bpp
[12:39:57] [PASSED] drm_test_cmdline_res_refresh
[12:39:57] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:39:57] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:39:57] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:39:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:39:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:39:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:39:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:39:57] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:39:57] [PASSED] drm_test_cmdline_res_margins_force_on
[12:39:57] [PASSED] drm_test_cmdline_res_vesa_margins
[12:39:57] [PASSED] drm_test_cmdline_name
[12:39:57] [PASSED] drm_test_cmdline_name_bpp
[12:39:57] [PASSED] drm_test_cmdline_name_option
[12:39:57] [PASSED] drm_test_cmdline_name_bpp_option
[12:39:57] [PASSED] drm_test_cmdline_rotate_0
[12:39:57] [PASSED] drm_test_cmdline_rotate_90
[12:39:57] [PASSED] drm_test_cmdline_rotate_180
[12:39:57] [PASSED] drm_test_cmdline_rotate_270
[12:39:57] [PASSED] drm_test_cmdline_hmirror
[12:39:57] [PASSED] drm_test_cmdline_vmirror
[12:39:57] [PASSED] drm_test_cmdline_margin_options
[12:39:57] [PASSED] drm_test_cmdline_multiple_options
[12:39:57] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:39:57] [PASSED] drm_test_cmdline_extra_and_option
[12:39:57] [PASSED] drm_test_cmdline_freestanding_options
[12:39:57] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:39:57] [PASSED] drm_test_cmdline_panel_orientation
[12:39:57] ================ drm_test_cmdline_invalid  =================
[12:39:57] [PASSED] margin_only
[12:39:57] [PASSED] interlace_only
[12:39:57] [PASSED] res_missing_x
[12:39:57] [PASSED] res_missing_y
[12:39:57] [PASSED] res_bad_y
[12:39:57] [PASSED] res_missing_y_bpp
[12:39:57] [PASSED] res_bad_bpp
[12:39:57] [PASSED] res_bad_refresh
[12:39:57] [PASSED] res_bpp_refresh_force_on_off
[12:39:57] [PASSED] res_invalid_mode
[12:39:57] [PASSED] res_bpp_wrong_place_mode
[12:39:57] [PASSED] name_bpp_refresh
[12:39:57] [PASSED] name_refresh
[12:39:57] [PASSED] name_refresh_wrong_mode
[12:39:57] [PASSED] name_refresh_invalid_mode
[12:39:57] [PASSED] rotate_multiple
[12:39:57] [PASSED] rotate_invalid_val
[12:39:57] [PASSED] rotate_truncated
[12:39:57] [PASSED] invalid_option
[12:39:57] [PASSED] invalid_tv_option
[12:39:57] [PASSED] truncated_tv_option
[12:39:57] ============ [PASSED] drm_test_cmdline_invalid =============
[12:39:57] =============== drm_test_cmdline_tv_options  ===============
[12:39:57] [PASSED] NTSC
[12:39:57] [PASSED] NTSC_443
[12:39:57] [PASSED] NTSC_J
[12:39:57] [PASSED] PAL
[12:39:57] [PASSED] PAL_M
[12:39:57] [PASSED] PAL_N
[12:39:57] [PASSED] SECAM
[12:39:57] [PASSED] MONO_525
[12:39:57] [PASSED] MONO_625
[12:39:57] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:39:57] =============== [PASSED] drm_cmdline_parser ================
[12:39:57] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:39:57] [PASSED] drm_test_connector_hdmi_init_valid
[12:39:57] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:39:57] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:39:57] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:39:57] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:39:57] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:39:57] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:39:57] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:39:57] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[12:39:57] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:39:57] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:39:57] [PASSED] supported_formats=0x3 yuv420_allowed=1
[12:39:57] [PASSED] supported_formats=0x3 yuv420_allowed=0
[12:39:57] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:39:57] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:39:57] [PASSED] drm_test_connector_hdmi_init_null_product
[12:39:57] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:39:57] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:39:57] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:39:57] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:39:57] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:39:57] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:39:57] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:39:57] ========= drm_test_connector_hdmi_init_type_valid  =========
[12:39:57] [PASSED] HDMI-A
[12:39:57] [PASSED] HDMI-B
[12:39:57] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:39:57] ======== drm_test_connector_hdmi_init_type_invalid  ========
[12:39:57] [PASSED] Unknown
[12:39:57] [PASSED] VGA
[12:39:57] [PASSED] DVI-I
[12:39:57] [PASSED] DVI-D
[12:39:57] [PASSED] DVI-A
[12:39:57] [PASSED] Composite
[12:39:57] [PASSED] SVIDEO
[12:39:57] [PASSED] LVDS
[12:39:57] [PASSED] Component
[12:39:57] [PASSED] DIN
[12:39:57] [PASSED] DP
[12:39:57] [PASSED] TV
[12:39:57] [PASSED] eDP
[12:39:57] [PASSED] Virtual
[12:39:57] [PASSED] DSI
[12:39:57] [PASSED] DPI
[12:39:57] [PASSED] Writeback
[12:39:57] [PASSED] SPI
[12:39:57] [PASSED] USB
[12:39:57] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:39:57] ============ [PASSED] drmm_connector_hdmi_init =============
[12:39:57] ============= drmm_connector_init (3 subtests) =============
[12:39:57] [PASSED] drm_test_drmm_connector_init
[12:39:57] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:39:57] ========= drm_test_drmm_connector_init_type_valid  =========
[12:39:57] [PASSED] Unknown
[12:39:57] [PASSED] VGA
[12:39:57] [PASSED] DVI-I
[12:39:57] [PASSED] DVI-D
[12:39:57] [PASSED] DVI-A
[12:39:57] [PASSED] Composite
[12:39:57] [PASSED] SVIDEO
[12:39:57] [PASSED] LVDS
[12:39:57] [PASSED] Component
[12:39:57] [PASSED] DIN
[12:39:57] [PASSED] DP
[12:39:57] [PASSED] HDMI-A
[12:39:57] [PASSED] HDMI-B
[12:39:57] [PASSED] TV
[12:39:57] [PASSED] eDP
[12:39:57] [PASSED] Virtual
[12:39:57] [PASSED] DSI
[12:39:57] [PASSED] DPI
[12:39:57] [PASSED] Writeback
[12:39:57] [PASSED] SPI
[12:39:57] [PASSED] USB
[12:39:57] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:39:57] =============== [PASSED] drmm_connector_init ===============
[12:39:57] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_init
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:39:57] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[12:39:57] [PASSED] Unknown
[12:39:57] [PASSED] VGA
[12:39:57] [PASSED] DVI-I
[12:39:57] [PASSED] DVI-D
[12:39:57] [PASSED] DVI-A
[12:39:57] [PASSED] Composite
[12:39:57] [PASSED] SVIDEO
[12:39:57] [PASSED] LVDS
[12:39:57] [PASSED] Component
[12:39:57] [PASSED] DIN
[12:39:57] [PASSED] DP
[12:39:57] [PASSED] HDMI-A
[12:39:57] [PASSED] HDMI-B
[12:39:57] [PASSED] TV
[12:39:57] [PASSED] eDP
[12:39:57] [PASSED] Virtual
[12:39:57] [PASSED] DSI
[12:39:57] [PASSED] DPI
[12:39:57] [PASSED] Writeback
[12:39:57] [PASSED] SPI
[12:39:57] [PASSED] USB
[12:39:57] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:39:57] ======== drm_test_drm_connector_dynamic_init_name  =========
[12:39:57] [PASSED] Unknown
[12:39:57] [PASSED] VGA
[12:39:57] [PASSED] DVI-I
[12:39:57] [PASSED] DVI-D
[12:39:57] [PASSED] DVI-A
[12:39:57] [PASSED] Composite
[12:39:57] [PASSED] SVIDEO
[12:39:57] [PASSED] LVDS
[12:39:57] [PASSED] Component
[12:39:57] [PASSED] DIN
[12:39:57] [PASSED] DP
[12:39:57] [PASSED] HDMI-A
[12:39:57] [PASSED] HDMI-B
[12:39:57] [PASSED] TV
[12:39:57] [PASSED] eDP
[12:39:57] [PASSED] Virtual
[12:39:57] [PASSED] DSI
[12:39:57] [PASSED] DPI
[12:39:57] [PASSED] Writeback
[12:39:57] [PASSED] SPI
[12:39:57] [PASSED] USB
[12:39:57] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:39:57] =========== [PASSED] drm_connector_dynamic_init ============
[12:39:57] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:39:57] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:39:57] ======= drm_connector_dynamic_register (7 subtests) ========
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:39:57] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:39:57] ========= [PASSED] drm_connector_dynamic_register ==========
[12:39:57] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:39:57] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:39:57] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:39:57] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:39:57] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:39:57] ========== drm_test_get_tv_mode_from_name_valid  ===========
[12:39:57] [PASSED] NTSC
[12:39:57] [PASSED] NTSC-443
[12:39:57] [PASSED] NTSC-J
[12:39:57] [PASSED] PAL
[12:39:57] [PASSED] PAL-M
[12:39:57] [PASSED] PAL-N
[12:39:57] [PASSED] SECAM
[12:39:57] [PASSED] Mono
[12:39:57] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:39:57] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:39:57] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:39:57] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:39:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:39:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:39:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:39:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:39:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:39:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:39:57] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[12:39:57] [PASSED] VIC 96
[12:39:57] [PASSED] VIC 97
[12:39:57] [PASSED] VIC 101
[12:39:57] [PASSED] VIC 102
[12:39:57] [PASSED] VIC 106
[12:39:57] [PASSED] VIC 107
[12:39:57] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:39:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:39:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:39:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:39:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:39:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:39:57] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:39:57] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:39:57] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[12:39:57] [PASSED] Automatic
[12:39:57] [PASSED] Full
[12:39:57] [PASSED] Limited 16:235
[12:39:57] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:39:57] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:39:57] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:39:57] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:39:57] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[12:39:57] [PASSED] RGB
[12:39:57] [PASSED] YUV 4:2:0
[12:39:57] [PASSED] YUV 4:2:2
[12:39:57] [PASSED] YUV 4:4:4
[12:39:57] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:39:57] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:39:57] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:39:57] ============= drm_damage_helper (21 subtests) ==============
[12:39:57] [PASSED] drm_test_damage_iter_no_damage
[12:39:57] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:39:57] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:39:57] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:39:57] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:39:57] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:39:57] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:39:57] [PASSED] drm_test_damage_iter_simple_damage
[12:39:57] [PASSED] drm_test_damage_iter_single_damage
[12:39:57] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:39:57] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:39:57] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:39:57] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:39:57] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:39:57] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:39:57] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:39:57] [PASSED] drm_test_damage_iter_damage
[12:39:57] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:39:57] [PASSED] drm_test_damage_iter_damage_one_outside
[12:39:57] [PASSED] drm_test_damage_iter_damage_src_moved
[12:39:57] [PASSED] drm_test_damage_iter_damage_not_visible
[12:39:57] ================ [PASSED] drm_damage_helper ================
[12:39:57] ============== drm_dp_mst_helper (3 subtests) ==============
[12:39:57] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[12:39:57] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:39:57] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:39:57] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:39:57] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:39:57] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:39:57] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:39:57] ============== drm_test_dp_mst_calc_pbn_div  ===============
[12:39:57] [PASSED] Link rate 2000000 lane count 4
[12:39:57] [PASSED] Link rate 2000000 lane count 2
[12:39:57] [PASSED] Link rate 2000000 lane count 1
[12:39:57] [PASSED] Link rate 1350000 lane count 4
[12:39:57] [PASSED] Link rate 1350000 lane count 2
[12:39:57] [PASSED] Link rate 1350000 lane count 1
[12:39:57] [PASSED] Link rate 1000000 lane count 4
[12:39:57] [PASSED] Link rate 1000000 lane count 2
[12:39:57] [PASSED] Link rate 1000000 lane count 1
[12:39:57] [PASSED] Link rate 810000 lane count 4
[12:39:57] [PASSED] Link rate 810000 lane count 2
[12:39:57] [PASSED] Link rate 810000 lane count 1
[12:39:57] [PASSED] Link rate 540000 lane count 4
[12:39:57] [PASSED] Link rate 540000 lane count 2
[12:39:57] [PASSED] Link rate 540000 lane count 1
[12:39:57] [PASSED] Link rate 270000 lane count 4
[12:39:57] [PASSED] Link rate 270000 lane count 2
[12:39:57] [PASSED] Link rate 270000 lane count 1
[12:39:57] [PASSED] Link rate 162000 lane count 4
[12:39:57] [PASSED] Link rate 162000 lane count 2
[12:39:57] [PASSED] Link rate 162000 lane count 1
[12:39:57] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:39:57] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[12:39:57] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:39:57] [PASSED] DP_POWER_UP_PHY with port number
[12:39:57] [PASSED] DP_POWER_DOWN_PHY with port number
[12:39:57] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:39:57] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:39:57] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:39:57] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:39:57] [PASSED] DP_QUERY_PAYLOAD with port number
[12:39:57] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:39:57] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:39:57] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:39:57] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:39:57] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:39:57] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:39:57] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:39:57] [PASSED] DP_REMOTE_I2C_READ with port number
[12:39:57] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:39:57] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:39:57] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:39:57] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:39:57] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:39:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:39:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:39:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:39:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:39:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:39:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:39:57] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:39:57] ================ [PASSED] drm_dp_mst_helper ================
[12:39:57] ================== drm_exec (7 subtests) ===================
[12:39:57] [PASSED] sanitycheck
[12:39:57] [PASSED] test_lock
[12:39:57] [PASSED] test_lock_unlock
[12:39:57] [PASSED] test_duplicates
[12:39:57] [PASSED] test_prepare
[12:39:57] [PASSED] test_prepare_array
[12:39:57] [PASSED] test_multiple_loops
[12:39:57] ==================== [PASSED] drm_exec =====================
[12:39:57] =========== drm_format_helper_test (17 subtests) ===========
[12:39:57] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:39:57] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:39:57] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:39:57] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:39:57] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:39:57] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:39:57] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:39:57] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:39:57] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:39:57] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:39:57] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:39:57] ============== drm_test_fb_xrgb8888_to_mono  ===============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:39:57] ==================== drm_test_fb_swab  =====================
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ================ [PASSED] drm_test_fb_swab =================
[12:39:57] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:39:57] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[12:39:57] [PASSED] single_pixel_source_buffer
[12:39:57] [PASSED] single_pixel_clip_rectangle
[12:39:57] [PASSED] well_known_colors
[12:39:57] [PASSED] destination_pitch
[12:39:57] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:39:57] ================= drm_test_fb_clip_offset  =================
[12:39:57] [PASSED] pass through
[12:39:57] [PASSED] horizontal offset
[12:39:57] [PASSED] vertical offset
[12:39:57] [PASSED] horizontal and vertical offset
[12:39:57] [PASSED] horizontal offset (custom pitch)
[12:39:57] [PASSED] vertical offset (custom pitch)
[12:39:57] [PASSED] horizontal and vertical offset (custom pitch)
[12:39:57] ============= [PASSED] drm_test_fb_clip_offset =============
[12:39:57] =================== drm_test_fb_memcpy  ====================
[12:39:57] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:39:57] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:39:57] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:39:57] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:39:57] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:39:57] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:39:57] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:39:57] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:39:57] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:39:57] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:39:57] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:39:57] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:39:57] =============== [PASSED] drm_test_fb_memcpy ================
[12:39:57] ============= [PASSED] drm_format_helper_test ==============
[12:39:57] ================= drm_format (18 subtests) =================
[12:39:57] [PASSED] drm_test_format_block_width_invalid
[12:39:57] [PASSED] drm_test_format_block_width_one_plane
[12:39:57] [PASSED] drm_test_format_block_width_two_plane
[12:39:57] [PASSED] drm_test_format_block_width_three_plane
[12:39:57] [PASSED] drm_test_format_block_width_tiled
[12:39:57] [PASSED] drm_test_format_block_height_invalid
[12:39:57] [PASSED] drm_test_format_block_height_one_plane
[12:39:57] [PASSED] drm_test_format_block_height_two_plane
[12:39:57] [PASSED] drm_test_format_block_height_three_plane
[12:39:57] [PASSED] drm_test_format_block_height_tiled
[12:39:57] [PASSED] drm_test_format_min_pitch_invalid
[12:39:57] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:39:57] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:39:57] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:39:57] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:39:57] [PASSED] drm_test_format_min_pitch_two_plane
[12:39:57] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:39:57] [PASSED] drm_test_format_min_pitch_tiled
[12:39:57] =================== [PASSED] drm_format ====================
[12:39:57] ============== drm_framebuffer (10 subtests) ===============
[12:39:57] ========== drm_test_framebuffer_check_src_coords  ==========
[12:39:57] [PASSED] Success: source fits into fb
[12:39:57] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:39:57] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:39:57] [PASSED] Fail: overflowing fb with source width
[12:39:57] [PASSED] Fail: overflowing fb with source height
[12:39:57] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:39:57] [PASSED] drm_test_framebuffer_cleanup
[12:39:57] =============== drm_test_framebuffer_create  ===============
[12:39:57] [PASSED] ABGR8888 normal sizes
[12:39:57] [PASSED] ABGR8888 max sizes
[12:39:57] [PASSED] ABGR8888 pitch greater than min required
[12:39:57] [PASSED] ABGR8888 pitch less than min required
[12:39:57] [PASSED] ABGR8888 Invalid width
[12:39:57] [PASSED] ABGR8888 Invalid buffer handle
[12:39:57] [PASSED] No pixel format
[12:39:57] [PASSED] ABGR8888 Width 0
[12:39:57] [PASSED] ABGR8888 Height 0
[12:39:57] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:39:57] [PASSED] ABGR8888 Large buffer offset
[12:39:57] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:39:57] [PASSED] ABGR8888 Invalid flag
[12:39:57] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:39:57] [PASSED] ABGR8888 Valid buffer modifier
[12:39:57] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:39:57] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:39:57] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:39:57] [PASSED] NV12 Normal sizes
[12:39:57] [PASSED] NV12 Max sizes
[12:39:57] [PASSED] NV12 Invalid pitch
[12:39:57] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:39:57] [PASSED] NV12 different  modifier per-plane
[12:39:57] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:39:57] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:39:57] [PASSED] NV12 Modifier for inexistent plane
[12:39:57] [PASSED] NV12 Handle for inexistent plane
[12:39:57] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:39:57] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:39:57] [PASSED] YVU420 Normal sizes
[12:39:57] [PASSED] YVU420 Max sizes
[12:39:57] [PASSED] YVU420 Invalid pitch
[12:39:57] [PASSED] YVU420 Different pitches
[12:39:57] [PASSED] YVU420 Different buffer offsets/pitches
[12:39:57] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:39:57] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:39:57] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:39:57] [PASSED] YVU420 Valid modifier
[12:39:57] [PASSED] YVU420 Different modifiers per plane
[12:39:57] [PASSED] YVU420 Modifier for inexistent plane
[12:39:57] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:39:57] [PASSED] X0L2 Normal sizes
[12:39:57] [PASSED] X0L2 Max sizes
[12:39:57] [PASSED] X0L2 Invalid pitch
[12:39:57] [PASSED] X0L2 Pitch greater than minimum required
[12:39:57] [PASSED] X0L2 Handle for inexistent plane
[12:39:57] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:39:57] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:39:57] [PASSED] X0L2 Valid modifier
[12:39:57] [PASSED] X0L2 Modifier for inexistent plane
[12:39:57] =========== [PASSED] drm_test_framebuffer_create ===========
[12:39:57] [PASSED] drm_test_framebuffer_free
[12:39:57] [PASSED] drm_test_framebuffer_init
[12:39:57] [PASSED] drm_test_framebuffer_init_bad_format
[12:39:57] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:39:57] [PASSED] drm_test_framebuffer_lookup
[12:39:57] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:39:57] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:39:57] ================= [PASSED] drm_framebuffer =================
[12:39:57] ================ drm_gem_shmem (8 subtests) ================
[12:39:57] [PASSED] drm_gem_shmem_test_obj_create
[12:39:57] [PASSED] drm_gem_shmem_test_obj_create_private
[12:39:57] [PASSED] drm_gem_shmem_test_pin_pages
[12:39:57] [PASSED] drm_gem_shmem_test_vmap
[12:39:57] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:39:57] [PASSED] drm_gem_shmem_test_get_sg_table
[12:39:57] [PASSED] drm_gem_shmem_test_madvise
[12:39:57] [PASSED] drm_gem_shmem_test_purge
[12:39:57] ================== [PASSED] drm_gem_shmem ==================
[12:39:57] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:39:57] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:39:57] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:39:57] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:39:57] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:39:57] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:39:57] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:39:57] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[12:39:57] [PASSED] Automatic
[12:39:57] [PASSED] Full
[12:39:57] [PASSED] Limited 16:235
[12:39:57] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:39:57] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:39:57] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:39:57] [PASSED] drm_test_check_disable_connector
[12:39:57] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:39:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:39:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:39:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:39:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:39:57] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:39:57] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:39:57] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:39:57] [PASSED] drm_test_check_output_bpc_dvi
[12:39:57] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:39:57] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:39:57] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:39:57] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:39:57] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:39:57] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:39:57] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:39:57] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:39:57] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:39:57] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:39:57] [PASSED] drm_test_check_broadcast_rgb_value
[12:39:57] [PASSED] drm_test_check_bpc_8_value
[12:39:57] [PASSED] drm_test_check_bpc_10_value
[12:39:57] [PASSED] drm_test_check_bpc_12_value
[12:39:57] [PASSED] drm_test_check_format_value
[12:39:57] [PASSED] drm_test_check_tmds_char_value
[12:39:57] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:39:57] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:39:57] [PASSED] drm_test_check_mode_valid
[12:39:57] [PASSED] drm_test_check_mode_valid_reject
[12:39:57] [PASSED] drm_test_check_mode_valid_reject_rate
[12:39:57] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:39:57] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:39:57] ================= drm_managed (2 subtests) =================
[12:39:57] [PASSED] drm_test_managed_release_action
[12:39:57] [PASSED] drm_test_managed_run_action
[12:39:57] =================== [PASSED] drm_managed ===================
[12:39:57] =================== drm_mm (6 subtests) ====================
[12:39:57] [PASSED] drm_test_mm_init
[12:39:57] [PASSED] drm_test_mm_debug
[12:39:57] [PASSED] drm_test_mm_align32
[12:39:57] [PASSED] drm_test_mm_align64
[12:39:57] [PASSED] drm_test_mm_lowest
[12:39:57] [PASSED] drm_test_mm_highest
[12:39:57] ===================== [PASSED] drm_mm ======================
[12:39:57] ============= drm_modes_analog_tv (5 subtests) =============
[12:39:57] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:39:57] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:39:57] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:39:57] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:39:57] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:39:57] =============== [PASSED] drm_modes_analog_tv ===============
[12:39:57] ============== drm_plane_helper (2 subtests) ===============
[12:39:57] =============== drm_test_check_plane_state  ================
[12:39:57] [PASSED] clipping_simple
[12:39:57] [PASSED] clipping_rotate_reflect
[12:39:57] [PASSED] positioning_simple
[12:39:57] [PASSED] upscaling
[12:39:57] [PASSED] downscaling
[12:39:57] [PASSED] rounding1
[12:39:57] [PASSED] rounding2
[12:39:57] [PASSED] rounding3
[12:39:57] [PASSED] rounding4
[12:39:57] =========== [PASSED] drm_test_check_plane_state ============
[12:39:57] =========== drm_test_check_invalid_plane_state  ============
[12:39:57] [PASSED] positioning_invalid
[12:39:57] [PASSED] upscaling_invalid
[12:39:57] [PASSED] downscaling_invalid
[12:39:57] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:39:57] ================ [PASSED] drm_plane_helper =================
[12:39:57] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:39:57] ====== drm_test_connector_helper_tv_get_modes_check  =======
[12:39:57] [PASSED] None
[12:39:57] [PASSED] PAL
[12:39:57] [PASSED] NTSC
[12:39:57] [PASSED] Both, NTSC Default
[12:39:57] [PASSED] Both, PAL Default
[12:39:57] [PASSED] Both, NTSC Default, with PAL on command-line
[12:39:57] [PASSED] Both, PAL Default, with NTSC on command-line
[12:39:57] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:39:57] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:39:57] ================== drm_rect (9 subtests) ===================
[12:39:57] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:39:57] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:39:57] [PASSED] drm_test_rect_clip_scaled_clipped
[12:39:57] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:39:57] ================= drm_test_rect_intersect  =================
[12:39:57] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:39:57] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:39:57] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:39:57] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:39:57] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:39:57] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:39:57] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:39:57] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:39:57] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:39:57] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:39:57] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:39:57] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:39:57] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:39:57] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:39:57] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:39:57] ============= [PASSED] drm_test_rect_intersect =============
[12:39:57] ================ drm_test_rect_calc_hscale  ================
[12:39:57] [PASSED] normal use
[12:39:57] [PASSED] out of max range
[12:39:57] [PASSED] out of min range
[12:39:57] [PASSED] zero dst
[12:39:57] [PASSED] negative src
[12:39:57] [PASSED] negative dst
[12:39:57] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:39:57] ================ drm_test_rect_calc_vscale  ================
[12:39:57] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[12:39:57] [PASSED] out of max range
[12:39:57] [PASSED] out of min range
[12:39:57] [PASSED] zero dst
[12:39:57] [PASSED] negative src
[12:39:57] [PASSED] negative dst
[12:39:57] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:39:57] ================== drm_test_rect_rotate  ===================
[12:39:57] [PASSED] reflect-x
[12:39:57] [PASSED] reflect-y
[12:39:57] [PASSED] rotate-0
[12:39:57] [PASSED] rotate-90
[12:39:57] [PASSED] rotate-180
[12:39:57] [PASSED] rotate-270
[12:39:57] ============== [PASSED] drm_test_rect_rotate ===============
[12:39:57] ================ drm_test_rect_rotate_inv  =================
[12:39:57] [PASSED] reflect-x
[12:39:57] [PASSED] reflect-y
[12:39:57] [PASSED] rotate-0
[12:39:57] [PASSED] rotate-90
[12:39:57] [PASSED] rotate-180
[12:39:57] [PASSED] rotate-270
[12:39:57] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:39:57] ==================== [PASSED] drm_rect =====================
[12:39:57] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:39:57] ============ drm_test_sysfb_build_fourcc_list  =============
[12:39:57] [PASSED] no native formats
[12:39:57] [PASSED] XRGB8888 as native format
[12:39:57] [PASSED] remove duplicates
[12:39:57] [PASSED] convert alpha formats
[12:39:57] [PASSED] random formats
[12:39:57] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:39:57] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:39:57] ============================================================
[12:39:57] Testing complete. Ran 622 tests: passed: 622
[12:39:57] Elapsed time: 27.289s total, 1.670s configuring, 25.200s building, 0.389s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:39:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:39:59] 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
[12:40:08] Starting KUnit Kernel (1/1)...
[12:40:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:40:08] ================= ttm_device (5 subtests) ==================
[12:40:08] [PASSED] ttm_device_init_basic
[12:40:08] [PASSED] ttm_device_init_multiple
[12:40:08] [PASSED] ttm_device_fini_basic
[12:40:08] [PASSED] ttm_device_init_no_vma_man
[12:40:08] ================== ttm_device_init_pools  ==================
[12:40:08] [PASSED] No DMA allocations, no DMA32 required
[12:40:08] [PASSED] DMA allocations, DMA32 required
[12:40:08] [PASSED] No DMA allocations, DMA32 required
[12:40:08] [PASSED] DMA allocations, no DMA32 required
[12:40:08] ============== [PASSED] ttm_device_init_pools ==============
[12:40:08] =================== [PASSED] ttm_device ====================
[12:40:08] ================== ttm_pool (8 subtests) ===================
[12:40:08] ================== ttm_pool_alloc_basic  ===================
[12:40:08] [PASSED] One page
[12:40:08] [PASSED] More than one page
[12:40:08] [PASSED] Above the allocation limit
[12:40:08] [PASSED] One page, with coherent DMA mappings enabled
[12:40:08] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:40:08] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:40:08] ============== ttm_pool_alloc_basic_dma_addr  ==============
[12:40:08] [PASSED] One page
[12:40:08] [PASSED] More than one page
[12:40:08] [PASSED] Above the allocation limit
[12:40:08] [PASSED] One page, with coherent DMA mappings enabled
[12:40:08] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:40:08] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:40:08] [PASSED] ttm_pool_alloc_order_caching_match
[12:40:08] [PASSED] ttm_pool_alloc_caching_mismatch
[12:40:08] [PASSED] ttm_pool_alloc_order_mismatch
[12:40:08] [PASSED] ttm_pool_free_dma_alloc
[12:40:08] [PASSED] ttm_pool_free_no_dma_alloc
[12:40:08] [PASSED] ttm_pool_fini_basic
[12:40:08] ==================== [PASSED] ttm_pool =====================
[12:40:08] ================ ttm_resource (8 subtests) =================
[12:40:08] ================= ttm_resource_init_basic  =================
[12:40:08] [PASSED] Init resource in TTM_PL_SYSTEM
[12:40:08] [PASSED] Init resource in TTM_PL_VRAM
[12:40:08] [PASSED] Init resource in a private placement
[12:40:08] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:40:08] ============= [PASSED] ttm_resource_init_basic =============
[12:40:08] [PASSED] ttm_resource_init_pinned
[12:40:08] [PASSED] ttm_resource_fini_basic
[12:40:08] [PASSED] ttm_resource_manager_init_basic
[12:40:08] [PASSED] ttm_resource_manager_usage_basic
[12:40:08] [PASSED] ttm_resource_manager_set_used_basic
[12:40:08] [PASSED] ttm_sys_man_alloc_basic
[12:40:08] [PASSED] ttm_sys_man_free_basic
[12:40:08] ================== [PASSED] ttm_resource ===================
[12:40:08] =================== ttm_tt (15 subtests) ===================
[12:40:08] ==================== ttm_tt_init_basic  ====================
[12:40:08] [PASSED] Page-aligned size
[12:40:08] [PASSED] Extra pages requested
[12:40:08] ================ [PASSED] ttm_tt_init_basic ================
[12:40:08] [PASSED] ttm_tt_init_misaligned
[12:40:08] [PASSED] ttm_tt_fini_basic
[12:40:08] [PASSED] ttm_tt_fini_sg
[12:40:08] [PASSED] ttm_tt_fini_shmem
[12:40:08] [PASSED] ttm_tt_create_basic
[12:40:08] [PASSED] ttm_tt_create_invalid_bo_type
[12:40:08] [PASSED] ttm_tt_create_ttm_exists
[12:40:08] [PASSED] ttm_tt_create_failed
[12:40:08] [PASSED] ttm_tt_destroy_basic
[12:40:08] [PASSED] ttm_tt_populate_null_ttm
[12:40:08] [PASSED] ttm_tt_populate_populated_ttm
[12:40:08] [PASSED] ttm_tt_unpopulate_basic
[12:40:08] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:40:08] [PASSED] ttm_tt_swapin_basic
[12:40:08] ===================== [PASSED] ttm_tt ======================
[12:40:08] =================== ttm_bo (14 subtests) ===================
[12:40:08] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[12:40:08] [PASSED] Cannot be interrupted and sleeps
[12:40:08] [PASSED] Cannot be interrupted, locks straight away
[12:40:08] [PASSED] Can be interrupted, sleeps
[12:40:08] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:40:08] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:40:08] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:40:08] [PASSED] ttm_bo_reserve_double_resv
[12:40:08] [PASSED] ttm_bo_reserve_interrupted
[12:40:08] [PASSED] ttm_bo_reserve_deadlock
[12:40:08] [PASSED] ttm_bo_unreserve_basic
[12:40:08] [PASSED] ttm_bo_unreserve_pinned
[12:40:08] [PASSED] ttm_bo_unreserve_bulk
[12:40:08] [PASSED] ttm_bo_fini_basic
[12:40:08] [PASSED] ttm_bo_fini_shared_resv
[12:40:08] [PASSED] ttm_bo_pin_basic
[12:40:08] [PASSED] ttm_bo_pin_unpin_resource
[12:40:08] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:40:08] ===================== [PASSED] ttm_bo ======================
[12:40:08] ============== ttm_bo_validate (21 subtests) ===============
[12:40:08] ============== ttm_bo_init_reserved_sys_man  ===============
[12:40:08] [PASSED] Buffer object for userspace
[12:40:08] [PASSED] Kernel buffer object
[12:40:08] [PASSED] Shared buffer object
[12:40:08] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:40:08] ============== ttm_bo_init_reserved_mock_man  ==============
[12:40:08] [PASSED] Buffer object for userspace
[12:40:08] [PASSED] Kernel buffer object
[12:40:08] [PASSED] Shared buffer object
[12:40:08] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:40:08] [PASSED] ttm_bo_init_reserved_resv
[12:40:08] ================== ttm_bo_validate_basic  ==================
[12:40:08] [PASSED] Buffer object for userspace
[12:40:08] [PASSED] Kernel buffer object
[12:40:08] [PASSED] Shared buffer object
[12:40:08] ============== [PASSED] ttm_bo_validate_basic ==============
[12:40:08] [PASSED] ttm_bo_validate_invalid_placement
[12:40:08] ============= ttm_bo_validate_same_placement  ==============
[12:40:08] [PASSED] System manager
[12:40:08] [PASSED] VRAM manager
[12:40:08] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:40:08] [PASSED] ttm_bo_validate_failed_alloc
[12:40:08] [PASSED] ttm_bo_validate_pinned
[12:40:08] [PASSED] ttm_bo_validate_busy_placement
[12:40:08] ================ ttm_bo_validate_multihop  =================
[12:40:08] [PASSED] Buffer object for userspace
[12:40:08] [PASSED] Kernel buffer object
[12:40:08] [PASSED] Shared buffer object
[12:40:08] ============ [PASSED] ttm_bo_validate_multihop =============
[12:40:08] ========== ttm_bo_validate_no_placement_signaled  ==========
[12:40:08] [PASSED] Buffer object in system domain, no page vector
[12:40:08] [PASSED] Buffer object in system domain with an existing page vector
[12:40:08] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:40:08] ======== ttm_bo_validate_no_placement_not_signaled  ========
[12:40:08] [PASSED] Buffer object for userspace
[12:40:08] [PASSED] Kernel buffer object
[12:40:08] [PASSED] Shared buffer object
[12:40:08] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:40:08] [PASSED] ttm_bo_validate_move_fence_signaled
[12:40:08] ========= ttm_bo_validate_move_fence_not_signaled  =========
[12:40:08] [PASSED] Waits for GPU
[12:40:08] [PASSED] Tries to lock straight away
[12:40:08] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:40:08] [PASSED] ttm_bo_validate_happy_evict
[12:40:08] [PASSED] ttm_bo_validate_all_pinned_evict
[12:40:08] [PASSED] ttm_bo_validate_allowed_only_evict
[12:40:08] [PASSED] ttm_bo_validate_deleted_evict
[12:40:08] [PASSED] ttm_bo_validate_busy_domain_evict
[12:40:08] [PASSED] ttm_bo_validate_evict_gutting
[12:40:08] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[12:40:08] ================= [PASSED] ttm_bo_validate =================
[12:40:08] ============================================================
[12:40:08] Testing complete. Ran 101 tests: passed: 101
[12:40:08] Elapsed time: 11.146s total, 1.729s configuring, 9.200s building, 0.178s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 18+ messages in thread

* ✗ CI.checksparse: warning for Introduce drm sharpness property
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (11 preceding siblings ...)
  2025-10-28 12:40 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-28 12:55 ` Patchwork
  2025-10-28 13:17 ` ✓ Xe.CI.BAT: success " Patchwork
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-10-28 12:55 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: Introduce drm sharpness property
URL   : https://patchwork.freedesktop.org/series/156648/
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 894bc3ad572262b3c29e8cf0352adaa07275dbfc
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/drm_drv.c:449:6: warning: context imbalance in 'drm_dev_enter' - different lock contexts for basic block
+drivers/gpu/drm/drm_drv.c: note: in included file (through include/linux/notifier.h, arch/x86/include/asm/uprobes.h, include/linux/uprobes.h, include/linux/mm_types.h, include/linux/mmzone.h, include/linux/gfp.h, ...):
+drivers/gpu/drm/drm_plane.c:213:24: warning: Using plain integer as NULL pointer
+drivers/gpu/drm/i915/display/intel_alpm.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_casf.c:150:21: error: too long token expansion
+drivers/gpu/drm/i915/display/intel_cdclk.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_ddi.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2086:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2086:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2086:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_hdcp.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_hotplug.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_pps.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file:
+drivers/gpu/drm/i915/intel_uncore.c:1929:1: warning: context imbalance in 'fwtable_read8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1930:1: warning: context imbalance in 'fwtable_read16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1931:1: warning: context imbalance in 'fwtable_read32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1932:1: warning: context imbalance in 'fwtable_read64' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1997:1: warning: context imbalance in 'gen6_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1998:1: warning: context imbalance in 'gen6_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1999:1: warning: context imbalance in 'gen6_write32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2019:1: warning: context imbalance in 'fwtable_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2020:1: warning: context imbalance in 'fwtable_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2021:1: warning: context imbalance in 'fwtable_write32' - unexpected unlock
+./include/linux/srcu.h:389:9: warning: context imbalance in 'drm_dev_exit' - unexpected unlock

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 18+ messages in thread

* ✓ Xe.CI.BAT: success for Introduce drm sharpness property
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (12 preceding siblings ...)
  2025-10-28 12:55 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-10-28 13:17 ` Patchwork
  2025-10-28 18:55 ` ✗ Xe.CI.Full: failure " Patchwork
  2025-11-10 18:25 ` [RESEND 00/10] " Ville Syrjälä
  15 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-10-28 13:17 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 1459 bytes --]

== Series Details ==

Series: Introduce drm sharpness property
URL   : https://patchwork.freedesktop.org/series/156648/
State : success

== Summary ==

CI Bug Log - changes from xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc_BAT -> xe-pw-156648v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-156648v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-plain-flip@c-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html

  
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543


Build changes
-------------

  * Linux: xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc -> xe-pw-156648v1

  IGT_8598: 8598
  xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc: 894bc3ad572262b3c29e8cf0352adaa07275dbfc
  xe-pw-156648v1: 156648v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/index.html

[-- Attachment #2: Type: text/html, Size: 2024 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* ✗ Xe.CI.Full: failure for Introduce drm sharpness property
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (13 preceding siblings ...)
  2025-10-28 13:17 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-10-28 18:55 ` Patchwork
  2025-11-10 18:25 ` [RESEND 00/10] " Ville Syrjälä
  15 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-10-28 18:55 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 61857 bytes --]

== Series Details ==

Series: Introduce drm sharpness property
URL   : https://patchwork.freedesktop.org/series/156648/
State : failure

== Summary ==

CI Bug Log - changes from xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc_FULL -> xe-pw-156648v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-156648v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-156648v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-156648v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_gt_freq@freq_range_idle:
    - shard-dg2-set2:     [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-466/igt@xe_gt_freq@freq_range_idle.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-435/igt@xe_gt_freq@freq_range_idle.html

  
Known issues
------------

  Here are the changes found in xe-pw-156648v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-bmg:          [PASS][3] -> [FAIL][4] ([Intel XE#3718] / [Intel XE#6078])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
    - shard-bmg:          [PASS][5] -> [FAIL][6] ([Intel XE#6078])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [PASS][7] -> [FAIL][8] ([Intel XE#6054]) +3 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-adlp:         [PASS][9] -> [FAIL][10] ([Intel XE#3908]) +1 other test fail
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-adlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#316]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-adlp:         NOTRUN -> [SKIP][12] ([Intel XE#619])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][13] ([Intel XE#316])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2328])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#619])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         [PASS][16] -> [DMESG-FAIL][17] ([Intel XE#4543]) +1 other test dmesg-fail
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][18] ([Intel XE#1124])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#1124]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#1124]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [PASS][21] -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][23] ([Intel XE#367])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#2887]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2887]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#2907])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#2669]) +3 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#2907])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][31] ([Intel XE#787]) +5 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#787]) +13 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][33] -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522] / [Intel XE#6014])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][37] ([Intel XE#6168])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][38] ([Intel XE#1727] / [Intel XE#3113])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2724])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][40] ([Intel XE#4416]) +3 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2252]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#373]) +3 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-adlp:         NOTRUN -> [SKIP][43] ([Intel XE#373]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#373]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2390])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#307])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][47] ([Intel XE#1178])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#455])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][49] ([Intel XE#309]) +2 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
    - shard-bmg:          [PASS][50] -> [SKIP][51] ([Intel XE#2291]) +3 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-adlp:         NOTRUN -> [SKIP][52] ([Intel XE#323])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [PASS][53] -> [SKIP][54] ([Intel XE#1340])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2244])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#703])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-dg2-set2:     [PASS][57] -> [FAIL][58] ([Intel XE#3098] / [Intel XE#5408] / [Intel XE#5416])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-435/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-432/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@bc-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][59] -> [FAIL][60] ([Intel XE#3098])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-435/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@bc-hdmi-a6-dp4.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-432/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@bc-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@bd-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][61] -> [FAIL][62] ([Intel XE#5408] / [Intel XE#5416])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-435/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@bd-hdmi-a6-dp4.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-432/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@bd-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
    - shard-bmg:          [PASS][63] -> [FAIL][64] ([Intel XE#5338]) +1 other test fail
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#1421]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [PASS][66] -> [SKIP][67] ([Intel XE#2316]) +6 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-2/igt@kms_flip@2x-plain-flip.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][68] -> [FAIL][69] ([Intel XE#301]) +1 other test fail
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@plain-flip-interruptible:
    - shard-adlp:         [PASS][70] -> [DMESG-WARN][71] ([Intel XE#4543]) +1 other test dmesg-warn
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-adlp-9/igt@kms_flip@plain-flip-interruptible.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-1/igt@kms_flip@plain-flip-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-adlp:         NOTRUN -> [SKIP][72] ([Intel XE#455]) +3 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#651]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#2311]) +5 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#656]) +5 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#5390]) +3 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#651])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#651]) +3 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][79] ([Intel XE#6312]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#653]) +7 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#5672])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][82] ([Intel XE#6312]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#2313]) +6 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][84] ([Intel XE#656]) +5 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][85] ([Intel XE#653]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [PASS][86] -> [SKIP][87] ([Intel XE#1503])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-5/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#4298])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][89] -> [SKIP][90] ([Intel XE#3012])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][91] ([Intel XE#2925])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#2927])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#2486])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-adlp:         NOTRUN -> [SKIP][94] ([Intel XE#4596])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#2938])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][96] ([Intel XE#2938])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_rpm@legacy-planes:
    - shard-adlp:         NOTRUN -> [ABORT][97] ([Intel XE#5545])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_pm_rpm@legacy-planes.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][99] ([Intel XE#1406] / [Intel XE#1489])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#1406] / [Intel XE#2893])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][101] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-pr-no-drrs:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@kms_psr@fbc-pr-no-drrs.html

  * igt@kms_psr@fbc-psr-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][106] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@kms_psr@fbc-psr-suspend.html

  * igt@kms_psr@pr-sprite-plane-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][107] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@kms_psr@pr-sprite-plane-move.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][108] -> [FAIL][109] ([Intel XE#4459]) +1 other test fail
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_ccs@ctrl-surf-copy:
    - shard-adlp:         NOTRUN -> [SKIP][110] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_ccs@ctrl-surf-copy.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-dg2-set2:     NOTRUN -> [SKIP][111] ([Intel XE#1123])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-adlp:         NOTRUN -> [SKIP][112] ([Intel XE#1126])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_eudebug@basic-vm-access-faultable:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#4837]) +2 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@xe_eudebug@basic-vm-access-faultable.html

  * igt@xe_eudebug@sysfs-toggle:
    - shard-dg2-set2:     NOTRUN -> [SKIP][114] ([Intel XE#4837]) +4 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@xe_eudebug@sysfs-toggle.html
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#4837]) +3 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@xe_eudebug@sysfs-toggle.html

  * igt@xe_eudebug_online@interrupt-all-set-breakpoint:
    - shard-adlp:         NOTRUN -> [SKIP][116] ([Intel XE#4837] / [Intel XE#5565])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html

  * igt@xe_eudebug_sriov@deny-sriov:
    - shard-bmg:          NOTRUN -> [SKIP][117] ([Intel XE#5793])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@xe_eudebug_sriov@deny-sriov.html

  * igt@xe_evict@evict-cm-threads-small-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#688])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@xe_evict@evict-cm-threads-small-multi-vm.html

  * igt@xe_evict@evict-threads-large:
    - shard-adlp:         NOTRUN -> [SKIP][119] ([Intel XE#261])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_evict@evict-threads-large.html

  * igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate-race:
    - shard-adlp:         NOTRUN -> [FAIL][120] ([Intel XE#5625])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
    - shard-adlp:         NOTRUN -> [SKIP][121] ([Intel XE#1392] / [Intel XE#5575]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][122] ([Intel XE#1392])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-rebind.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-bind:
    - shard-bmg:          NOTRUN -> [SKIP][123] ([Intel XE#2322]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm:
    - shard-adlp:         NOTRUN -> [SKIP][124] ([Intel XE#288] / [Intel XE#5561]) +3 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][125] ([Intel XE#288]) +6 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html

  * igt@xe_exec_reset@close-fd:
    - shard-adlp:         NOTRUN -> [TIMEOUT][126] ([Intel XE#3876]) +1 other test timeout
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_exec_reset@close-fd.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][127] ([Intel XE#3876])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@madvise-split-vma-with-mapping:
    - shard-lnl:          NOTRUN -> [WARN][128] ([Intel XE#5786])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@xe_exec_system_allocator@madvise-split-vma-with-mapping.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][129] ([Intel XE#4943]) +5 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][130] ([Intel XE#4943]) +2 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
    - shard-bmg:          [PASS][131] -> [WARN][132] ([Intel XE#5786])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-3/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-4/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-remap-ro-eocheck:
    - shard-dg2-set2:     NOTRUN -> [SKIP][133] ([Intel XE#4915]) +82 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-remap-ro-eocheck.html

  * igt@xe_exec_system_allocator@twice-mmap:
    - shard-adlp:         NOTRUN -> [SKIP][134] ([Intel XE#4915]) +51 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_exec_system_allocator@twice-mmap.html

  * igt@xe_exec_threads@threads-bal-shared-vm-rebind:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][135] ([Intel XE#3876])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-4/igt@xe_exec_threads@threads-bal-shared-vm-rebind.html

  * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#6281])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-3/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][137] ([Intel XE#6281])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html

  * igt@xe_mmap@pci-membarrier-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][138] ([Intel XE#5100])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-4/igt@xe_mmap@pci-membarrier-parallel.html

  * igt@xe_oa@non-privileged-map-oa-buffer:
    - shard-dg2-set2:     NOTRUN -> [SKIP][139] ([Intel XE#3573]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@xe_oa@non-privileged-map-oa-buffer.html

  * igt@xe_pmu@gt-frequency:
    - shard-lnl:          [PASS][140] -> [FAIL][141] ([Intel XE#5841]) +1 other test fail
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-lnl-1/igt@xe_pmu@gt-frequency.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-2/igt@xe_pmu@gt-frequency.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-dg2-set2:     NOTRUN -> [SKIP][142] ([Intel XE#944])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-bmg:          NOTRUN -> [SKIP][143] ([Intel XE#944])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@xe_query@multigpu-query-hwconfig.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
    - shard-adlp:         [PASS][144] -> [DMESG-FAIL][145] ([Intel XE#3868] / [Intel XE#5213]) +1 other test dmesg-fail
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-adlp-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html

  
#### Possible fixes ####

  * igt@device_reset@unbind-reset-rebind:
    - shard-bmg:          [DMESG-WARN][146] -> [PASS][147]
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-3/igt@device_reset@unbind-reset-rebind.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-4/igt@device_reset@unbind-reset-rebind.html
    - shard-lnl:          [DMESG-WARN][148] -> [PASS][149]
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-lnl-1/igt@device_reset@unbind-reset-rebind.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-7/igt@device_reset@unbind-reset-rebind.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
    - shard-lnl:          [FAIL][150] ([Intel XE#5993]) -> [PASS][151] +3 other tests pass
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][152] ([Intel XE#4543]) -> [PASS][153]
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-bmg:          [SKIP][154] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][155]
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][156] ([Intel XE#6168]) -> [PASS][157]
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [DMESG-WARN][158] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][159]
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-bmg:          [SKIP][160] ([Intel XE#2291]) -> [PASS][161] +3 other tests pass
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [SKIP][162] ([Intel XE#2316]) -> [PASS][163] +1 other test pass
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@dpms-off-confusion@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][164] ([Intel XE#4543]) -> [PASS][165] +7 other tests pass
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-adlp-1/igt@kms_flip@dpms-off-confusion@c-hdmi-a1.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-9/igt@kms_flip@dpms-off-confusion@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-lnl:          [FAIL][166] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][167]
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [INCOMPLETE][168] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][169] +1 other test pass
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [SKIP][170] ([Intel XE#1503]) -> [PASS][171]
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-bmg:          [SKIP][172] ([Intel XE#4596]) -> [PASS][173]
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
    - shard-adlp:         [DMESG-WARN][174] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][175] +2 other tests pass
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-adlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html

  * igt@xe_exec_compute_mode@many-preempt-fence-early:
    - shard-adlp:         [FAIL][176] ([Intel XE#5625]) -> [PASS][177]
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-adlp-3/igt@xe_exec_compute_mode@many-preempt-fence-early.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-2/igt@xe_exec_compute_mode@many-preempt-fence-early.html

  * igt@xe_exec_reset@cm-gt-reset:
    - shard-dg2-set2:     [ABORT][178] -> [PASS][179]
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-466/igt@xe_exec_reset@cm-gt-reset.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-434/igt@xe_exec_reset@cm-gt-reset.html

  
#### Warnings ####

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][180] ([Intel XE#1178]) -> [SKIP][181] ([Intel XE#2341])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-2/igt@kms_content_protection@legacy.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [SKIP][182] ([Intel XE#2341]) -> [FAIL][183] ([Intel XE#1178])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-2/igt@kms_content_protection@lic-type-0.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][184] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][185] ([Intel XE#301])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][186] ([Intel XE#2311]) -> [SKIP][187] ([Intel XE#2312]) +13 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][188] ([Intel XE#2312]) -> [SKIP][189] ([Intel XE#5390]) +4 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][190] ([Intel XE#5390]) -> [SKIP][191] ([Intel XE#2312]) +5 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][192] ([Intel XE#2312]) -> [SKIP][193] ([Intel XE#2311]) +11 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][194] ([Intel XE#2313]) -> [SKIP][195] ([Intel XE#2312]) +14 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][196] ([Intel XE#2312]) -> [SKIP][197] ([Intel XE#2313]) +11 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][198] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][199] ([Intel XE#3544])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][200] ([Intel XE#5021]) -> [SKIP][201] ([Intel XE#4596])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [SKIP][202] ([Intel XE#362]) -> [FAIL][203] ([Intel XE#1729])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][204] ([Intel XE#2509]) -> [SKIP][205] ([Intel XE#2426])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_exec_reset@cm-cat-error:
    - shard-adlp:         [DMESG-FAIL][206] ([Intel XE#3868]) -> [DMESG-WARN][207] ([Intel XE#3868])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-adlp-3/igt@xe_exec_reset@cm-cat-error.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-2/igt@xe_exec_reset@cm-cat-error.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [ABORT][208] ([Intel XE#5466] / [Intel XE#5530]) -> [ABORT][209] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_pm@d3hot-i2c:
    - shard-adlp:         [TIMEOUT][210] ([Intel XE#3876]) -> [SKIP][211] ([Intel XE#5742])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc/shard-adlp-3/igt@xe_pm@d3hot-i2c.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/shard-adlp-2/igt@xe_pm@d3hot-i2c.html

  
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
  [Intel XE#5416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5416
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5672
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
  [Intel XE#5841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5841
  [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
  [Intel XE#6014]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6014
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


Build changes
-------------

  * Linux: xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc -> xe-pw-156648v1

  IGT_8598: 8598
  xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc: 894bc3ad572262b3c29e8cf0352adaa07275dbfc
  xe-pw-156648v1: 156648v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156648v1/index.html

[-- Attachment #2: Type: text/html, Size: 72306 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [RESEND 00/10] Introduce drm sharpness property
  2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
                   ` (14 preceding siblings ...)
  2025-10-28 18:55 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-11-10 18:25 ` Ville Syrjälä
  2025-11-11  7:36   ` Nautiyal, Ankit K
  15 siblings, 1 reply; 18+ messages in thread
From: Ville Syrjälä @ 2025-11-10 18:25 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-gfx, intel-xe, dri-devel, nemesa.garg

On Tue, Oct 28, 2025 at 05:37:36PM +0530, Ankit Nautiyal wrote:
> This is a resend of the patch series [1] originally submitted by
> Nemesa Garg <nemesa.garg@intel.com> to:
> - intel-gfx@lists.freedesktop.org
> - dri-devel@lists.freedesktop.org
> - intel-xe@lists.freedesktop.org
> 
> One of the patches was missed by Patchwork, which caused the xe CI to skip
> running tests for the full series. To ensure proper CI coverage and
> results, I’ve applied the series on top of the latest tree and regenerated
> it using `git format-patch`.
> 
> [1] https://patchwork.freedesktop.org/series/138754/
> 
> 
> --- Original cover letter follows ---
> 
> Many a times images are blurred or upscaled content is also not as
> crisp as original rendered image. Traditional sharpening techniques often
> apply a uniform level of enhancement across entire image, which sometimes
> result in over-sharpening of some areas and potential loss of natural details.
> 
> Intel has come up with Display Engine based adaptive sharpening filter
> with minimal power and performance impact. From LNL onwards, the Display
> hardware can use one of the pipe scaler for adaptive sharpness filter.
> This can be used for both gaming and non-gaming use cases like photos,
> image viewing. It works on a region of pixels depending on the tap size.
> 
> This is an attempt to introduce an adaptive sharpness solution which
> helps in improving the image quality. For this new CRTC property is added.
> The user can set this property with desired sharpness strength value with
> 0-255. A value of 1 representing minimum sharpening strength and 255
> representing maximum sharpness strength. A strength value of 0 means no
> sharpening or sharpening feature disabled.
> It works on a region of pixels depending on the tap size. The coefficients
> are used to generate an alpha value which is used to blend the sharpened
> image to original image.
> 
> Middleware MR link: https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3665
> IGT patchwork link: https://patchwork.freedesktop.org/series/130218/
> 
> Continuing discussions from:  https://patchwork.freedesktop.org/series/129888/
> 
> https://invent.kde.org/plasma/kwin/-/merge_requests/7689
> Got ack from kwin maintainer on the UAPI patch.
> 
> Nemesa Garg (10):
>   drm/drm_crtc: Introduce sharpness strength property
>   drm/i915/display: Introduce HAS_CASF for sharpness support
>   drm/i915/display: Add CASF strength and winsize
>   drm/i915/display: Add filter lut values
>   drm/i915/display: Compute the scaler coefficients
>   drm/i915/display: Add and compute scaler parameter
>   drm/i915/display: Configure the second scaler
>   drm/i915/display: Set and get the casf config
>   drm/i915/display: Enable/disable casf
>   drm/i915/display: Expose sharpness strength property

The i915 part of this needs a rewrite:
- it needs to properly integrated into skl_scaler.c
  instead of reimplementing half of it
- for some reason it's doing stuff in the pre/post
  plane update hooks instead of from the vblank evade
  critical section, which means the updates won't be
  atomic and also can't be executed via DSB
- the state computation is in the wrong place. It should
  be part of compute_config() but now it's somewhere later
  where it's screwing up the prefill stuff again (I can't
  land the final prefill fixes now because this laded in the
  meantime).

> 
>  drivers/gpu/drm/drm_atomic_uapi.c             |   4 +
>  drivers/gpu/drm/drm_crtc.c                    |  35 +++
>  drivers/gpu/drm/i915/Makefile                 |   1 +
>  drivers/gpu/drm/i915/display/intel_casf.c     | 293 ++++++++++++++++++
>  drivers/gpu/drm/i915/display/intel_casf.h     |  22 ++
>  .../gpu/drm/i915/display/intel_casf_regs.h    |  33 ++
>  drivers/gpu/drm/i915/display/intel_crtc.c     |   3 +
>  .../drm/i915/display/intel_crtc_state_dump.c  |   5 +
>  drivers/gpu/drm/i915/display/intel_display.c  |  37 ++-
>  .../drm/i915/display/intel_display_device.h   |   1 +
>  .../drm/i915/display/intel_display_types.h    |  15 +
>  drivers/gpu/drm/i915/display/skl_scaler.c     |  91 +++++-
>  drivers/gpu/drm/i915/display/skl_scaler.h     |   2 +
>  drivers/gpu/drm/xe/Makefile                   |   1 +
>  include/drm/drm_crtc.h                        |  18 ++
>  15 files changed, 548 insertions(+), 13 deletions(-)
>  create mode 100644 drivers/gpu/drm/i915/display/intel_casf.c
>  create mode 100644 drivers/gpu/drm/i915/display/intel_casf.h
>  create mode 100644 drivers/gpu/drm/i915/display/intel_casf_regs.h
> 
> -- 
> 2.45.2

-- 
Ville Syrjälä
Intel

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [RESEND 00/10] Introduce drm sharpness property
  2025-11-10 18:25 ` [RESEND 00/10] " Ville Syrjälä
@ 2025-11-11  7:36   ` Nautiyal, Ankit K
  0 siblings, 0 replies; 18+ messages in thread
From: Nautiyal, Ankit K @ 2025-11-11  7:36 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-gfx, intel-xe, dri-devel, nemesa.garg


On 11/10/2025 11:55 PM, Ville Syrjälä wrote:
> On Tue, Oct 28, 2025 at 05:37:36PM +0530, Ankit Nautiyal wrote:
>> This is a resend of the patch series [1] originally submitted by
>> Nemesa Garg <nemesa.garg@intel.com> to:
>> - intel-gfx@lists.freedesktop.org
>> - dri-devel@lists.freedesktop.org
>> - intel-xe@lists.freedesktop.org
>>
>> One of the patches was missed by Patchwork, which caused the xe CI to skip
>> running tests for the full series. To ensure proper CI coverage and
>> results, I’ve applied the series on top of the latest tree and regenerated
>> it using `git format-patch`.
>>
>> [1] https://patchwork.freedesktop.org/series/138754/
>>
>>
>> --- Original cover letter follows ---
>>
>> Many a times images are blurred or upscaled content is also not as
>> crisp as original rendered image. Traditional sharpening techniques often
>> apply a uniform level of enhancement across entire image, which sometimes
>> result in over-sharpening of some areas and potential loss of natural details.
>>
>> Intel has come up with Display Engine based adaptive sharpening filter
>> with minimal power and performance impact. From LNL onwards, the Display
>> hardware can use one of the pipe scaler for adaptive sharpness filter.
>> This can be used for both gaming and non-gaming use cases like photos,
>> image viewing. It works on a region of pixels depending on the tap size.
>>
>> This is an attempt to introduce an adaptive sharpness solution which
>> helps in improving the image quality. For this new CRTC property is added.
>> The user can set this property with desired sharpness strength value with
>> 0-255. A value of 1 representing minimum sharpening strength and 255
>> representing maximum sharpness strength. A strength value of 0 means no
>> sharpening or sharpening feature disabled.
>> It works on a region of pixels depending on the tap size. The coefficients
>> are used to generate an alpha value which is used to blend the sharpened
>> image to original image.
>>
>> Middleware MR link: https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3665
>> IGT patchwork link: https://patchwork.freedesktop.org/series/130218/
>>
>> Continuing discussions from:  https://patchwork.freedesktop.org/series/129888/
>>
>> https://invent.kde.org/plasma/kwin/-/merge_requests/7689
>> Got ack from kwin maintainer on the UAPI patch.
>>
>> Nemesa Garg (10):
>>    drm/drm_crtc: Introduce sharpness strength property
>>    drm/i915/display: Introduce HAS_CASF for sharpness support
>>    drm/i915/display: Add CASF strength and winsize
>>    drm/i915/display: Add filter lut values
>>    drm/i915/display: Compute the scaler coefficients
>>    drm/i915/display: Add and compute scaler parameter
>>    drm/i915/display: Configure the second scaler
>>    drm/i915/display: Set and get the casf config
>>    drm/i915/display: Enable/disable casf
>>    drm/i915/display: Expose sharpness strength property
> The i915 part of this needs a rewrite:
> - it needs to properly integrated into skl_scaler.c
>    instead of reimplementing half of it
> - for some reason it's doing stuff in the pre/post
>    plane update hooks instead of from the vblank evade
>    critical section, which means the updates won't be
>    atomic and also can't be executed via DSB
> - the state computation is in the wrong place. It should
>    be part of compute_config() but now it's somewhere later
>    where it's screwing up the prefill stuff again (I can't
>    land the final prefill fixes now because this laded in the
>    meantime).

Thanks Ville for the feedback. I will work with Nemesa to work on the 
mentioned points.

Regards,

Ankit


>>   drivers/gpu/drm/drm_atomic_uapi.c             |   4 +
>>   drivers/gpu/drm/drm_crtc.c                    |  35 +++
>>   drivers/gpu/drm/i915/Makefile                 |   1 +
>>   drivers/gpu/drm/i915/display/intel_casf.c     | 293 ++++++++++++++++++
>>   drivers/gpu/drm/i915/display/intel_casf.h     |  22 ++
>>   .../gpu/drm/i915/display/intel_casf_regs.h    |  33 ++
>>   drivers/gpu/drm/i915/display/intel_crtc.c     |   3 +
>>   .../drm/i915/display/intel_crtc_state_dump.c  |   5 +
>>   drivers/gpu/drm/i915/display/intel_display.c  |  37 ++-
>>   .../drm/i915/display/intel_display_device.h   |   1 +
>>   .../drm/i915/display/intel_display_types.h    |  15 +
>>   drivers/gpu/drm/i915/display/skl_scaler.c     |  91 +++++-
>>   drivers/gpu/drm/i915/display/skl_scaler.h     |   2 +
>>   drivers/gpu/drm/xe/Makefile                   |   1 +
>>   include/drm/drm_crtc.h                        |  18 ++
>>   15 files changed, 548 insertions(+), 13 deletions(-)
>>   create mode 100644 drivers/gpu/drm/i915/display/intel_casf.c
>>   create mode 100644 drivers/gpu/drm/i915/display/intel_casf.h
>>   create mode 100644 drivers/gpu/drm/i915/display/intel_casf_regs.h
>>
>> -- 
>> 2.45.2

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2025-11-11  7:36 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-28 12:07 [RESEND 00/10] Introduce drm sharpness property Ankit Nautiyal
2025-10-28 12:07 ` [RESEND 01/10] drm/drm_crtc: Introduce sharpness strength property Ankit Nautiyal
2025-10-28 12:07 ` [RESEND 02/10] drm/i915/display: Introduce HAS_CASF for sharpness support Ankit Nautiyal
2025-10-28 12:07 ` [RESEND 03/10] drm/i915/display: Add CASF strength and winsize Ankit Nautiyal
2025-10-28 12:07 ` [RESEND 04/10] drm/i915/display: Add filter lut values Ankit Nautiyal
2025-10-28 12:07 ` [RESEND 05/10] drm/i915/display: Compute the scaler coefficients Ankit Nautiyal
2025-10-28 12:07 ` [RESEND 06/10] drm/i915/display: Add and compute scaler parameter Ankit Nautiyal
2025-10-28 12:07 ` [RESEND 07/10] drm/i915/display: Configure the second scaler Ankit Nautiyal
2025-10-28 12:07 ` [RESEND 08/10] drm/i915/display: Set and get the casf config Ankit Nautiyal
2025-10-28 12:07 ` [RESEND 09/10] drm/i915/display: Enable/disable casf Ankit Nautiyal
2025-10-28 12:07 ` [RESEND 10/10] drm/i915/display: Expose sharpness strength property Ankit Nautiyal
2025-10-28 12:38 ` ✗ CI.checkpatch: warning for Introduce drm sharpness property Patchwork
2025-10-28 12:40 ` ✓ CI.KUnit: success " Patchwork
2025-10-28 12:55 ` ✗ CI.checksparse: warning " Patchwork
2025-10-28 13:17 ` ✓ Xe.CI.BAT: success " Patchwork
2025-10-28 18:55 ` ✗ Xe.CI.Full: failure " Patchwork
2025-11-10 18:25 ` [RESEND 00/10] " Ville Syrjälä
2025-11-11  7:36   ` Nautiyal, Ankit K

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox