* [PATCH 00/10] Introduce drm sharpness property
@ 2025-03-04 10:28 Nemesa Garg
0 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-03-04 10:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg
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/
Nemesa Garg (10):
drm/i915/display: Introduce sharpness strength property
drm/i915/display: Introduce HAS_CASF macro
drm/i915/display: Add sharpness strength and winsize
drm/i915/display: Add filter lut values
drm/i915/display: Compute the scaler filter coefficients
drm/i915/display: Add and compute scaler parameter
drm/i915/display: Configure the second scaler for sharpness
drm/i915/display: Call the compute function
drm/i915/display: Enable/disable casf
drm/i915/display: Expose casf 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 | 254 ++++++++++++++++++
drivers/gpu/drm/i915/display/intel_casf.h | 23 ++
.../gpu/drm/i915/display/intel_casf_regs.h | 41 +++
drivers/gpu/drm/i915/display/intel_crtc.c | 3 +
.../drm/i915/display/intel_crtc_state_dump.c | 7 +
drivers/gpu/drm/i915/display/intel_display.c | 42 ++-
.../drm/i915/display/intel_display_device.h | 1 +
.../drm/i915/display/intel_display_types.h | 15 ++
drivers/gpu/drm/i915/display/skl_scaler.c | 107 +++++++-
drivers/gpu/drm/i915/display/skl_scaler.h | 1 +
drivers/gpu/drm/xe/Makefile | 1 +
include/drm/drm_crtc.h | 17 ++
15 files changed, 537 insertions(+), 15 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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH 00/10] Introduce drm sharpness property
@ 2025-04-02 12:56 Nemesa Garg
0 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-04-02 12:56 UTC (permalink / raw)
To: intel-gfx, dri-devel, intel-xe; +Cc: Nemesa Garg
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/
Nemesa Garg (10):
drm/i915/display: Introduce sharpness strength property
drm/i915/display: Introduce HAS_CASF for sharpness support
drm/i915/display: Add strength and winsize register
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 | 280 ++++++++++++++++++
drivers/gpu/drm/i915/display/intel_casf.h | 24 ++
.../gpu/drm/i915/display/intel_casf_regs.h | 40 +++
drivers/gpu/drm/i915/display/intel_crtc.c | 3 +
.../drm/i915/display/intel_crtc_state_dump.c | 7 +
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 | 90 +++++-
drivers/gpu/drm/i915/display/skl_scaler.h | 1 +
drivers/gpu/drm/xe/Makefile | 1 +
include/drm/drm_crtc.h | 17 ++
15 files changed, 543 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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH 00/10] Introduce drm sharpness property
@ 2025-04-08 10:24 Nemesa Garg
0 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-04-08 10:24 UTC (permalink / raw)
To: intel-gfx, dri-devel, intel-xe; +Cc: Nemesa Garg
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/
Nemesa Garg (10):
drm/i915/display: Introduce sharpness strength property
drm/i915/display: Introduce HAS_CASF for sharpness support
drm/i915/display: Add strength and winsize register
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 | 280 ++++++++++++++++++
drivers/gpu/drm/i915/display/intel_casf.h | 24 ++
.../gpu/drm/i915/display/intel_casf_regs.h | 40 +++
drivers/gpu/drm/i915/display/intel_crtc.c | 3 +
.../drm/i915/display/intel_crtc_state_dump.c | 7 +
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 | 90 +++++-
drivers/gpu/drm/i915/display/skl_scaler.h | 1 +
drivers/gpu/drm/xe/Makefile | 1 +
include/drm/drm_crtc.h | 17 ++
15 files changed, 543 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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH 00/10] Introduce drm sharpness property
@ 2025-05-19 12:26 Nemesa Garg
2025-07-23 15:25 ` Xaver Hugl
0 siblings, 1 reply; 36+ messages in thread
From: Nemesa Garg @ 2025-05-19 12:26 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg
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/
Nemesa Garg (10):
drm/i915/display: Introduce sharpness strength property
drm/i915/display: Introduce HAS_CASF for sharpness support
drm/i915/display: Add strength and winsize register
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 | 290 ++++++++++++++++++
drivers/gpu/drm/i915/display/intel_casf.h | 24 ++
.../gpu/drm/i915/display/intel_casf_regs.h | 40 +++
drivers/gpu/drm/i915/display/intel_crtc.c | 3 +
.../drm/i915/display/intel_crtc_state_dump.c | 7 +
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 | 90 +++++-
drivers/gpu/drm/i915/display/skl_scaler.h | 1 +
drivers/gpu/drm/xe/Makefile | 1 +
include/drm/drm_crtc.h | 17 +
15 files changed, 553 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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH 00/10] Introduce drm sharpness property
2025-05-19 12:26 Nemesa Garg
@ 2025-07-23 15:25 ` Xaver Hugl
2025-07-24 13:59 ` Garg, Nemesa
2025-08-11 10:23 ` Shankar, Uma
0 siblings, 2 replies; 36+ messages in thread
From: Xaver Hugl @ 2025-07-23 15:25 UTC (permalink / raw)
To: Nemesa Garg; +Cc: intel-gfx, intel-xe, dri-devel
I reviewed the KWin implementation for this
(https://invent.kde.org/plasma/kwin/-/merge_requests/7689), and the
uAPI looks good to me.
- Xaver
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH 00/10] Introduce drm sharpness property
@ 2025-07-24 13:45 Nemesa Garg
2025-07-28 11:42 ` Garg, Nemesa
0 siblings, 1 reply; 36+ messages in thread
From: Nemesa Garg @ 2025-07-24 13:45 UTC (permalink / raw)
To: intel-gfx, dri-devel, intel-xe; +Cc: Nemesa Garg
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/
Nemesa Garg (10):
drm/drm-crtc: Introduce sharpness strength property
drm/i915/display: Introduce HAS_CASF for sharpness support
drm/i915/display: Add strength and winsize register
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 | 24 ++
.../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 | 7 +
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 | 90 +++++-
drivers/gpu/drm/i915/display/skl_scaler.h | 1 +
drivers/gpu/drm/xe/Makefile | 1 +
include/drm/drm_crtc.h | 17 +
15 files changed, 549 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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH 00/10] Introduce drm sharpness property
2025-07-23 15:25 ` Xaver Hugl
@ 2025-07-24 13:59 ` Garg, Nemesa
2025-08-11 10:23 ` Shankar, Uma
1 sibling, 0 replies; 36+ messages in thread
From: Garg, Nemesa @ 2025-07-24 13:59 UTC (permalink / raw)
To: Xaver Hugl
Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
dri-devel@lists.freedesktop.org
Thank you for reviewing the UAPI. Can you please give ack-by on this patch https://patchwork.freedesktop.org/patch/665512/?series=138754&rev=15
Thanks and Regards,
Nemesa
> -----Original Message-----
> From: Xaver Hugl <xaver.hugl@gmail.com>
> Sent: Wednesday, July 23, 2025 8:56 PM
> To: Garg, Nemesa <nemesa.garg@intel.com>
> Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; dri-
> devel@lists.freedesktop.org
> Subject: Re: [PATCH 00/10] Introduce drm sharpness property
>
> I reviewed the KWin implementation for this
> (https://invent.kde.org/plasma/kwin/-/merge_requests/7689), and the uAPI
> looks good to me.
>
> - Xaver
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH 00/10] Introduce drm sharpness property
2025-07-24 13:45 Nemesa Garg
@ 2025-07-28 11:42 ` Garg, Nemesa
0 siblings, 0 replies; 36+ messages in thread
From: Garg, Nemesa @ 2025-07-28 11:42 UTC (permalink / raw)
To: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, Harry.Wentland@amd.com,
Sunpeng.Li@amd.com
Hello Harry, Sunpeng
We have added a new drm crtc property to expose the sharpness strength which user
can use to set the value of sharpness from 0 - 255.
Can you please let us know if this implementation looks good to you?
If so, kindly provide an Ack.
Got ack from Xaver Hugl.
Thanks and Regards,
Nemesa
> -----Original Message-----
> From: Garg, Nemesa <nemesa.garg@intel.com>
> Sent: Thursday, July 24, 2025 7:16 PM
> To: intel-gfx@lists.freedesktop.org; dri-devel@lists.freedesktop.org; intel-
> xe@lists.freedesktop.org
> Cc: Garg, Nemesa <nemesa.garg@intel.com>
> Subject: [PATCH 00/10] Introduce drm sharpness property
>
> 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/
>
> Nemesa Garg (10):
> drm/drm-crtc: Introduce sharpness strength property
> drm/i915/display: Introduce HAS_CASF for sharpness support
> drm/i915/display: Add strength and winsize register
> 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 | 24 ++
> .../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 | 7 +
> 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 | 90 +++++-
> drivers/gpu/drm/i915/display/skl_scaler.h | 1 +
> drivers/gpu/drm/xe/Makefile | 1 +
> include/drm/drm_crtc.h | 17 +
> 15 files changed, 549 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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH 00/10] Introduce drm sharpness property
@ 2025-08-07 9:28 Nemesa Garg
2025-08-07 9:28 ` [PATCH 01/10] drm/drm_crtc: Introduce sharpness strength property Nemesa Garg
` (16 more replies)
0 siblings, 17 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg
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/
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 strength and winsize register
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 | 24 ++
.../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 | 7 +
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 | 90 +++++-
drivers/gpu/drm/i915/display/skl_scaler.h | 2 +
drivers/gpu/drm/xe/Makefile | 1 +
include/drm/drm_crtc.h | 18 ++
15 files changed, 551 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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH 01/10] drm/drm_crtc: Introduce sharpness strength property
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
@ 2025-08-07 9:28 ` Nemesa Garg
2025-08-18 6:06 ` G M, Adarsh
2025-08-07 9:28 ` [PATCH 02/10] drm/i915/display: Introduce HAS_CASF for sharpness support Nemesa Garg
` (15 subsequent siblings)
16 siblings, 1 reply; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, Ankit Nautiyal
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>
---
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 ecc73d52bfae..2302c2bea28a 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 caa56e039da2..bcdbde681986 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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH 02/10] drm/i915/display: Introduce HAS_CASF for sharpness support
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
2025-08-07 9:28 ` [PATCH 01/10] drm/drm_crtc: Introduce sharpness strength property Nemesa Garg
@ 2025-08-07 9:28 ` Nemesa Garg
2025-08-07 9:28 ` [PATCH 03/10] drm/i915/display: Add strength and winsize register Nemesa Garg
` (14 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, Ankit Nautiyal
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]
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_state_dump.c | 7 +++++++
drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
2 files changed, 8 insertions(+)
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 0c7f91046996..bc6a041cec13 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
@@ -373,6 +373,13 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
intel_vdsc_state_dump(&p, 0, pipe_config);
+ if (HAS_CASF(display)) {
+ 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_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 4308822f0415..7f76215195d8 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -145,6 +145,7 @@ struct intel_display_platforms {
#define HAS_ASYNC_FLIPS(__display) (DISPLAY_VER(__display) >= 5)
#define HAS_AS_SDP(__display) (DISPLAY_VER(__display) >= 13)
#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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH 03/10] drm/i915/display: Add strength and winsize register
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
2025-08-07 9:28 ` [PATCH 01/10] drm/drm_crtc: Introduce sharpness strength property Nemesa Garg
2025-08-07 9:28 ` [PATCH 02/10] drm/i915/display: Introduce HAS_CASF for sharpness support Nemesa Garg
@ 2025-08-07 9:28 ` Nemesa Garg
2025-08-07 9:28 ` [PATCH 04/10] drm/i915/display: Add filter lut values Nemesa Garg
` (13 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, Ankit Nautiyal
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 8945 bytes --]
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.
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
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 | 109 ++++++++++++++++++
drivers/gpu/drm/i915/display/intel_casf.h | 17 +++
.../gpu/drm/i915/display/intel_casf_regs.h | 22 ++++
.../drm/i915/display/intel_display_types.h | 7 ++
drivers/gpu/drm/i915/display/skl_scaler.c | 1 +
drivers/gpu/drm/xe/Makefile | 1 +
7 files changed, 158 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 853543443072..56b5aec496f3 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -227,6 +227,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..6a877c7c76fa
--- /dev/null
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -0,0 +1,109 @@
+// 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_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);
+ }
+}
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..83523fe66c48
--- /dev/null
+++ b/drivers/gpu/drm/i915/display/intel_casf.h
@@ -0,0 +1,17 @@
+/* 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);
+
+#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..c24ba281ae37
--- /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_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 35596f3921e8..b62a07236913 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -943,6 +943,12 @@ struct intel_csc_matrix {
u16 postoff[3];
};
+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.
@@ -979,6 +985,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 cd7ebbeb9508..375b8c644923 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 8e0c3412a757..5e10377b15c2 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -223,6 +223,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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH 04/10] drm/i915/display: Add filter lut values
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (2 preceding siblings ...)
2025-08-07 9:28 ` [PATCH 03/10] drm/i915/display: Add strength and winsize register Nemesa Garg
@ 2025-08-07 9:28 ` Nemesa Garg
2025-08-07 9:28 ` [PATCH 05/10] drm/i915/display: Compute the scaler coefficients Nemesa Garg
` (12 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, Ankit Nautiyal
Add the register bits related to filter lut values.
These values are golden values and these value has
to be loaded one time while enabling the casf.
v2: update commit message[Ankit]
v3: Make filter_load fn name same[Jani]
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 | 40 +++++++++++++++++++
drivers/gpu/drm/i915/display/intel_casf.h | 3 ++
.../gpu/drm/i915/display/intel_casf_regs.h | 11 +++++
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 6a877c7c76fa..18a8a621016a 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -30,6 +30,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,
+};
+
+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);
diff --git a/drivers/gpu/drm/i915/display/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
index 83523fe66c48..3edbc3ad51cf 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.h
+++ b/drivers/gpu/drm/i915/display/intel_casf.h
@@ -9,9 +9,12 @@
#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);
void intel_casf_sharpness_get_config(struct intel_crtc_state *crtc_state);
+void intel_casf_filter_lut_load(struct intel_crtc *crtc,
+ 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
index c24ba281ae37..b96950a48335 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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH 05/10] drm/i915/display: Compute the scaler coefficients
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (3 preceding siblings ...)
2025-08-07 9:28 ` [PATCH 04/10] drm/i915/display: Add filter lut values Nemesa Garg
@ 2025-08-07 9:28 ` Nemesa Garg
2025-08-07 9:28 ` [PATCH 06/10] drm/i915/display: Add and compute scaler parameter Nemesa Garg
` (11 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, Ankit Nautiyal
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.
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]
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 | 104 ++++++++++++++++++
drivers/gpu/drm/i915/display/intel_casf.h | 1 +
.../drm/i915/display/intel_display_types.h | 8 ++
3 files changed, 113 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
index 18a8a621016a..607829df06d9 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -15,6 +15,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)
*
@@ -125,6 +132,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;
}
@@ -147,3 +156,98 @@ void intel_casf_sharpness_get_config(struct intel_crtc_state *crtc_state)
REG_FIELD_GET(FILTER_SIZE_MASK, sharp);
}
}
+
+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]);
+ }
+}
diff --git a/drivers/gpu/drm/i915/display/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
index 3edbc3ad51cf..031d2e41701e 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_filter_lut_load(struct intel_crtc *crtc,
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 b62a07236913..eec3c007fd09 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -943,7 +943,15 @@ struct intel_csc_matrix {
u16 postoff[3];
};
+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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH 06/10] drm/i915/display: Add and compute scaler parameter
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (4 preceding siblings ...)
2025-08-07 9:28 ` [PATCH 05/10] drm/i915/display: Compute the scaler coefficients Nemesa Garg
@ 2025-08-07 9:28 ` Nemesa Garg
2025-08-07 9:28 ` [PATCH 07/10] drm/i915/display: Configure the second scaler Nemesa Garg
` (10 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, Ankit Nautiyal
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]
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 | 2 +
drivers/gpu/drm/i915/display/skl_scaler.c | 46 +++++++++++++++++++++++
drivers/gpu/drm/i915/display/skl_scaler.h | 2 +
3 files changed, 50 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
index 607829df06d9..b2d2aea9108b 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -10,7 +10,9 @@
#include "intel_casf.h"
#include "intel_casf_regs.h"
#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)
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
index 375b8c644923..a1080958797c 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 12a19016c5f6..f2256984a97e 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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH 07/10] drm/i915/display: Configure the second scaler
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (5 preceding siblings ...)
2025-08-07 9:28 ` [PATCH 06/10] drm/i915/display: Add and compute scaler parameter Nemesa Garg
@ 2025-08-07 9:28 ` Nemesa Garg
2025-08-07 9:28 ` [PATCH 08/10] drm/i915/display: Set and get the casf config Nemesa Garg
` (9 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, Ankit Nautiyal
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 b2d2aea9108b..d5d5b967bf05 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 031d2e41701e..a546f88a65bb 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_filter_lut_load(struct intel_crtc *crtc,
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 c1a3a95c65f0..a2358b626752 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"
@@ -4260,7 +4261,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 a1080958797c..0dde38a2d933 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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH 08/10] drm/i915/display: Set and get the casf config
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (6 preceding siblings ...)
2025-08-07 9:28 ` [PATCH 07/10] drm/i915/display: Configure the second scaler Nemesa Garg
@ 2025-08-07 9:28 ` Nemesa Garg
2025-08-07 9:28 ` [PATCH 09/10] drm/i915/display: Enable/disable casf Nemesa Garg
` (8 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, Ankit Nautiyal
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 | 18 ++++++++++++------
2 files changed, 19 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index a2358b626752..71df736a6c83 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -4259,6 +4259,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) ||
@@ -5321,6 +5325,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 0dde38a2d933..1211f3fa43e5 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.c
+++ b/drivers/gpu/drm/i915/display/skl_scaler.c
@@ -981,16 +981,22 @@ void skl_scaler_get_config(struct intel_crtc_state *crtc_state)
continue;
id = i;
- crtc_state->pch_pfit.enabled = true;
+
+ 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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH 09/10] drm/i915/display: Enable/disable casf
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (7 preceding siblings ...)
2025-08-07 9:28 ` [PATCH 08/10] drm/i915/display: Set and get the casf config Nemesa Garg
@ 2025-08-07 9:28 ` Nemesa Garg
2025-08-07 9:28 ` [PATCH 10/10] drm/i915/display: Expose sharpness strength property Nemesa Garg
` (7 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, Ankit Nautiyal
To enable or disable the sharpness check the
casf_enable flag. While enabling the sharpness
write the programmable coefficients, sharpness
register bits and also enable the scaler.
Load the filter lut value which needs to be done
one time while enabling the sharpness.
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.
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 | 30 ++++++++++++++++++++
drivers/gpu/drm/i915/display/intel_casf.h | 2 ++
drivers/gpu/drm/i915/display/intel_display.c | 26 +++++++++++++++++
3 files changed, 58 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
index d5d5b967bf05..5570c83f3890 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -261,3 +261,33 @@ void intel_casf_scaler_compute_config(struct intel_crtc_state *crtc_state)
filter_coeff[i]);
}
}
+
+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;
+
+ 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;
+
+ 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)
+{
+ 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/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
index a546f88a65bb..21baaaa6baf8 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.h
+++ b/drivers/gpu/drm/i915/display/intel_casf.h
@@ -18,5 +18,7 @@ void intel_casf_filter_lut_load(struct intel_crtc *crtc,
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);
+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_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 71df736a6c83..8605eda7ae1e 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -1041,6 +1041,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
@@ -1196,6 +1214,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))
@@ -6748,6 +6769,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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [PATCH 10/10] drm/i915/display: Expose sharpness strength property
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (8 preceding siblings ...)
2025-08-07 9:28 ` [PATCH 09/10] drm/i915/display: Enable/disable casf Nemesa Garg
@ 2025-08-07 9:28 ` Nemesa Garg
2025-08-07 9:41 ` ✗ CI.checkpatch: warning for Introduce drm sharpness property Patchwork
` (6 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-08-07 9:28 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, Ankit Nautiyal
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 a187db6df2d3..4102087aee62 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc.c
@@ -390,6 +390,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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* ✗ CI.checkpatch: warning for Introduce drm sharpness property
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (9 preceding siblings ...)
2025-08-07 9:28 ` [PATCH 10/10] drm/i915/display: Expose sharpness strength property Nemesa Garg
@ 2025-08-07 9:41 ` Patchwork
2025-08-07 9:42 ` ✓ CI.KUnit: success " Patchwork
` (5 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-08-07 9:41 UTC (permalink / raw)
To: Nemesa Garg; +Cc: intel-xe
== Series Details ==
Series: Introduce drm sharpness property
URL : https://patchwork.freedesktop.org/series/152615/
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
c298eac5978c38dcc62a70c0d73c91765e7cc296
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 899136806e6be2fd3909412e22373f5d5e7331ce
Author: Nemesa Garg <nemesa.garg@intel.com>
Date: Thu Aug 7 14:58:41 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 e75fad13646be2a02f21a8e9d438b3150108950d drm-intel
1fce5ba678fb drm/drm_crtc: Introduce sharpness strength property
4cc9b6e5c290 drm/i915/display: Introduce HAS_CASF for sharpness support
b373bc69df9c drm/i915/display: Add strength and winsize register
-:35: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#35:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 188 lines checked
c39638068e41 drm/i915/display: Add filter lut values
5737ee8a1be4 drm/i915/display: Compute the scaler coefficients
efa36bb57013 drm/i915/display: Add and compute scaler parameter
88f642334197 drm/i915/display: Configure the second scaler
5e57135f5a43 drm/i915/display: Set and get the casf config
e6101fe51428 drm/i915/display: Enable/disable casf
899136806e6b drm/i915/display: Expose sharpness strength property
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✓ CI.KUnit: success for Introduce drm sharpness property
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (10 preceding siblings ...)
2025-08-07 9:41 ` ✗ CI.checkpatch: warning for Introduce drm sharpness property Patchwork
@ 2025-08-07 9:42 ` Patchwork
2025-08-07 9:57 ` ✗ CI.checksparse: warning " Patchwork
` (4 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-08-07 9:42 UTC (permalink / raw)
To: Nemesa Garg; +Cc: intel-xe
== Series Details ==
Series: Introduce drm sharpness property
URL : https://patchwork.freedesktop.org/series/152615/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[09:41:09] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:41:13] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[09:41:41] Starting KUnit Kernel (1/1)...
[09:41:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:41:41] ================== guc_buf (11 subtests) ===================
[09:41:41] [PASSED] test_smallest
[09:41:41] [PASSED] test_largest
[09:41:41] [PASSED] test_granular
[09:41:41] [PASSED] test_unique
[09:41:41] [PASSED] test_overlap
[09:41:41] [PASSED] test_reusable
[09:41:41] [PASSED] test_too_big
[09:41:41] [PASSED] test_flush
[09:41:41] [PASSED] test_lookup
[09:41:41] [PASSED] test_data
[09:41:41] [PASSED] test_class
[09:41:41] ===================== [PASSED] guc_buf =====================
[09:41:41] =================== guc_dbm (7 subtests) ===================
[09:41:41] [PASSED] test_empty
[09:41:41] [PASSED] test_default
[09:41:41] ======================== test_size ========================
[09:41:41] [PASSED] 4
[09:41:41] [PASSED] 8
[09:41:41] [PASSED] 32
[09:41:41] [PASSED] 256
[09:41:41] ==================== [PASSED] test_size ====================
[09:41:41] ======================= test_reuse ========================
[09:41:41] [PASSED] 4
[09:41:41] [PASSED] 8
[09:41:41] [PASSED] 32
[09:41:41] [PASSED] 256
[09:41:41] =================== [PASSED] test_reuse ====================
[09:41:41] =================== test_range_overlap ====================
[09:41:41] [PASSED] 4
[09:41:41] [PASSED] 8
[09:41:41] [PASSED] 32
[09:41:41] [PASSED] 256
[09:41:41] =============== [PASSED] test_range_overlap ================
[09:41:41] =================== test_range_compact ====================
[09:41:41] [PASSED] 4
[09:41:41] [PASSED] 8
[09:41:41] [PASSED] 32
[09:41:41] [PASSED] 256
[09:41:41] =============== [PASSED] test_range_compact ================
[09:41:41] ==================== test_range_spare =====================
[09:41:41] [PASSED] 4
[09:41:41] [PASSED] 8
[09:41:41] [PASSED] 32
[09:41:41] [PASSED] 256
[09:41:41] ================ [PASSED] test_range_spare =================
[09:41:41] ===================== [PASSED] guc_dbm =====================
[09:41:41] =================== guc_idm (6 subtests) ===================
[09:41:41] [PASSED] bad_init
[09:41:41] [PASSED] no_init
[09:41:41] [PASSED] init_fini
[09:41:41] [PASSED] check_used
[09:41:41] [PASSED] check_quota
[09:41:41] [PASSED] check_all
[09:41:41] ===================== [PASSED] guc_idm =====================
[09:41:41] ================== no_relay (3 subtests) ===================
[09:41:41] [PASSED] xe_drops_guc2pf_if_not_ready
[09:41:41] [PASSED] xe_drops_guc2vf_if_not_ready
[09:41:41] [PASSED] xe_rejects_send_if_not_ready
[09:41:41] ==================== [PASSED] no_relay =====================
[09:41:41] ================== pf_relay (14 subtests) ==================
[09:41:41] [PASSED] pf_rejects_guc2pf_too_short
[09:41:41] [PASSED] pf_rejects_guc2pf_too_long
[09:41:41] [PASSED] pf_rejects_guc2pf_no_payload
[09:41:41] [PASSED] pf_fails_no_payload
[09:41:41] [PASSED] pf_fails_bad_origin
[09:41:41] [PASSED] pf_fails_bad_type
[09:41:41] [PASSED] pf_txn_reports_error
[09:41:41] [PASSED] pf_txn_sends_pf2guc
[09:41:41] [PASSED] pf_sends_pf2guc
[09:41:41] [SKIPPED] pf_loopback_nop
[09:41:41] [SKIPPED] pf_loopback_echo
[09:41:41] [SKIPPED] pf_loopback_fail
[09:41:41] [SKIPPED] pf_loopback_busy
[09:41:41] [SKIPPED] pf_loopback_retry
[09:41:41] ==================== [PASSED] pf_relay =====================
[09:41:41] ================== vf_relay (3 subtests) ===================
[09:41:41] [PASSED] vf_rejects_guc2vf_too_short
[09:41:41] [PASSED] vf_rejects_guc2vf_too_long
[09:41:41] [PASSED] vf_rejects_guc2vf_no_payload
[09:41:41] ==================== [PASSED] vf_relay =====================
[09:41:41] ===================== lmtt (1 subtest) =====================
[09:41:41] ======================== test_ops =========================
[09:41:41] [PASSED] 2-level
[09:41:41] [PASSED] multi-level
[09:41:41] ==================== [PASSED] test_ops =====================
[09:41:41] ====================== [PASSED] lmtt =======================
[09:41:41] ================= pf_service (11 subtests) =================
[09:41:41] [PASSED] pf_negotiate_any
[09:41:41] [PASSED] pf_negotiate_base_match
[09:41:41] [PASSED] pf_negotiate_base_newer
[09:41:41] [PASSED] pf_negotiate_base_next
[09:41:41] [SKIPPED] pf_negotiate_base_older
[09:41:41] [PASSED] pf_negotiate_base_prev
[09:41:41] [PASSED] pf_negotiate_latest_match
[09:41:41] [PASSED] pf_negotiate_latest_newer
[09:41:41] [PASSED] pf_negotiate_latest_next
[09:41:41] [SKIPPED] pf_negotiate_latest_older
[09:41:41] [SKIPPED] pf_negotiate_latest_prev
[09:41:41] =================== [PASSED] pf_service ====================
[09:41:41] =================== xe_mocs (2 subtests) ===================
[09:41:41] ================ xe_live_mocs_kernel_kunit ================
[09:41:41] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[09:41:41] ================ xe_live_mocs_reset_kunit =================
[09:41:41] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[09:41:41] ==================== [SKIPPED] xe_mocs =====================
[09:41:41] ================= xe_migrate (2 subtests) ==================
[09:41:41] ================= xe_migrate_sanity_kunit =================
[09:41:41] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[09:41:41] ================== xe_validate_ccs_kunit ==================
[09:41:41] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[09:41:41] =================== [SKIPPED] xe_migrate ===================
[09:41:41] ================== xe_dma_buf (1 subtest) ==================
[09:41:41] ==================== xe_dma_buf_kunit =====================
[09:41:41] ================ [SKIPPED] xe_dma_buf_kunit ================
[09:41:41] =================== [SKIPPED] xe_dma_buf ===================
[09:41:41] ================= xe_bo_shrink (1 subtest) =================
[09:41:41] =================== xe_bo_shrink_kunit ====================
[09:41:41] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[09:41:41] ================== [SKIPPED] xe_bo_shrink ==================
[09:41:41] ==================== xe_bo (2 subtests) ====================
[09:41:41] ================== xe_ccs_migrate_kunit ===================
[09:41:41] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[09:41:41] ==================== xe_bo_evict_kunit ====================
[09:41:41] =============== [SKIPPED] xe_bo_evict_kunit ================
[09:41:41] ===================== [SKIPPED] xe_bo ======================
[09:41:41] ==================== args (11 subtests) ====================
[09:41:41] [PASSED] count_args_test
[09:41:41] [PASSED] call_args_example
[09:41:41] [PASSED] call_args_test
[09:41:41] [PASSED] drop_first_arg_example
[09:41:41] [PASSED] drop_first_arg_test
[09:41:41] [PASSED] first_arg_example
[09:41:41] [PASSED] first_arg_test
[09:41:41] [PASSED] last_arg_example
[09:41:41] [PASSED] last_arg_test
[09:41:41] [PASSED] pick_arg_example
[09:41:41] [PASSED] sep_comma_example
[09:41:41] ====================== [PASSED] args =======================
[09:41:41] =================== xe_pci (3 subtests) ====================
[09:41:41] ==================== check_graphics_ip ====================
[09:41:41] [PASSED] 12.70 Xe_LPG
[09:41:41] [PASSED] 12.71 Xe_LPG
[09:41:41] [PASSED] 12.74 Xe_LPG+
[09:41:41] [PASSED] 20.01 Xe2_HPG
[09:41:41] [PASSED] 20.02 Xe2_HPG
[09:41:41] [PASSED] 20.04 Xe2_LPG
[09:41:41] [PASSED] 30.00 Xe3_LPG
[09:41:41] [PASSED] 30.01 Xe3_LPG
[09:41:41] [PASSED] 30.03 Xe3_LPG
[09:41:41] ================ [PASSED] check_graphics_ip ================
[09:41:41] ===================== check_media_ip ======================
[09:41:41] [PASSED] 13.00 Xe_LPM+
[09:41:41] [PASSED] 13.01 Xe2_HPM
[09:41:41] [PASSED] 20.00 Xe2_LPM
[09:41:41] [PASSED] 30.00 Xe3_LPM
[09:41:41] [PASSED] 30.02 Xe3_LPM
[09:41:41] ================= [PASSED] check_media_ip ==================
[09:41:41] ================= check_platform_gt_count =================
[09:41:41] [PASSED] 0x9A60 (TIGERLAKE)
[09:41:41] [PASSED] 0x9A68 (TIGERLAKE)
[09:41:41] [PASSED] 0x9A70 (TIGERLAKE)
[09:41:41] [PASSED] 0x9A40 (TIGERLAKE)
[09:41:41] [PASSED] 0x9A49 (TIGERLAKE)
[09:41:41] [PASSED] 0x9A59 (TIGERLAKE)
[09:41:41] [PASSED] 0x9A78 (TIGERLAKE)
[09:41:41] [PASSED] 0x9AC0 (TIGERLAKE)
[09:41:41] [PASSED] 0x9AC9 (TIGERLAKE)
[09:41:41] [PASSED] 0x9AD9 (TIGERLAKE)
[09:41:41] [PASSED] 0x9AF8 (TIGERLAKE)
[09:41:41] [PASSED] 0x4C80 (ROCKETLAKE)
[09:41:41] [PASSED] 0x4C8A (ROCKETLAKE)
[09:41:41] [PASSED] 0x4C8B (ROCKETLAKE)
[09:41:41] [PASSED] 0x4C8C (ROCKETLAKE)
[09:41:41] [PASSED] 0x4C90 (ROCKETLAKE)
[09:41:41] [PASSED] 0x4C9A (ROCKETLAKE)
[09:41:41] [PASSED] 0x4680 (ALDERLAKE_S)
[09:41:41] [PASSED] 0x4682 (ALDERLAKE_S)
[09:41:41] [PASSED] 0x4688 (ALDERLAKE_S)
[09:41:41] [PASSED] 0x468A (ALDERLAKE_S)
[09:41:41] [PASSED] 0x468B (ALDERLAKE_S)
[09:41:41] [PASSED] 0x4690 (ALDERLAKE_S)
[09:41:41] [PASSED] 0x4692 (ALDERLAKE_S)
[09:41:41] [PASSED] 0x4693 (ALDERLAKE_S)
[09:41:41] [PASSED] 0x46A0 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46A1 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46A2 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46A3 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46A6 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46A8 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46AA (ALDERLAKE_P)
[09:41:41] [PASSED] 0x462A (ALDERLAKE_P)
[09:41:41] [PASSED] 0x4626 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x4628 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46B0 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46B1 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46B2 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46B3 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46C0 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46C1 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46C2 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46C3 (ALDERLAKE_P)
[09:41:41] [PASSED] 0x46D0 (ALDERLAKE_N)
[09:41:41] [PASSED] 0x46D1 (ALDERLAKE_N)
[09:41:41] [PASSED] 0x46D2 (ALDERLAKE_N)
[09:41:41] [PASSED] 0x46D3 (ALDERLAKE_N)
[09:41:41] [PASSED] 0x46D4 (ALDERLAKE_N)
[09:41:41] [PASSED] 0xA721 (ALDERLAKE_P)
[09:41:41] [PASSED] 0xA7A1 (ALDERLAKE_P)
[09:41:41] [PASSED] 0xA7A9 (ALDERLAKE_P)
[09:41:41] [PASSED] 0xA7AC (ALDERLAKE_P)
[09:41:41] [PASSED] 0xA7AD (ALDERLAKE_P)
[09:41:41] [PASSED] 0xA720 (ALDERLAKE_P)
[09:41:41] [PASSED] 0xA7A0 (ALDERLAKE_P)
[09:41:41] [PASSED] 0xA7A8 (ALDERLAKE_P)
[09:41:41] [PASSED] 0xA7AA (ALDERLAKE_P)
[09:41:41] [PASSED] 0xA7AB (ALDERLAKE_P)
[09:41:41] [PASSED] 0xA780 (ALDERLAKE_S)
[09:41:41] [PASSED] 0xA781 (ALDERLAKE_S)
[09:41:41] [PASSED] 0xA782 (ALDERLAKE_S)
[09:41:41] [PASSED] 0xA783 (ALDERLAKE_S)
[09:41:41] [PASSED] 0xA788 (ALDERLAKE_S)
[09:41:41] [PASSED] 0xA789 (ALDERLAKE_S)
[09:41:41] [PASSED] 0xA78A (ALDERLAKE_S)
[09:41:41] [PASSED] 0xA78B (ALDERLAKE_S)
[09:41:41] [PASSED] 0x4905 (DG1)
[09:41:41] [PASSED] 0x4906 (DG1)
[09:41:41] [PASSED] 0x4907 (DG1)
[09:41:41] [PASSED] 0x4908 (DG1)
[09:41:41] [PASSED] 0x4909 (DG1)
[09:41:41] [PASSED] 0x56C0 (DG2)
[09:41:41] [PASSED] 0x56C2 (DG2)
[09:41:41] [PASSED] 0x56C1 (DG2)
[09:41:41] [PASSED] 0x7D51 (METEORLAKE)
[09:41:41] [PASSED] 0x7DD1 (METEORLAKE)
[09:41:41] [PASSED] 0x7D41 (METEORLAKE)
[09:41:41] [PASSED] 0x7D67 (METEORLAKE)
[09:41:41] [PASSED] 0xB640 (METEORLAKE)
[09:41:41] [PASSED] 0x56A0 (DG2)
[09:41:41] [PASSED] 0x56A1 (DG2)
[09:41:41] [PASSED] 0x56A2 (DG2)
[09:41:41] [PASSED] 0x56BE (DG2)
[09:41:41] [PASSED] 0x56BF (DG2)
[09:41:41] [PASSED] 0x5690 (DG2)
[09:41:41] [PASSED] 0x5691 (DG2)
[09:41:41] [PASSED] 0x5692 (DG2)
[09:41:41] [PASSED] 0x56A5 (DG2)
[09:41:41] [PASSED] 0x56A6 (DG2)
[09:41:41] [PASSED] 0x56B0 (DG2)
[09:41:41] [PASSED] 0x56B1 (DG2)
[09:41:41] [PASSED] 0x56BA (DG2)
[09:41:41] [PASSED] 0x56BB (DG2)
[09:41:41] [PASSED] 0x56BC (DG2)
[09:41:41] [PASSED] 0x56BD (DG2)
[09:41:41] [PASSED] 0x5693 (DG2)
[09:41:41] [PASSED] 0x5694 (DG2)
[09:41:41] [PASSED] 0x5695 (DG2)
[09:41:41] [PASSED] 0x56A3 (DG2)
[09:41:41] [PASSED] 0x56A4 (DG2)
[09:41:41] [PASSED] 0x56B2 (DG2)
[09:41:41] [PASSED] 0x56B3 (DG2)
[09:41:41] [PASSED] 0x5696 (DG2)
[09:41:41] [PASSED] 0x5697 (DG2)
[09:41:41] [PASSED] 0xB69 (PVC)
[09:41:41] [PASSED] 0xB6E (PVC)
[09:41:41] [PASSED] 0xBD4 (PVC)
[09:41:41] [PASSED] 0xBD5 (PVC)
[09:41:41] [PASSED] 0xBD6 (PVC)
[09:41:41] [PASSED] 0xBD7 (PVC)
[09:41:41] [PASSED] 0xBD8 (PVC)
[09:41:41] [PASSED] 0xBD9 (PVC)
[09:41:41] [PASSED] 0xBDA (PVC)
[09:41:41] [PASSED] 0xBDB (PVC)
[09:41:41] [PASSED] 0xBE0 (PVC)
[09:41:41] [PASSED] 0xBE1 (PVC)
[09:41:41] [PASSED] 0xBE5 (PVC)
[09:41:41] [PASSED] 0x7D40 (METEORLAKE)
[09:41:41] [PASSED] 0x7D45 (METEORLAKE)
[09:41:41] [PASSED] 0x7D55 (METEORLAKE)
[09:41:41] [PASSED] 0x7D60 (METEORLAKE)
[09:41:41] [PASSED] 0x7DD5 (METEORLAKE)
[09:41:41] [PASSED] 0x6420 (LUNARLAKE)
[09:41:41] [PASSED] 0x64A0 (LUNARLAKE)
[09:41:41] [PASSED] 0x64B0 (LUNARLAKE)
[09:41:41] [PASSED] 0xE202 (BATTLEMAGE)
[09:41:41] [PASSED] 0xE209 (BATTLEMAGE)
[09:41:41] [PASSED] 0xE20B (BATTLEMAGE)
[09:41:41] [PASSED] 0xE20C (BATTLEMAGE)
[09:41:41] [PASSED] 0xE20D (BATTLEMAGE)
[09:41:41] [PASSED] 0xE210 (BATTLEMAGE)
[09:41:41] [PASSED] 0xE211 (BATTLEMAGE)
[09:41:41] [PASSED] 0xE212 (BATTLEMAGE)
[09:41:41] [PASSED] 0xE216 (BATTLEMAGE)
[09:41:41] [PASSED] 0xE220 (BATTLEMAGE)
[09:41:41] [PASSED] 0xE221 (BATTLEMAGE)
[09:41:41] [PASSED] 0xE222 (BATTLEMAGE)
[09:41:41] [PASSED] 0xE223 (BATTLEMAGE)
[09:41:41] [PASSED] 0xB080 (PANTHERLAKE)
[09:41:41] [PASSED] 0xB081 (PANTHERLAKE)
[09:41:41] [PASSED] 0xB082 (PANTHERLAKE)
[09:41:41] [PASSED] 0xB083 (PANTHERLAKE)
[09:41:41] [PASSED] 0xB084 (PANTHERLAKE)
[09:41:41] [PASSED] 0xB085 (PANTHERLAKE)
[09:41:41] [PASSED] 0xB086 (PANTHERLAKE)
[09:41:41] [PASSED] 0xB087 (PANTHERLAKE)
[09:41:41] [PASSED] 0xB08F (PANTHERLAKE)
[09:41:41] [PASSED] 0xB090 (PANTHERLAKE)
[09:41:41] [PASSED] 0xB0A0 (PANTHERLAKE)
[09:41:41] [PASSED] 0xB0B0 (PANTHERLAKE)
[09:41:41] [PASSED] 0xFD80 (PANTHERLAKE)
[09:41:41] [PASSED] 0xFD81 (PANTHERLAKE)
[09:41:41] ============= [PASSED] check_platform_gt_count =============
[09:41:41] ===================== [PASSED] xe_pci ======================
[09:41:41] =================== xe_rtp (2 subtests) ====================
[09:41:41] =============== xe_rtp_process_to_sr_tests ================
[09:41:41] [PASSED] coalesce-same-reg
[09:41:41] [PASSED] no-match-no-add
[09:41:41] [PASSED] match-or
[09:41:41] [PASSED] match-or-xfail
[09:41:41] [PASSED] no-match-no-add-multiple-rules
[09:41:41] [PASSED] two-regs-two-entries
[09:41:41] [PASSED] clr-one-set-other
[09:41:41] [PASSED] set-field
[09:41:41] [PASSED] conflict-duplicate
[09:41:41] [PASSED] conflict-not-disjoint
[09:41:41] [PASSED] conflict-reg-type
[09:41:41] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[09:41:41] ================== xe_rtp_process_tests ===================
[09:41:41] [PASSED] active1
[09:41:41] [PASSED] active2
[09:41:41] [PASSED] active-inactive
[09:41:41] [PASSED] inactive-active
[09:41:41] [PASSED] inactive-1st_or_active-inactive
[09:41:41] [PASSED] inactive-2nd_or_active-inactive
[09:41:41] [PASSED] inactive-last_or_active-inactive
[09:41:41] [PASSED] inactive-no_or_active-inactive
[09:41:41] ============== [PASSED] xe_rtp_process_tests ===============
[09:41:41] ===================== [PASSED] xe_rtp ======================
[09:41:41] ==================== xe_wa (1 subtest) =====================
[09:41:41] ======================== xe_wa_gt =========================
[09:41:41] [PASSED] TIGERLAKE (B0)
[09:41:41] [PASSED] DG1 (A0)
[09:41:41] [PASSED] DG1 (B0)
[09:41:41] [PASSED] ALDERLAKE_S (A0)
[09:41:41] [PASSED] ALDERLAKE_S (B0)
[09:41:41] [PASSED] ALDERLAKE_S (C0)
[09:41:41] [PASSED] ALDERLAKE_S (D0)
[09:41:41] [PASSED] ALDERLAKE_P (A0)
[09:41:41] [PASSED] ALDERLAKE_P (B0)
[09:41:41] [PASSED] ALDERLAKE_P (C0)
[09:41:41] [PASSED] ALDERLAKE_S_RPLS (D0)
[09:41:41] [PASSED] ALDERLAKE_P_RPLU (E0)
[09:41:41] [PASSED] DG2_G10 (C0)
[09:41:41] [PASSED] DG2_G11 (B1)
[09:41:41] [PASSED] DG2_G12 (A1)
[09:41:41] [PASSED] METEORLAKE (g:A0, m:A0)
[09:41:41] [PASSED] METEORLAKE (g:A0, m:A0)
[09:41:41] [PASSED] METEORLAKE (g:A0, m:A0)
[09:41:41] [PASSED] LUNARLAKE (g:A0, m:A0)
[09:41:41] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[09:41:41] [PASSED] BATTLEMAGE (g:A0, m:A1)
[09:41:41] ==================== [PASSED] xe_wa_gt =====================
[09:41:41] ====================== [PASSED] xe_wa ======================
[09:41:41] ============================================================
[09:41:41] Testing complete. Ran 297 tests: passed: 281, skipped: 16
[09:41:41] Elapsed time: 32.161s total, 4.184s configuring, 27.610s building, 0.317s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[09:41:41] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:41:43] 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
[09:42:05] Starting KUnit Kernel (1/1)...
[09:42:05] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:42:05] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[09:42:05] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[09:42:05] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[09:42:05] =========== drm_validate_clone_mode (2 subtests) ===========
[09:42:05] ============== drm_test_check_in_clone_mode ===============
[09:42:05] [PASSED] in_clone_mode
[09:42:05] [PASSED] not_in_clone_mode
[09:42:05] ========== [PASSED] drm_test_check_in_clone_mode ===========
[09:42:05] =============== drm_test_check_valid_clones ===============
[09:42:05] [PASSED] not_in_clone_mode
[09:42:05] [PASSED] valid_clone
[09:42:05] [PASSED] invalid_clone
[09:42:05] =========== [PASSED] drm_test_check_valid_clones ===========
[09:42:05] ============= [PASSED] drm_validate_clone_mode =============
[09:42:05] ============= drm_validate_modeset (1 subtest) =============
[09:42:05] [PASSED] drm_test_check_connector_changed_modeset
[09:42:05] ============== [PASSED] drm_validate_modeset ===============
[09:42:05] ====== drm_test_bridge_get_current_state (2 subtests) ======
[09:42:05] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[09:42:05] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[09:42:05] ======== [PASSED] drm_test_bridge_get_current_state ========
[09:42:05] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[09:42:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[09:42:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[09:42:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[09:42:05] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[09:42:05] ============== drm_bridge_alloc (2 subtests) ===============
[09:42:05] [PASSED] drm_test_drm_bridge_alloc_basic
[09:42:05] [PASSED] drm_test_drm_bridge_alloc_get_put
[09:42:05] ================ [PASSED] drm_bridge_alloc =================
[09:42:05] ================== drm_buddy (7 subtests) ==================
[09:42:05] [PASSED] drm_test_buddy_alloc_limit
[09:42:05] [PASSED] drm_test_buddy_alloc_optimistic
[09:42:05] [PASSED] drm_test_buddy_alloc_pessimistic
[09:42:05] [PASSED] drm_test_buddy_alloc_pathological
[09:42:05] [PASSED] drm_test_buddy_alloc_contiguous
[09:42:05] [PASSED] drm_test_buddy_alloc_clear
[09:42:05] [PASSED] drm_test_buddy_alloc_range_bias
[09:42:05] ==================== [PASSED] drm_buddy ====================
[09:42:05] ============= drm_cmdline_parser (40 subtests) =============
[09:42:05] [PASSED] drm_test_cmdline_force_d_only
[09:42:05] [PASSED] drm_test_cmdline_force_D_only_dvi
[09:42:05] [PASSED] drm_test_cmdline_force_D_only_hdmi
[09:42:05] [PASSED] drm_test_cmdline_force_D_only_not_digital
[09:42:05] [PASSED] drm_test_cmdline_force_e_only
[09:42:05] [PASSED] drm_test_cmdline_res
[09:42:05] [PASSED] drm_test_cmdline_res_vesa
[09:42:05] [PASSED] drm_test_cmdline_res_vesa_rblank
[09:42:05] [PASSED] drm_test_cmdline_res_rblank
[09:42:05] [PASSED] drm_test_cmdline_res_bpp
[09:42:05] [PASSED] drm_test_cmdline_res_refresh
[09:42:05] [PASSED] drm_test_cmdline_res_bpp_refresh
[09:42:05] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[09:42:05] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[09:42:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[09:42:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[09:42:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[09:42:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[09:42:05] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[09:42:05] [PASSED] drm_test_cmdline_res_margins_force_on
[09:42:05] [PASSED] drm_test_cmdline_res_vesa_margins
[09:42:05] [PASSED] drm_test_cmdline_name
[09:42:05] [PASSED] drm_test_cmdline_name_bpp
[09:42:05] [PASSED] drm_test_cmdline_name_option
[09:42:05] [PASSED] drm_test_cmdline_name_bpp_option
[09:42:05] [PASSED] drm_test_cmdline_rotate_0
[09:42:05] [PASSED] drm_test_cmdline_rotate_90
[09:42:05] [PASSED] drm_test_cmdline_rotate_180
[09:42:05] [PASSED] drm_test_cmdline_rotate_270
[09:42:05] [PASSED] drm_test_cmdline_hmirror
[09:42:05] [PASSED] drm_test_cmdline_vmirror
[09:42:05] [PASSED] drm_test_cmdline_margin_options
[09:42:05] [PASSED] drm_test_cmdline_multiple_options
[09:42:05] [PASSED] drm_test_cmdline_bpp_extra_and_option
[09:42:05] [PASSED] drm_test_cmdline_extra_and_option
[09:42:05] [PASSED] drm_test_cmdline_freestanding_options
[09:42:05] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[09:42:05] [PASSED] drm_test_cmdline_panel_orientation
[09:42:05] ================ drm_test_cmdline_invalid =================
[09:42:05] [PASSED] margin_only
[09:42:05] [PASSED] interlace_only
[09:42:05] [PASSED] res_missing_x
[09:42:05] [PASSED] res_missing_y
[09:42:05] [PASSED] res_bad_y
[09:42:05] [PASSED] res_missing_y_bpp
[09:42:05] [PASSED] res_bad_bpp
[09:42:05] [PASSED] res_bad_refresh
[09:42:05] [PASSED] res_bpp_refresh_force_on_off
[09:42:05] [PASSED] res_invalid_mode
[09:42:05] [PASSED] res_bpp_wrong_place_mode
[09:42:05] [PASSED] name_bpp_refresh
[09:42:05] [PASSED] name_refresh
[09:42:05] [PASSED] name_refresh_wrong_mode
[09:42:05] [PASSED] name_refresh_invalid_mode
[09:42:05] [PASSED] rotate_multiple
[09:42:05] [PASSED] rotate_invalid_val
[09:42:05] [PASSED] rotate_truncated
[09:42:05] [PASSED] invalid_option
[09:42:05] [PASSED] invalid_tv_option
[09:42:05] [PASSED] truncated_tv_option
[09:42:05] ============ [PASSED] drm_test_cmdline_invalid =============
[09:42:05] =============== drm_test_cmdline_tv_options ===============
[09:42:05] [PASSED] NTSC
[09:42:05] [PASSED] NTSC_443
[09:42:05] [PASSED] NTSC_J
[09:42:05] [PASSED] PAL
[09:42:05] [PASSED] PAL_M
[09:42:05] [PASSED] PAL_N
[09:42:05] [PASSED] SECAM
[09:42:05] [PASSED] MONO_525
[09:42:05] [PASSED] MONO_625
[09:42:05] =========== [PASSED] drm_test_cmdline_tv_options ===========
[09:42:05] =============== [PASSED] drm_cmdline_parser ================
[09:42:05] ========== drmm_connector_hdmi_init (20 subtests) ==========
[09:42:05] [PASSED] drm_test_connector_hdmi_init_valid
[09:42:05] [PASSED] drm_test_connector_hdmi_init_bpc_8
[09:42:05] [PASSED] drm_test_connector_hdmi_init_bpc_10
[09:42:05] [PASSED] drm_test_connector_hdmi_init_bpc_12
[09:42:05] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[09:42:05] [PASSED] drm_test_connector_hdmi_init_bpc_null
[09:42:05] [PASSED] drm_test_connector_hdmi_init_formats_empty
[09:42:05] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[09:42:05] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:42:05] [PASSED] supported_formats=0x9 yuv420_allowed=1
[09:42:05] [PASSED] supported_formats=0x9 yuv420_allowed=0
[09:42:05] [PASSED] supported_formats=0x3 yuv420_allowed=1
[09:42:05] [PASSED] supported_formats=0x3 yuv420_allowed=0
[09:42:05] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:42:05] [PASSED] drm_test_connector_hdmi_init_null_ddc
[09:42:05] [PASSED] drm_test_connector_hdmi_init_null_product
[09:42:05] [PASSED] drm_test_connector_hdmi_init_null_vendor
[09:42:05] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[09:42:05] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[09:42:05] [PASSED] drm_test_connector_hdmi_init_product_valid
[09:42:05] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[09:42:05] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[09:42:05] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[09:42:05] ========= drm_test_connector_hdmi_init_type_valid =========
[09:42:05] [PASSED] HDMI-A
[09:42:05] [PASSED] HDMI-B
[09:42:05] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[09:42:05] ======== drm_test_connector_hdmi_init_type_invalid ========
[09:42:05] [PASSED] Unknown
[09:42:05] [PASSED] VGA
[09:42:05] [PASSED] DVI-I
[09:42:05] [PASSED] DVI-D
[09:42:05] [PASSED] DVI-A
[09:42:05] [PASSED] Composite
[09:42:05] [PASSED] SVIDEO
[09:42:05] [PASSED] LVDS
[09:42:05] [PASSED] Component
[09:42:05] [PASSED] DIN
[09:42:05] [PASSED] DP
[09:42:05] [PASSED] TV
[09:42:05] [PASSED] eDP
[09:42:05] [PASSED] Virtual
[09:42:05] [PASSED] DSI
[09:42:05] [PASSED] DPI
[09:42:05] [PASSED] Writeback
[09:42:05] [PASSED] SPI
[09:42:05] [PASSED] USB
[09:42:05] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[09:42:05] ============ [PASSED] drmm_connector_hdmi_init =============
[09:42:05] ============= drmm_connector_init (3 subtests) =============
[09:42:05] [PASSED] drm_test_drmm_connector_init
[09:42:05] [PASSED] drm_test_drmm_connector_init_null_ddc
[09:42:05] ========= drm_test_drmm_connector_init_type_valid =========
[09:42:05] [PASSED] Unknown
[09:42:05] [PASSED] VGA
[09:42:05] [PASSED] DVI-I
[09:42:05] [PASSED] DVI-D
[09:42:05] [PASSED] DVI-A
[09:42:05] [PASSED] Composite
[09:42:05] [PASSED] SVIDEO
[09:42:05] [PASSED] LVDS
[09:42:05] [PASSED] Component
[09:42:05] [PASSED] DIN
[09:42:05] [PASSED] DP
[09:42:05] [PASSED] HDMI-A
[09:42:05] [PASSED] HDMI-B
[09:42:05] [PASSED] TV
[09:42:05] [PASSED] eDP
[09:42:05] [PASSED] Virtual
[09:42:05] [PASSED] DSI
[09:42:05] [PASSED] DPI
[09:42:05] [PASSED] Writeback
[09:42:05] [PASSED] SPI
[09:42:05] [PASSED] USB
[09:42:05] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[09:42:05] =============== [PASSED] drmm_connector_init ===============
[09:42:05] ========= drm_connector_dynamic_init (6 subtests) ==========
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_init
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_init_properties
[09:42:05] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[09:42:05] [PASSED] Unknown
[09:42:05] [PASSED] VGA
[09:42:05] [PASSED] DVI-I
[09:42:05] [PASSED] DVI-D
[09:42:05] [PASSED] DVI-A
[09:42:05] [PASSED] Composite
[09:42:05] [PASSED] SVIDEO
[09:42:05] [PASSED] LVDS
[09:42:05] [PASSED] Component
[09:42:05] [PASSED] DIN
[09:42:05] [PASSED] DP
[09:42:05] [PASSED] HDMI-A
[09:42:05] [PASSED] HDMI-B
[09:42:05] [PASSED] TV
[09:42:05] [PASSED] eDP
[09:42:05] [PASSED] Virtual
[09:42:05] [PASSED] DSI
[09:42:05] [PASSED] DPI
[09:42:05] [PASSED] Writeback
[09:42:05] [PASSED] SPI
[09:42:05] [PASSED] USB
[09:42:05] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[09:42:05] ======== drm_test_drm_connector_dynamic_init_name =========
[09:42:05] [PASSED] Unknown
[09:42:05] [PASSED] VGA
[09:42:05] [PASSED] DVI-I
[09:42:05] [PASSED] DVI-D
[09:42:05] [PASSED] DVI-A
[09:42:05] [PASSED] Composite
[09:42:05] [PASSED] SVIDEO
[09:42:05] [PASSED] LVDS
[09:42:05] [PASSED] Component
[09:42:05] [PASSED] DIN
[09:42:05] [PASSED] DP
[09:42:05] [PASSED] HDMI-A
[09:42:05] [PASSED] HDMI-B
[09:42:05] [PASSED] TV
[09:42:05] [PASSED] eDP
[09:42:05] [PASSED] Virtual
[09:42:05] [PASSED] DSI
[09:42:05] [PASSED] DPI
[09:42:05] [PASSED] Writeback
[09:42:05] [PASSED] SPI
[09:42:05] [PASSED] USB
[09:42:05] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[09:42:05] =========== [PASSED] drm_connector_dynamic_init ============
[09:42:05] ==== drm_connector_dynamic_register_early (4 subtests) =====
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[09:42:05] ====== [PASSED] drm_connector_dynamic_register_early =======
[09:42:05] ======= drm_connector_dynamic_register (7 subtests) ========
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[09:42:05] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[09:42:05] ========= [PASSED] drm_connector_dynamic_register ==========
[09:42:05] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[09:42:05] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[09:42:05] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[09:42:05] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[09:42:05] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[09:42:05] ========== drm_test_get_tv_mode_from_name_valid ===========
[09:42:05] [PASSED] NTSC
[09:42:05] [PASSED] NTSC-443
[09:42:05] [PASSED] NTSC-J
[09:42:05] [PASSED] PAL
[09:42:05] [PASSED] PAL-M
[09:42:05] [PASSED] PAL-N
[09:42:05] [PASSED] SECAM
[09:42:05] [PASSED] Mono
[09:42:05] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[09:42:05] [PASSED] drm_test_get_tv_mode_from_name_truncated
[09:42:05] ============ [PASSED] drm_get_tv_mode_from_name ============
[09:42:05] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[09:42:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[09:42:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[09:42:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[09:42:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[09:42:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[09:42:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[09:42:05] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[09:42:05] [PASSED] VIC 96
[09:42:05] [PASSED] VIC 97
[09:42:05] [PASSED] VIC 101
[09:42:05] [PASSED] VIC 102
[09:42:05] [PASSED] VIC 106
[09:42:05] [PASSED] VIC 107
[09:42:05] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[09:42:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[09:42:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[09:42:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[09:42:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[09:42:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[09:42:05] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[09:42:05] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[09:42:05] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[09:42:05] [PASSED] Automatic
[09:42:05] [PASSED] Full
[09:42:05] [PASSED] Limited 16:235
[09:42:05] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[09:42:05] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[09:42:05] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[09:42:05] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[09:42:05] === drm_test_drm_hdmi_connector_get_output_format_name ====
[09:42:05] [PASSED] RGB
[09:42:05] [PASSED] YUV 4:2:0
[09:42:05] [PASSED] YUV 4:2:2
[09:42:05] [PASSED] YUV 4:4:4
[09:42:05] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[09:42:05] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[09:42:05] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[09:42:05] ============= drm_damage_helper (21 subtests) ==============
[09:42:05] [PASSED] drm_test_damage_iter_no_damage
[09:42:05] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[09:42:05] [PASSED] drm_test_damage_iter_no_damage_src_moved
[09:42:05] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[09:42:05] [PASSED] drm_test_damage_iter_no_damage_not_visible
[09:42:05] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[09:42:05] [PASSED] drm_test_damage_iter_no_damage_no_fb
[09:42:05] [PASSED] drm_test_damage_iter_simple_damage
[09:42:05] [PASSED] drm_test_damage_iter_single_damage
[09:42:05] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[09:42:05] [PASSED] drm_test_damage_iter_single_damage_outside_src
[09:42:05] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[09:42:05] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[09:42:05] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[09:42:05] [PASSED] drm_test_damage_iter_single_damage_src_moved
[09:42:05] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[09:42:05] [PASSED] drm_test_damage_iter_damage
[09:42:05] [PASSED] drm_test_damage_iter_damage_one_intersect
[09:42:05] [PASSED] drm_test_damage_iter_damage_one_outside
[09:42:05] [PASSED] drm_test_damage_iter_damage_src_moved
[09:42:05] [PASSED] drm_test_damage_iter_damage_not_visible
[09:42:05] ================ [PASSED] drm_damage_helper ================
[09:42:05] ============== drm_dp_mst_helper (3 subtests) ==============
[09:42:05] ============== drm_test_dp_mst_calc_pbn_mode ==============
[09:42:05] [PASSED] Clock 154000 BPP 30 DSC disabled
[09:42:05] [PASSED] Clock 234000 BPP 30 DSC disabled
[09:42:05] [PASSED] Clock 297000 BPP 24 DSC disabled
[09:42:05] [PASSED] Clock 332880 BPP 24 DSC enabled
[09:42:05] [PASSED] Clock 324540 BPP 24 DSC enabled
[09:42:05] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[09:42:05] ============== drm_test_dp_mst_calc_pbn_div ===============
[09:42:05] [PASSED] Link rate 2000000 lane count 4
[09:42:05] [PASSED] Link rate 2000000 lane count 2
[09:42:05] [PASSED] Link rate 2000000 lane count 1
[09:42:05] [PASSED] Link rate 1350000 lane count 4
[09:42:05] [PASSED] Link rate 1350000 lane count 2
[09:42:05] [PASSED] Link rate 1350000 lane count 1
[09:42:05] [PASSED] Link rate 1000000 lane count 4
[09:42:05] [PASSED] Link rate 1000000 lane count 2
[09:42:05] [PASSED] Link rate 1000000 lane count 1
[09:42:05] [PASSED] Link rate 810000 lane count 4
[09:42:05] [PASSED] Link rate 810000 lane count 2
[09:42:05] [PASSED] Link rate 810000 lane count 1
[09:42:05] [PASSED] Link rate 540000 lane count 4
[09:42:05] [PASSED] Link rate 540000 lane count 2
[09:42:05] [PASSED] Link rate 540000 lane count 1
[09:42:05] [PASSED] Link rate 270000 lane count 4
[09:42:05] [PASSED] Link rate 270000 lane count 2
[09:42:05] [PASSED] Link rate 270000 lane count 1
[09:42:05] [PASSED] Link rate 162000 lane count 4
[09:42:05] [PASSED] Link rate 162000 lane count 2
[09:42:05] [PASSED] Link rate 162000 lane count 1
[09:42:05] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[09:42:05] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[09:42:05] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[09:42:05] [PASSED] DP_POWER_UP_PHY with port number
[09:42:05] [PASSED] DP_POWER_DOWN_PHY with port number
[09:42:05] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[09:42:05] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[09:42:05] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[09:42:05] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[09:42:05] [PASSED] DP_QUERY_PAYLOAD with port number
[09:42:05] [PASSED] DP_QUERY_PAYLOAD with VCPI
[09:42:05] [PASSED] DP_REMOTE_DPCD_READ with port number
[09:42:05] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[09:42:05] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[09:42:05] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[09:42:05] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[09:42:05] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[09:42:05] [PASSED] DP_REMOTE_I2C_READ with port number
[09:42:05] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[09:42:05] [PASSED] DP_REMOTE_I2C_READ with transactions array
[09:42:05] [PASSED] DP_REMOTE_I2C_WRITE with port number
[09:42:05] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[09:42:05] [PASSED] DP_REMOTE_I2C_WRITE with data array
[09:42:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[09:42:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[09:42:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[09:42:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[09:42:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[09:42:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[09:42:05] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[09:42:05] ================ [PASSED] drm_dp_mst_helper ================
[09:42:05] ================== drm_exec (7 subtests) ===================
[09:42:05] [PASSED] sanitycheck
[09:42:05] [PASSED] test_lock
[09:42:05] [PASSED] test_lock_unlock
[09:42:05] [PASSED] test_duplicates
[09:42:05] [PASSED] test_prepare
[09:42:05] [PASSED] test_prepare_array
[09:42:05] [PASSED] test_multiple_loops
[09:42:05] ==================== [PASSED] drm_exec =====================
[09:42:05] =========== drm_format_helper_test (17 subtests) ===========
[09:42:05] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[09:42:05] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[09:42:05] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[09:42:05] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[09:42:05] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[09:42:05] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[09:42:05] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[09:42:05] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[09:42:05] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[09:42:05] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[09:42:05] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[09:42:05] ============== drm_test_fb_xrgb8888_to_mono ===============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[09:42:05] ==================== drm_test_fb_swab =====================
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ================ [PASSED] drm_test_fb_swab =================
[09:42:05] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[09:42:05] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[09:42:05] [PASSED] single_pixel_source_buffer
[09:42:05] [PASSED] single_pixel_clip_rectangle
[09:42:05] [PASSED] well_known_colors
[09:42:05] [PASSED] destination_pitch
[09:42:05] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[09:42:05] ================= drm_test_fb_clip_offset =================
[09:42:05] [PASSED] pass through
[09:42:05] [PASSED] horizontal offset
[09:42:05] [PASSED] vertical offset
[09:42:05] [PASSED] horizontal and vertical offset
[09:42:05] [PASSED] horizontal offset (custom pitch)
[09:42:05] [PASSED] vertical offset (custom pitch)
[09:42:05] [PASSED] horizontal and vertical offset (custom pitch)
[09:42:05] ============= [PASSED] drm_test_fb_clip_offset =============
[09:42:05] =================== drm_test_fb_memcpy ====================
[09:42:05] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[09:42:05] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[09:42:05] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[09:42:05] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[09:42:05] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[09:42:05] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[09:42:05] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[09:42:05] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[09:42:05] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[09:42:05] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[09:42:05] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[09:42:05] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[09:42:05] =============== [PASSED] drm_test_fb_memcpy ================
[09:42:05] ============= [PASSED] drm_format_helper_test ==============
[09:42:05] ================= drm_format (18 subtests) =================
[09:42:05] [PASSED] drm_test_format_block_width_invalid
[09:42:05] [PASSED] drm_test_format_block_width_one_plane
[09:42:05] [PASSED] drm_test_format_block_width_two_plane
[09:42:05] [PASSED] drm_test_format_block_width_three_plane
[09:42:05] [PASSED] drm_test_format_block_width_tiled
[09:42:05] [PASSED] drm_test_format_block_height_invalid
[09:42:05] [PASSED] drm_test_format_block_height_one_plane
[09:42:05] [PASSED] drm_test_format_block_height_two_plane
[09:42:05] [PASSED] drm_test_format_block_height_three_plane
[09:42:05] [PASSED] drm_test_format_block_height_tiled
[09:42:05] [PASSED] drm_test_format_min_pitch_invalid
[09:42:05] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[09:42:05] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[09:42:05] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[09:42:05] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[09:42:05] [PASSED] drm_test_format_min_pitch_two_plane
[09:42:05] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[09:42:05] [PASSED] drm_test_format_min_pitch_tiled
[09:42:05] =================== [PASSED] drm_format ====================
[09:42:05] ============== drm_framebuffer (10 subtests) ===============
[09:42:05] ========== drm_test_framebuffer_check_src_coords ==========
[09:42:05] [PASSED] Success: source fits into fb
[09:42:05] [PASSED] Fail: overflowing fb with x-axis coordinate
[09:42:05] [PASSED] Fail: overflowing fb with y-axis coordinate
[09:42:05] [PASSED] Fail: overflowing fb with source width
[09:42:05] [PASSED] Fail: overflowing fb with source height
[09:42:05] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[09:42:05] [PASSED] drm_test_framebuffer_cleanup
[09:42:05] =============== drm_test_framebuffer_create ===============
[09:42:05] [PASSED] ABGR8888 normal sizes
[09:42:05] [PASSED] ABGR8888 max sizes
[09:42:05] [PASSED] ABGR8888 pitch greater than min required
[09:42:05] [PASSED] ABGR8888 pitch less than min required
[09:42:05] [PASSED] ABGR8888 Invalid width
[09:42:05] [PASSED] ABGR8888 Invalid buffer handle
[09:42:05] [PASSED] No pixel format
[09:42:05] [PASSED] ABGR8888 Width 0
[09:42:05] [PASSED] ABGR8888 Height 0
[09:42:05] [PASSED] ABGR8888 Out of bound height * pitch combination
[09:42:05] [PASSED] ABGR8888 Large buffer offset
[09:42:05] [PASSED] ABGR8888 Buffer offset for inexistent plane
[09:42:05] [PASSED] ABGR8888 Invalid flag
[09:42:05] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[09:42:05] [PASSED] ABGR8888 Valid buffer modifier
[09:42:05] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[09:42:05] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[09:42:05] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[09:42:05] [PASSED] NV12 Normal sizes
[09:42:05] [PASSED] NV12 Max sizes
[09:42:05] [PASSED] NV12 Invalid pitch
[09:42:05] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[09:42:05] [PASSED] NV12 different modifier per-plane
[09:42:05] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[09:42:05] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[09:42:05] [PASSED] NV12 Modifier for inexistent plane
[09:42:05] [PASSED] NV12 Handle for inexistent plane
[09:42:05] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[09:42:05] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[09:42:05] [PASSED] YVU420 Normal sizes
[09:42:05] [PASSED] YVU420 Max sizes
[09:42:05] [PASSED] YVU420 Invalid pitch
[09:42:05] [PASSED] YVU420 Different pitches
[09:42:05] [PASSED] YVU420 Different buffer offsets/pitches
[09:42:05] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[09:42:05] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[09:42:05] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[09:42:05] [PASSED] YVU420 Valid modifier
[09:42:05] [PASSED] YVU420 Different modifiers per plane
[09:42:05] [PASSED] YVU420 Modifier for inexistent plane
[09:42:05] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[09:42:05] [PASSED] X0L2 Normal sizes
[09:42:05] [PASSED] X0L2 Max sizes
[09:42:05] [PASSED] X0L2 Invalid pitch
[09:42:05] [PASSED] X0L2 Pitch greater than minimum required
[09:42:05] [PASSED] X0L2 Handle for inexistent plane
[09:42:05] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[09:42:05] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[09:42:05] [PASSED] X0L2 Valid modifier
[09:42:05] [PASSED] X0L2 Modifier for inexistent plane
[09:42:05] =========== [PASSED] drm_test_framebuffer_create ===========
[09:42:05] [PASSED] drm_test_framebuffer_free
[09:42:05] [PASSED] drm_test_framebuffer_init
[09:42:05] [PASSED] drm_test_framebuffer_init_bad_format
[09:42:05] [PASSED] drm_test_framebuffer_init_dev_mismatch
[09:42:05] [PASSED] drm_test_framebuffer_lookup
[09:42:05] [PASSED] drm_test_framebuffer_lookup_inexistent
[09:42:05] [PASSED] drm_test_framebuffer_modifiers_not_supported
[09:42:05] ================= [PASSED] drm_framebuffer =================
[09:42:05] ================ drm_gem_shmem (8 subtests) ================
[09:42:05] [PASSED] drm_gem_shmem_test_obj_create
[09:42:05] [PASSED] drm_gem_shmem_test_obj_create_private
[09:42:05] [PASSED] drm_gem_shmem_test_pin_pages
[09:42:05] [PASSED] drm_gem_shmem_test_vmap
[09:42:05] [PASSED] drm_gem_shmem_test_get_pages_sgt
[09:42:05] [PASSED] drm_gem_shmem_test_get_sg_table
[09:42:05] [PASSED] drm_gem_shmem_test_madvise
[09:42:05] [PASSED] drm_gem_shmem_test_purge
[09:42:05] ================== [PASSED] drm_gem_shmem ==================
[09:42:05] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[09:42:05] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[09:42:05] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[09:42:05] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[09:42:05] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[09:42:05] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[09:42:05] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[09:42:05] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[09:42:05] [PASSED] Automatic
[09:42:05] [PASSED] Full
[09:42:05] [PASSED] Limited 16:235
[09:42:05] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[09:42:05] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[09:42:05] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[09:42:05] [PASSED] drm_test_check_disable_connector
[09:42:05] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[09:42:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[09:42:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[09:42:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[09:42:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[09:42:05] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[09:42:05] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[09:42:05] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[09:42:05] [PASSED] drm_test_check_output_bpc_dvi
[09:42:05] [PASSED] drm_test_check_output_bpc_format_vic_1
[09:42:05] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[09:42:05] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[09:42:05] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[09:42:05] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[09:42:05] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[09:42:05] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[09:42:05] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[09:42:05] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[09:42:05] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[09:42:05] [PASSED] drm_test_check_broadcast_rgb_value
[09:42:05] [PASSED] drm_test_check_bpc_8_value
[09:42:05] [PASSED] drm_test_check_bpc_10_value
[09:42:05] [PASSED] drm_test_check_bpc_12_value
[09:42:05] [PASSED] drm_test_check_format_value
[09:42:05] [PASSED] drm_test_check_tmds_char_value
[09:42:05] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[09:42:05] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[09:42:05] [PASSED] drm_test_check_mode_valid
[09:42:05] [PASSED] drm_test_check_mode_valid_reject
[09:42:05] [PASSED] drm_test_check_mode_valid_reject_rate
[09:42:05] [PASSED] drm_test_check_mode_valid_reject_max_clock
[09:42:05] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[09:42:05] ================= drm_managed (2 subtests) =================
[09:42:05] [PASSED] drm_test_managed_release_action
[09:42:05] [PASSED] drm_test_managed_run_action
[09:42:05] =================== [PASSED] drm_managed ===================
[09:42:05] =================== drm_mm (6 subtests) ====================
[09:42:05] [PASSED] drm_test_mm_init
[09:42:05] [PASSED] drm_test_mm_debug
[09:42:05] [PASSED] drm_test_mm_align32
[09:42:05] [PASSED] drm_test_mm_align64
[09:42:05] [PASSED] drm_test_mm_lowest
[09:42:05] [PASSED] drm_test_mm_highest
[09:42:05] ===================== [PASSED] drm_mm ======================
[09:42:05] ============= drm_modes_analog_tv (5 subtests) =============
[09:42:05] [PASSED] drm_test_modes_analog_tv_mono_576i
[09:42:05] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[09:42:05] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[09:42:05] [PASSED] drm_test_modes_analog_tv_pal_576i
[09:42:05] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[09:42:05] =============== [PASSED] drm_modes_analog_tv ===============
[09:42:05] ============== drm_plane_helper (2 subtests) ===============
[09:42:05] =============== drm_test_check_plane_state ================
[09:42:05] [PASSED] clipping_simple
[09:42:05] [PASSED] clipping_rotate_reflect
[09:42:05] [PASSED] positioning_simple
[09:42:05] [PASSED] upscaling
[09:42:05] [PASSED] downscaling
[09:42:05] [PASSED] rounding1
[09:42:05] [PASSED] rounding2
[09:42:05] [PASSED] rounding3
[09:42:05] [PASSED] rounding4
[09:42:05] =========== [PASSED] drm_test_check_plane_state ============
[09:42:05] =========== drm_test_check_invalid_plane_state ============
[09:42:05] [PASSED] positioning_invalid
[09:42:05] [PASSED] upscaling_invalid
[09:42:05] [PASSED] downscaling_invalid
[09:42:05] ======= [PASSED] drm_test_check_invalid_plane_state ========
[09:42:05] ================ [PASSED] drm_plane_helper =================
[09:42:05] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[09:42:05] ====== drm_test_connector_helper_tv_get_modes_check =======
[09:42:05] [PASSED] None
[09:42:05] [PASSED] PAL
[09:42:05] [PASSED] NTSC
[09:42:05] [PASSED] Both, NTSC Default
[09:42:05] [PASSED] Both, PAL Default
[09:42:05] [PASSED] Both, NTSC Default, with PAL on command-line
[09:42:05] [PASSED] Both, PAL Default, with NTSC on command-line
[09:42:05] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[09:42:05] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[09:42:05] ================== drm_rect (9 subtests) ===================
[09:42:05] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[09:42:05] [PASSED] drm_test_rect_clip_scaled_not_clipped
[09:42:05] [PASSED] drm_test_rect_clip_scaled_clipped
[09:42:05] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[09:42:05] ================= drm_test_rect_intersect =================
[09:42:05] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[09:42:05] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[09:42:05] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[09:42:05] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[09:42:05] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[09:42:05] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[09:42:05] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[09:42:05] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[09:42:05] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[09:42:05] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[09:42:05] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[09:42:05] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[09:42:05] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[09:42:05] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[09:42:05] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[09:42:05] ============= [PASSED] drm_test_rect_intersect =============
[09:42:05] ================ drm_test_rect_calc_hscale ================
[09:42:05] [PASSED] normal use
[09:42:05] [PASSED] out of max range
[09:42:05] [PASSED] out of min range
[09:42:05] [PASSED] zero dst
[09:42:05] [PASSED] negative src
[09:42:05] [PASSED] negative dst
[09:42:05] ============ [PASSED] drm_test_rect_calc_hscale ============
[09:42:05] ================ drm_test_rect_calc_vscale ================
[09:42:05] [PASSED] normal use
[09:42:05] [PASSED] out of max range
[09:42:05] [PASSED] out of min range
[09:42:05] [PASSED] zero dst
[09:42:05] [PASSED] negative src
[09:42:05] [PASSED] negative dst
[09:42:05] ============ [PASSED] drm_test_rect_calc_vscale ============
[09:42:05] ================== drm_test_rect_rotate ===================
[09:42:05] [PASSED] reflect-x
[09:42:05] [PASSED] reflect-y
[09:42:05] [PASSED] rotate-0
[09:42:05] [PASSED] rotate-90
[09:42:05] [PASSED] rotate-180
[09:42:05] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[09:42:05] ============== [PASSED] drm_test_rect_rotate ===============
[09:42:05] ================ drm_test_rect_rotate_inv =================
[09:42:05] [PASSED] reflect-x
[09:42:05] [PASSED] reflect-y
[09:42:05] [PASSED] rotate-0
[09:42:05] [PASSED] rotate-90
[09:42:05] [PASSED] rotate-180
[09:42:05] [PASSED] rotate-270
[09:42:05] ============ [PASSED] drm_test_rect_rotate_inv =============
[09:42:05] ==================== [PASSED] drm_rect =====================
[09:42:05] ============ drm_sysfb_modeset_test (1 subtest) ============
[09:42:05] ============ drm_test_sysfb_build_fourcc_list =============
[09:42:05] [PASSED] no native formats
[09:42:05] [PASSED] XRGB8888 as native format
[09:42:05] [PASSED] remove duplicates
[09:42:05] [PASSED] convert alpha formats
[09:42:05] [PASSED] random formats
[09:42:05] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[09:42:05] ============= [PASSED] drm_sysfb_modeset_test ==============
[09:42:05] ============================================================
[09:42:05] Testing complete. Ran 616 tests: passed: 616
[09:42:05] Elapsed time: 23.865s total, 1.691s configuring, 21.953s building, 0.185s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[09:42:05] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:42:07] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[09:42:15] Starting KUnit Kernel (1/1)...
[09:42:15] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:42:15] ================= ttm_device (5 subtests) ==================
[09:42:15] [PASSED] ttm_device_init_basic
[09:42:15] [PASSED] ttm_device_init_multiple
[09:42:15] [PASSED] ttm_device_fini_basic
[09:42:15] [PASSED] ttm_device_init_no_vma_man
[09:42:15] ================== ttm_device_init_pools ==================
[09:42:15] [PASSED] No DMA allocations, no DMA32 required
[09:42:15] [PASSED] DMA allocations, DMA32 required
[09:42:15] [PASSED] No DMA allocations, DMA32 required
[09:42:15] [PASSED] DMA allocations, no DMA32 required
[09:42:15] ============== [PASSED] ttm_device_init_pools ==============
[09:42:15] =================== [PASSED] ttm_device ====================
[09:42:15] ================== ttm_pool (8 subtests) ===================
[09:42:15] ================== ttm_pool_alloc_basic ===================
[09:42:15] [PASSED] One page
[09:42:15] [PASSED] More than one page
[09:42:15] [PASSED] Above the allocation limit
[09:42:15] [PASSED] One page, with coherent DMA mappings enabled
[09:42:15] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:42:15] ============== [PASSED] ttm_pool_alloc_basic ===============
[09:42:15] ============== ttm_pool_alloc_basic_dma_addr ==============
[09:42:15] [PASSED] One page
[09:42:15] [PASSED] More than one page
[09:42:15] [PASSED] Above the allocation limit
[09:42:15] [PASSED] One page, with coherent DMA mappings enabled
[09:42:15] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:42:15] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[09:42:15] [PASSED] ttm_pool_alloc_order_caching_match
[09:42:15] [PASSED] ttm_pool_alloc_caching_mismatch
[09:42:15] [PASSED] ttm_pool_alloc_order_mismatch
[09:42:15] [PASSED] ttm_pool_free_dma_alloc
[09:42:15] [PASSED] ttm_pool_free_no_dma_alloc
[09:42:15] [PASSED] ttm_pool_fini_basic
[09:42:15] ==================== [PASSED] ttm_pool =====================
[09:42:15] ================ ttm_resource (8 subtests) =================
[09:42:15] ================= ttm_resource_init_basic =================
[09:42:15] [PASSED] Init resource in TTM_PL_SYSTEM
[09:42:15] [PASSED] Init resource in TTM_PL_VRAM
[09:42:15] [PASSED] Init resource in a private placement
[09:42:15] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[09:42:15] ============= [PASSED] ttm_resource_init_basic =============
[09:42:15] [PASSED] ttm_resource_init_pinned
[09:42:15] [PASSED] ttm_resource_fini_basic
[09:42:15] [PASSED] ttm_resource_manager_init_basic
[09:42:15] [PASSED] ttm_resource_manager_usage_basic
[09:42:15] [PASSED] ttm_resource_manager_set_used_basic
[09:42:15] [PASSED] ttm_sys_man_alloc_basic
[09:42:15] [PASSED] ttm_sys_man_free_basic
[09:42:15] ================== [PASSED] ttm_resource ===================
[09:42:15] =================== ttm_tt (15 subtests) ===================
[09:42:15] ==================== ttm_tt_init_basic ====================
[09:42:15] [PASSED] Page-aligned size
[09:42:15] [PASSED] Extra pages requested
[09:42:15] ================ [PASSED] ttm_tt_init_basic ================
[09:42:15] [PASSED] ttm_tt_init_misaligned
[09:42:15] [PASSED] ttm_tt_fini_basic
[09:42:15] [PASSED] ttm_tt_fini_sg
[09:42:15] [PASSED] ttm_tt_fini_shmem
[09:42:15] [PASSED] ttm_tt_create_basic
[09:42:15] [PASSED] ttm_tt_create_invalid_bo_type
[09:42:15] [PASSED] ttm_tt_create_ttm_exists
[09:42:15] [PASSED] ttm_tt_create_failed
[09:42:15] [PASSED] ttm_tt_destroy_basic
[09:42:15] [PASSED] ttm_tt_populate_null_ttm
[09:42:15] [PASSED] ttm_tt_populate_populated_ttm
[09:42:15] [PASSED] ttm_tt_unpopulate_basic
[09:42:15] [PASSED] ttm_tt_unpopulate_empty_ttm
[09:42:15] [PASSED] ttm_tt_swapin_basic
[09:42:15] ===================== [PASSED] ttm_tt ======================
[09:42:15] =================== ttm_bo (14 subtests) ===================
[09:42:15] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[09:42:15] [PASSED] Cannot be interrupted and sleeps
[09:42:15] [PASSED] Cannot be interrupted, locks straight away
[09:42:15] [PASSED] Can be interrupted, sleeps
[09:42:15] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[09:42:15] [PASSED] ttm_bo_reserve_locked_no_sleep
[09:42:15] [PASSED] ttm_bo_reserve_no_wait_ticket
[09:42:15] [PASSED] ttm_bo_reserve_double_resv
[09:42:15] [PASSED] ttm_bo_reserve_interrupted
[09:42:15] [PASSED] ttm_bo_reserve_deadlock
[09:42:15] [PASSED] ttm_bo_unreserve_basic
[09:42:15] [PASSED] ttm_bo_unreserve_pinned
[09:42:15] [PASSED] ttm_bo_unreserve_bulk
[09:42:15] [PASSED] ttm_bo_put_basic
[09:42:15] [PASSED] ttm_bo_put_shared_resv
[09:42:15] [PASSED] ttm_bo_pin_basic
[09:42:15] [PASSED] ttm_bo_pin_unpin_resource
[09:42:15] [PASSED] ttm_bo_multiple_pin_one_unpin
[09:42:15] ===================== [PASSED] ttm_bo ======================
[09:42:15] ============== ttm_bo_validate (21 subtests) ===============
[09:42:15] ============== ttm_bo_init_reserved_sys_man ===============
[09:42:15] [PASSED] Buffer object for userspace
[09:42:15] [PASSED] Kernel buffer object
[09:42:15] [PASSED] Shared buffer object
[09:42:15] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[09:42:15] ============== ttm_bo_init_reserved_mock_man ==============
[09:42:15] [PASSED] Buffer object for userspace
[09:42:15] [PASSED] Kernel buffer object
[09:42:15] [PASSED] Shared buffer object
[09:42:15] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[09:42:15] [PASSED] ttm_bo_init_reserved_resv
[09:42:15] ================== ttm_bo_validate_basic ==================
[09:42:15] [PASSED] Buffer object for userspace
[09:42:15] [PASSED] Kernel buffer object
[09:42:15] [PASSED] Shared buffer object
[09:42:15] ============== [PASSED] ttm_bo_validate_basic ==============
[09:42:15] [PASSED] ttm_bo_validate_invalid_placement
[09:42:15] ============= ttm_bo_validate_same_placement ==============
[09:42:15] [PASSED] System manager
[09:42:15] [PASSED] VRAM manager
[09:42:15] ========= [PASSED] ttm_bo_validate_same_placement ==========
[09:42:15] [PASSED] ttm_bo_validate_failed_alloc
[09:42:15] [PASSED] ttm_bo_validate_pinned
[09:42:15] [PASSED] ttm_bo_validate_busy_placement
[09:42:15] ================ ttm_bo_validate_multihop =================
[09:42:15] [PASSED] Buffer object for userspace
[09:42:15] [PASSED] Kernel buffer object
[09:42:15] [PASSED] Shared buffer object
[09:42:15] ============ [PASSED] ttm_bo_validate_multihop =============
[09:42:15] ========== ttm_bo_validate_no_placement_signaled ==========
[09:42:15] [PASSED] Buffer object in system domain, no page vector
[09:42:15] [PASSED] Buffer object in system domain with an existing page vector
[09:42:15] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[09:42:15] ======== ttm_bo_validate_no_placement_not_signaled ========
[09:42:15] [PASSED] Buffer object for userspace
[09:42:15] [PASSED] Kernel buffer object
[09:42:15] [PASSED] Shared buffer object
[09:42:15] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[09:42:15] [PASSED] ttm_bo_validate_move_fence_signaled
[09:42:15] ========= ttm_bo_validate_move_fence_not_signaled =========
[09:42:15] [PASSED] Waits for GPU
[09:42:15] [PASSED] Tries to lock straight away
[09:42:15] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[09:42:15] [PASSED] ttm_bo_validate_happy_evict
[09:42:15] [PASSED] ttm_bo_validate_all_pinned_evict
[09:42:15] [PASSED] ttm_bo_validate_allowed_only_evict
[09:42:15] [PASSED] ttm_bo_validate_deleted_evict
[09:42:15] [PASSED] ttm_bo_validate_busy_domain_evict
[09:42:15] [PASSED] ttm_bo_validate_evict_gutting
[09:42:15] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[09:42:15] ================= [PASSED] ttm_bo_validate =================
[09:42:15] ============================================================
[09:42:15] Testing complete. Ran 101 tests: passed: 101
[09:42:15] Elapsed time: 9.584s total, 1.661s configuring, 7.707s building, 0.172s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✗ CI.checksparse: warning for Introduce drm sharpness property
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (11 preceding siblings ...)
2025-08-07 9:42 ` ✓ CI.KUnit: success " Patchwork
@ 2025-08-07 9:57 ` Patchwork
2025-08-07 10:45 ` ✓ Xe.CI.BAT: success " Patchwork
` (3 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-08-07 9:57 UTC (permalink / raw)
To: Nemesa Garg; +Cc: intel-xe
== Series Details ==
Series: Introduce drm sharpness property
URL : https://patchwork.freedesktop.org/series/152615/
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 e75fad13646be2a02f21a8e9d438b3150108950d
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:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2033:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2046:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2046:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2046: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/i915_irq.c:492:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:492:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:500:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:500:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:505:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:505:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:505:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:543:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:543:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:551:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:551:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:556:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:556:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:556:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:600:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:600:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:603:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:603:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:607:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:607:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:614:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:614:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:614:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:614:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/intel_uncore.c:1927:1: warning: context imbalance in 'fwtable_read8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1928:1: warning: context imbalance in 'fwtable_read16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1929:1: warning: context imbalance in 'fwtable_read32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1930:1: warning: context imbalance in 'fwtable_read64' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1995:1: warning: context imbalance in 'gen6_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1996:1: warning: context imbalance in 'gen6_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1997:1: warning: context imbalance in 'gen6_write32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2017:1: warning: context imbalance in 'fwtable_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2018:1: warning: context imbalance in 'fwtable_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2019:1: warning: context imbalance in 'fwtable_write32' - unexpected unlock
+./include/linux/srcu.h:400: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] 36+ messages in thread
* ✓ Xe.CI.BAT: success for Introduce drm sharpness property
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (12 preceding siblings ...)
2025-08-07 9:57 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-08-07 10:45 ` Patchwork
2025-08-07 11:58 ` ✗ Xe.CI.Full: failure " Patchwork
` (2 subsequent siblings)
16 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-08-07 10:45 UTC (permalink / raw)
To: Nemesa Garg; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 3388 bytes --]
== Series Details ==
Series: Introduce drm sharpness property
URL : https://patchwork.freedesktop.org/series/152615/
State : success
== Summary ==
CI Bug Log - changes from xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8_BAT -> xe-pw-152615v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (10 -> 9)
------------------------------
Missing (1): bat-adlp-vm
Known issues
------------
Here are the changes found in xe-pw-152615v1_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-bmg-2: [SKIP][1] ([Intel XE#1091] / [Intel XE#2849]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
- bat-bmg-1: [SKIP][3] ([Intel XE#1091] / [Intel XE#2849]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-bmg-1: [SKIP][5] ([Intel XE#3342]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/bat-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/bat-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
- bat-bmg-2: [SKIP][7] ([Intel XE#3342]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/bat-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/bat-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_vm@bind-execqueues-independent:
- {bat-ptl-1}: [FAIL][9] ([Intel XE#5783]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/bat-ptl-1/igt@xe_vm@bind-execqueues-independent.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/bat-ptl-1/igt@xe_vm@bind-execqueues-independent.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
Build changes
-------------
* Linux: xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8 -> xe-pw-152615v1
IGT_8488: c4a9bee161f4bb74cbbf81c73b24c416ecf93976 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8: 8463eb0394270c7f78c091aa5f5c7af0abf6fdf8
xe-pw-152615v1: 152615v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/index.html
[-- Attachment #2: Type: text/html, Size: 4236 bytes --]
^ permalink raw reply [flat|nested] 36+ messages in thread
* ✗ Xe.CI.Full: failure for Introduce drm sharpness property
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (13 preceding siblings ...)
2025-08-07 10:45 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-08-07 11:58 ` Patchwork
2025-09-09 8:10 ` [PATCH 00/10] " Jani Nikula
2025-09-19 11:55 ` Jani Nikula
16 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2025-08-07 11:58 UTC (permalink / raw)
To: Nemesa Garg; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 76382 bytes --]
== Series Details ==
Series: Introduce drm sharpness property
URL : https://patchwork.freedesktop.org/series/152615/
State : failure
== Summary ==
CI Bug Log - changes from xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8_FULL -> xe-pw-152615v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-152615v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-152615v1_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-152615v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: [PASS][2] -> [FAIL][3] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-8/igt@xe_compute@ccs-mode-basic.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
#### Warnings ####
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: [SKIP][4] ([Intel XE#4518]) -> [SKIP][5] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-4/igt@xe_eudebug_sriov@deny-sriov.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-7/igt@xe_eudebug_sriov@deny-sriov.html
New tests
---------
New tests have been introduced between xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8_FULL and xe-pw-152615v1_FULL:
### New IGT tests (11) ###
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-10:
- Statuses : 1 pass(s)
- Exec time: [1.72] s
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-11:
- Statuses : 1 pass(s)
- Exec time: [1.70] s
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-12:
- Statuses : 1 pass(s)
- Exec time: [1.62] s
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-8:
- Statuses : 1 pass(s)
- Exec time: [1.64] s
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-9:
- Statuses : 1 pass(s)
- Exec time: [1.65] s
* igt@xe_pmu@all-fn-engine-activity-load@engine-drm_xe_engine_class_compute0:
- Statuses : 1 pass(s)
- Exec time: [2.27] s
* igt@xe_pmu@all-fn-engine-activity-load@engine-drm_xe_engine_class_video_enhance1:
- Statuses : 1 pass(s)
- Exec time: [2.11] s
* igt@xe_pmu@fn-engine-activity-load@engine-drm_xe_engine_class_compute0:
- Statuses : 1 pass(s)
- Exec time: [6.06] s
* igt@xe_pmu@fn-engine-activity-load@engine-drm_xe_engine_class_video_enhance1:
- Statuses : 1 pass(s)
- Exec time: [6.06] s
* igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_compute0:
- Statuses : 1 pass(s)
- Exec time: [6.28] s
* igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1:
- Statuses : 1 abort(s)
- Exec time: [6.31] s
Known issues
------------
Here are the changes found in xe-pw-152615v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [PASS][6] -> [FAIL][7] ([Intel XE#4208]) +2 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@core_getversion@all-cards.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@core_getversion@all-cards.html
* igt@fbdev@unaligned-read:
- shard-dg2-set2: [PASS][8] -> [SKIP][9] ([Intel XE#2134])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@fbdev@unaligned-read.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@fbdev@unaligned-read.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#316])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#610])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#367])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#787]) +62 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][18] ([Intel XE#3862])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#373]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][21] ([Intel XE#1178])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-464/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2341])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_content_protection@content-type-change.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2291]) +7 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#3009])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-5/igt@kms_dp_aux_dev.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#4356])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2244])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#701])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2316]) +5 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-rmfb@d-hdmi-a1:
- shard-adlp: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#4543]) +4 other tests dmesg-warn
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-6/igt@kms_flip@flip-vs-rmfb@d-hdmi-a1.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-2/igt@kms_flip@flip-vs-rmfb@d-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
- shard-adlp: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#2953] / [Intel XE#4173])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x:
- shard-adlp: [PASS][37] -> [DMESG-FAIL][38] ([Intel XE#4543]) +2 other tests dmesg-fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y:
- shard-adlp: [PASS][39] -> [FAIL][40] ([Intel XE#1874])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2311]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#651]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#5390])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: [PASS][44] -> [SKIP][45] ([Intel XE#2351] / [Intel XE#4208]) +16 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2313]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#653]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][48] -> [SKIP][49] ([Intel XE#455])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-434/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#1503]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-5/igt@kms_hdr@static-toggle.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#346])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_lease@lease-invalid-crtc:
- shard-dg2-set2: [PASS][53] -> [SKIP][54] ([Intel XE#4208] / [i915#2575]) +130 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@kms_lease@lease-invalid-crtc.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_lease@lease-invalid-crtc.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#356])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#4596])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-4.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#908])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1489]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@psr2-basic:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2234] / [Intel XE#2850])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_psr@psr2-basic.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#3414] / [Intel XE#3904])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#1435])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#1499])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-7/igt@kms_vrr@negative-basic.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_vrr@negative-basic.html
* igt@xe_eu_stall@blocking-re-enable:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#5626])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@xe_eu_stall@blocking-re-enable.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#4837])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2322]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-dg2-set2: [PASS][70] -> [SKIP][71] ([Intel XE#1392])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_basic@once-userptr-invalidate-race:
- shard-dg2-set2: [PASS][72] -> [SKIP][73] ([Intel XE#4208]) +266 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@xe_exec_basic@once-userptr-invalidate-race.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_exec_basic@once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#288]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [PASS][75] -> [DMESG-WARN][76] ([Intel XE#3876])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#4943])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@twice-mmap-new-huge:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#4915]) +45 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@xe_exec_system_allocator@twice-mmap-new-huge.html
* igt@xe_gt_freq@freq_suspend:
- shard-bmg: [PASS][79] -> [DMESG-WARN][80] ([Intel XE#3428] / [Intel XE#5215])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@xe_gt_freq@freq_suspend.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@xe_gt_freq@freq_suspend.html
* igt@xe_oa@buffer-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#3573]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@xe_oa@buffer-fill.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1337])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2284] / [Intel XE#366])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2284])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-basic-exec:
- shard-adlp: [PASS][85] -> [DMESG-WARN][86] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#569])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-1/igt@xe_pm@s3-basic-exec.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-3/igt@xe_pm@s3-basic-exec.html
* {igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1} (NEW):
- shard-bmg: NOTRUN -> [ABORT][87] ([Intel XE#3970])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-7/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#4733])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#944])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@xe_query@multigpu-query-invalid-query.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#944]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#3342])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@xe_sriov_flr@flr-each-isolation.html
#### Possible fixes ####
* igt@kms_async_flips@crc:
- shard-adlp: [DMESG-FAIL][92] ([Intel XE#4543]) -> [PASS][93] +2 other tests pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-6/igt@kms_async_flips@crc.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-2/igt@kms_async_flips@crc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][94] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][96] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][98] ([Intel XE#2291]) -> [PASS][99] +5 other tests pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-bmg: [SKIP][100] ([Intel XE#2316]) -> [PASS][101] +4 other tests pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][102] ([Intel XE#301]) -> [PASS][103] +1 other test pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][104] ([Intel XE#4543]) -> [PASS][105] +6 other tests pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][106] ([Intel XE#3012]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [SKIP][108] ([Intel XE#4596]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- shard-adlp: [DMESG-WARN][110] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][111] +5 other tests pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-4/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][112] ([Intel XE#1435]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][114] ([Intel XE#4227]) -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-lnl-3/igt@kms_vrr@flipline.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-lnl-7/igt@kms_vrr@flipline.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: [SKIP][116] ([Intel XE#1091] / [Intel XE#2849]) -> [PASS][117] +1 other test pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_exec_basic@multigpu-once-basic:
- shard-dg2-set2: [SKIP][118] ([Intel XE#1392]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-464/igt@xe_exec_basic@multigpu-once-basic.html
* {igt@xe_exec_system_allocator@many-stride-malloc-prefetch}:
- shard-bmg: [WARN][120] ([Intel XE#5786]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-bmg: [SKIP][122] ([Intel XE#4650]) -> [PASS][123] +1 other test pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-1/igt@xe_pmu@fn-engine-activity-load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-1/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-bmg: [SKIP][124] ([Intel XE#4130]) -> [PASS][125] +5 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-8/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-2/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [SKIP][126] ([Intel XE#3342]) -> [PASS][127] +1 other test pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [SKIP][128] ([Intel XE#4273]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-bmg: [SKIP][130] ([Intel XE#4351]) -> [PASS][131] +1 other test pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][132] ([Intel XE#623]) -> [SKIP][133] ([Intel XE#4208] / [i915#2575])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][134] ([Intel XE#316]) -> [SKIP][135] ([Intel XE#4208]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][136] ([Intel XE#316]) -> [SKIP][137] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][138] ([Intel XE#1124]) -> [SKIP][139] ([Intel XE#2351] / [Intel XE#4208])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][140] ([Intel XE#1124]) -> [SKIP][141] ([Intel XE#4208]) +14 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][142] ([Intel XE#2191]) -> [SKIP][143] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][144] ([Intel XE#367]) -> [SKIP][145] ([Intel XE#4208] / [i915#2575]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][146] ([Intel XE#2907]) -> [SKIP][147] ([Intel XE#4208]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][148] ([Intel XE#3442]) -> [SKIP][149] ([Intel XE#4208])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-dg2-set2: [SKIP][150] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][151] ([Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][152] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][153] ([Intel XE#4208]) +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][154] ([Intel XE#306]) -> [SKIP][155] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][156] ([Intel XE#373]) -> [SKIP][157] ([Intel XE#4208] / [i915#2575]) +14 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][158] ([Intel XE#1178]) -> [SKIP][159] ([Intel XE#2341]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-5/igt@kms_content_protection@atomic.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [FAIL][160] ([Intel XE#1178]) -> [SKIP][161] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@kms_content_protection@lic-type-0.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][162] ([Intel XE#455]) -> [SKIP][163] ([Intel XE#4208] / [i915#2575]) +9 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@kms_content_protection@lic-type-1.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: [SKIP][164] ([Intel XE#308]) -> [SKIP][165] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][166] ([Intel XE#323]) -> [SKIP][167] ([Intel XE#4208] / [i915#2575])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: [SKIP][168] ([Intel XE#4354]) -> [SKIP][169] ([Intel XE#4208])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@kms_dp_link_training@non-uhbr-mst.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: [SKIP][170] ([Intel XE#4422]) -> [SKIP][171] ([Intel XE#4208])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][172] ([Intel XE#776]) -> [SKIP][173] ([Intel XE#4208])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][174] ([Intel XE#1135]) -> [SKIP][175] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@kms_feature_discovery@psr1.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [DMESG-WARN][176] ([Intel XE#4543] / [Intel XE#5208]) -> [DMESG-WARN][177] ([Intel XE#5208])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-6/igt@kms_flip@flip-vs-rmfb.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-2/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][178] ([Intel XE#4543]) -> [DMESG-WARN][179] ([Intel XE#2953] / [Intel XE#4173])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2-set2: [SKIP][180] ([Intel XE#455]) -> [SKIP][181] ([Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][182] ([Intel XE#455]) -> [SKIP][183] ([Intel XE#4208]) +6 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][184] ([Intel XE#2312]) -> [SKIP][185] ([Intel XE#2311]) +12 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- 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-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][188] ([Intel XE#651]) -> [SKIP][189] ([Intel XE#4208]) +24 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][190] ([Intel XE#651]) -> [SKIP][191] ([Intel XE#2351] / [Intel XE#4208]) +16 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][192] ([Intel XE#5390]) -> [SKIP][193] ([Intel XE#2312]) +10 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][194] ([Intel XE#2312]) -> [SKIP][195] ([Intel XE#5390]) +6 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][196] ([Intel XE#653]) -> [SKIP][197] ([Intel XE#4208]) +33 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][198] ([Intel XE#2312]) -> [SKIP][199] ([Intel XE#2313]) +12 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][200] ([Intel XE#653]) -> [SKIP][201] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][202] ([Intel XE#658]) -> [SKIP][203] ([Intel XE#2351] / [Intel XE#4208])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][204] ([Intel XE#1158]) -> [SKIP][205] ([Intel XE#4208])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][206] ([Intel XE#2313]) -> [SKIP][207] ([Intel XE#2312]) +17 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][208] ([Intel XE#346]) -> [SKIP][209] ([Intel XE#4208])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg2-set2: [SKIP][210] ([Intel XE#5021]) -> [SKIP][211] ([Intel XE#4208] / [i915#2575])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@kms_plane_multiple@2x-tiling-yf.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][212] ([Intel XE#870]) -> [SKIP][213] ([Intel XE#4208]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][214] ([Intel XE#1122]) -> [SKIP][215] ([Intel XE#2351] / [Intel XE#4208])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_pm_dc@dc3co-vpb-simulation.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][216] ([Intel XE#3309]) -> [SKIP][217] ([Intel XE#4208])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@kms_pm_dc@dc5-retention-flops.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: [FAIL][218] ([Intel XE#3325]) -> [SKIP][219] ([Intel XE#734])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][220] ([Intel XE#1489]) -> [SKIP][221] ([Intel XE#4208]) +11 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][222] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][223] ([Intel XE#4208]) +14 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-dpms:
- shard-dg2-set2: [SKIP][224] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][225] ([Intel XE#2351] / [Intel XE#4208]) +6 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@kms_psr@pr-dpms.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_psr@pr-dpms.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][226] ([Intel XE#2939]) -> [SKIP][227] ([Intel XE#2351] / [Intel XE#4208])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: [SKIP][228] ([Intel XE#3414]) -> [SKIP][229] ([Intel XE#4208] / [i915#2575]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-270.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][230] ([Intel XE#2426]) -> [FAIL][231] ([Intel XE#1729])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-set2: [FAIL][232] ([Intel XE#1729]) -> [SKIP][233] ([Intel XE#4208] / [i915#2575])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][235] ([Intel XE#4208])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][236] ([Intel XE#1126]) -> [SKIP][237] ([Intel XE#4208])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eu_stall@invalid-event-report-count:
- shard-dg2-set2: [SKIP][238] ([Intel XE#5626]) -> [SKIP][239] ([Intel XE#4208]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@xe_eu_stall@invalid-event-report-count.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_eu_stall@invalid-event-report-count.html
* igt@xe_eudebug@vma-ufence-faultable:
- shard-dg2-set2: [SKIP][240] ([Intel XE#4837]) -> [SKIP][241] ([Intel XE#4208]) +21 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@xe_eudebug@vma-ufence-faultable.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_eudebug@vma-ufence-faultable.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][242] ([Intel XE#1392]) -> [INCOMPLETE][243] ([Intel XE#4842])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-464/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr:
- shard-dg2-set2: [SKIP][244] ([Intel XE#1392]) -> [SKIP][245] ([Intel XE#4208])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: [SKIP][246] ([Intel XE#288]) -> [SKIP][247] ([Intel XE#4208]) +37 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][248] ([Intel XE#2360]) -> [SKIP][249] ([Intel XE#4208])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc:
- shard-dg2-set2: [SKIP][250] ([Intel XE#4915]) -> [SKIP][251] ([Intel XE#4208]) +374 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][252] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530]) -> [ABORT][253] ([Intel XE#5466] / [Intel XE#5530])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][254] ([Intel XE#3573]) -> [SKIP][255] ([Intel XE#4208]) +9 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [FAIL][256] ([Intel XE#1173]) -> [SKIP][257] ([Intel XE#1061])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-434/igt@xe_peer2peer@read.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-432/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [SKIP][258] ([Intel XE#1061]) -> [SKIP][259] ([Intel XE#1061] / [Intel XE#4208])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@xe_peer2peer@write.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-i2c:
- shard-dg2-set2: [SKIP][260] ([Intel XE#5694]) -> [SKIP][261] ([Intel XE#4208])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@xe_pm@d3cold-i2c.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][262] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][263] ([Intel XE#4208]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3hot-i2c:
- shard-dg2-set2: [SKIP][264] ([Intel XE#5695]) -> [SKIP][265] ([Intel XE#5742])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@xe_pm@d3hot-i2c.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-466/igt@xe_pm@d3hot-i2c.html
- shard-lnl: [SKIP][266] ([Intel XE#5695]) -> [SKIP][267] ([Intel XE#5742])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-lnl-3/igt@xe_pm@d3hot-i2c.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-lnl-5/igt@xe_pm@d3hot-i2c.html
- shard-adlp: [SKIP][268] ([Intel XE#5695]) -> [SKIP][269] ([Intel XE#5742])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-adlp-2/igt@xe_pm@d3hot-i2c.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-adlp-1/igt@xe_pm@d3hot-i2c.html
- shard-bmg: [SKIP][270] ([Intel XE#5695]) -> [SKIP][271] ([Intel XE#5742])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-6/igt@xe_pm@d3hot-i2c.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-5/igt@xe_pm@d3hot-i2c.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-dg2-set2: [SKIP][272] ([Intel XE#4650]) -> [SKIP][273] ([Intel XE#4208]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-466/igt@xe_pmu@all-fn-engine-activity-load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-bmg: [SKIP][274] ([Intel XE#4650]) -> [ABORT][275] ([Intel XE#3970])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-bmg-1/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-bmg-7/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-dg2-set2: [SKIP][276] ([Intel XE#4733]) -> [SKIP][277] ([Intel XE#4208]) +3 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][278] ([Intel XE#944]) -> [SKIP][279] ([Intel XE#4208]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@xe_query@multigpu-query-cs-cycles.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-dg2-set2: [SKIP][280] ([Intel XE#4814]) -> [SKIP][281] ([Intel XE#4208]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-432/igt@xe_render_copy@render-stress-4-copies.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-dg2-set2: [SKIP][282] ([Intel XE#4130]) -> [SKIP][283] ([Intel XE#4208]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8/shard-dg2-463/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/shard-dg2-436/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[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#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3325
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[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#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[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#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5215]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5215
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[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#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5695
[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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* Linux: xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8 -> xe-pw-152615v1
IGT_8488: c4a9bee161f4bb74cbbf81c73b24c416ecf93976 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3512-8463eb0394270c7f78c091aa5f5c7af0abf6fdf8: 8463eb0394270c7f78c091aa5f5c7af0abf6fdf8
xe-pw-152615v1: 152615v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152615v1/index.html
[-- Attachment #2: Type: text/html, Size: 92809 bytes --]
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH 00/10] Introduce drm sharpness property
2025-07-23 15:25 ` Xaver Hugl
2025-07-24 13:59 ` Garg, Nemesa
@ 2025-08-11 10:23 ` Shankar, Uma
1 sibling, 0 replies; 36+ messages in thread
From: Shankar, Uma @ 2025-08-11 10:23 UTC (permalink / raw)
To: Xaver Hugl, Garg, Nemesa, Harry Wentland, Deucher, Alexander,
Liviu Dudau, robdclark@gmail.com, lyude@redhat.com,
maarten.lankhorst@linux.intel.com
Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
dri-devel@lists.freedesktop.org
> -----Original Message-----
> From: dri-devel <dri-devel-bounces@lists.freedesktop.org> On Behalf Of Xaver
> Hugl
> Sent: Wednesday, July 23, 2025 8:56 PM
> To: Garg, Nemesa <nemesa.garg@intel.com>
> Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; dri-
> devel@lists.freedesktop.org
> Subject: Re: [PATCH 00/10] Introduce drm sharpness property
>
> I reviewed the KWin implementation for this (https://invent.kde.org/plasma/kwin/-
> /merge_requests/7689), and the uAPI looks good to me.
Thanks a lot Xaver for the review and valuable feedback.
++ Maintainers
This is regarding property to control Display Sharpness. Series link:
https://patchwork.freedesktop.org/series/138755/
Changes are integrated and working fine with Kwin. More details in the series link above.
Can you please check and ack if this looks good to you so we can plan for merge. Let know if
any feedback or suggestions.
Thanks & Regards,
Uma Shankar
> - Xaver
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH 01/10] drm/drm_crtc: Introduce sharpness strength property
2025-08-07 9:28 ` [PATCH 01/10] drm/drm_crtc: Introduce sharpness strength property Nemesa Garg
@ 2025-08-18 6:06 ` G M, Adarsh
0 siblings, 0 replies; 36+ messages in thread
From: G M, Adarsh @ 2025-08-18 6:06 UTC (permalink / raw)
To: Garg, Nemesa, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Garg, Nemesa, Nautiyal, Ankit K
Hi,
I have tested this patch series (rev 16) with https://invent.kde.org/plasma/kwin/-/merge_requests/7689, uApi works well. The sharpness is applied and the changes are seen immediately and relative to the change in user input (Strength).
Tested-by: Adarsh G M <Adarsh.g.m@intel.com>
Warm regards,
Adarsh G M
-----Original Message-----
From: dri-devel <dri-devel-bounces@lists.freedesktop.org> On Behalf Of Nemesa Garg
Sent: Thursday, August 7, 2025 2:59 PM
To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; dri-devel@lists.freedesktop.org
Cc: Garg, Nemesa <nemesa.garg@intel.com>; Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>
Subject: [PATCH 01/10] drm/drm_crtc: Introduce sharpness strength property
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>
---
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 ecc73d52bfae..2302c2bea28a 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 caa56e039da2..bcdbde681986 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.25.1
^ permalink raw reply related [flat|nested] 36+ messages in thread
* Re: [PATCH 00/10] Introduce drm sharpness property
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (14 preceding siblings ...)
2025-08-07 11:58 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-09-09 8:10 ` Jani Nikula
2025-09-09 8:39 ` Jani Nikula
2025-09-19 11:55 ` Jani Nikula
16 siblings, 1 reply; 36+ messages in thread
From: Jani Nikula @ 2025-09-09 8:10 UTC (permalink / raw)
To: Nemesa Garg, intel-gfx, intel-xe, dri-devel; +Cc: uma.shankar
On Thu, 07 Aug 2025, Nemesa Garg <nemesa.garg@intel.com> wrote:
> 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/
>
> Got ack from kwin maintainer on the UAPI patch.
The Mutter part seems stuck, though.
Cc: Uma
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH 00/10] Introduce drm sharpness property
2025-09-09 8:10 ` [PATCH 00/10] " Jani Nikula
@ 2025-09-09 8:39 ` Jani Nikula
2025-09-09 8:44 ` Garg, Nemesa
0 siblings, 1 reply; 36+ messages in thread
From: Jani Nikula @ 2025-09-09 8:39 UTC (permalink / raw)
To: Nemesa Garg, intel-gfx, intel-xe, dri-devel; +Cc: uma.shankar
On Tue, 09 Sep 2025, Jani Nikula <jani.nikula@linux.intel.com> wrote:
> On Thu, 07 Aug 2025, Nemesa Garg <nemesa.garg@intel.com> wrote:
>> 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/
>>
>> Got ack from kwin maintainer on the UAPI patch.
>
> The Mutter part seems stuck, though.
Also, do you have the link to reviewed and ready kwin enabling?
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH 00/10] Introduce drm sharpness property
2025-09-09 8:39 ` Jani Nikula
@ 2025-09-09 8:44 ` Garg, Nemesa
0 siblings, 0 replies; 36+ messages in thread
From: Garg, Nemesa @ 2025-09-09 8:44 UTC (permalink / raw)
To: Jani Nikula, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Shankar, Uma
> -----Original Message-----
> From: Jani Nikula <jani.nikula@linux.intel.com>
> Sent: Tuesday, September 9, 2025 2:09 PM
> To: Garg, Nemesa <nemesa.garg@intel.com>; intel-gfx@lists.freedesktop.org;
> intel-xe@lists.freedesktop.org; dri-devel@lists.freedesktop.org
> Cc: Shankar, Uma <uma.shankar@intel.com>
> Subject: Re: [PATCH 00/10] Introduce drm sharpness property
>
> On Tue, 09 Sep 2025, Jani Nikula <jani.nikula@linux.intel.com> wrote:
> > On Thu, 07 Aug 2025, Nemesa Garg <nemesa.garg@intel.com> wrote:
> >> 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/
> >>
> >> Got ack from kwin maintainer on the UAPI patch.
> >
> > The Mutter part seems stuck, though.
>
> Also, do you have the link to reviewed and ready kwin enabling?
>
https://invent.kde.org/plasma/kwin/-/merge_requests/7689
This is the KWIN MR which stands approved, waiting for kernel merge.
Regards,
Nemesa
> BR,
> Jani.
>
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH 00/10] Introduce drm sharpness property
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
` (15 preceding siblings ...)
2025-09-09 8:10 ` [PATCH 00/10] " Jani Nikula
@ 2025-09-19 11:55 ` Jani Nikula
2025-09-19 13:01 ` Garg, Nemesa
16 siblings, 1 reply; 36+ messages in thread
From: Jani Nikula @ 2025-09-19 11:55 UTC (permalink / raw)
To: Nemesa Garg, intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg, uma.shankar
On Thu, 07 Aug 2025, Nemesa Garg <nemesa.garg@intel.com> wrote:
> 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.
I was planning on merging this, but AFAICT this is the newest
submission. Basically the CI results are 1½ months old, and I'd prefer
newer.
Also need to figure out which route to merge, drm-misc or drm-intel.
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 36+ messages in thread
* RE: [PATCH 00/10] Introduce drm sharpness property
2025-09-19 11:55 ` Jani Nikula
@ 2025-09-19 13:01 ` Garg, Nemesa
0 siblings, 0 replies; 36+ messages in thread
From: Garg, Nemesa @ 2025-09-19 13:01 UTC (permalink / raw)
To: Jani Nikula, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Shankar, Uma
> -----Original Message-----
> From: Jani Nikula <jani.nikula@linux.intel.com>
> Sent: Friday, September 19, 2025 5:26 PM
> To: Garg, Nemesa <nemesa.garg@intel.com>; intel-gfx@lists.freedesktop.org;
> intel-xe@lists.freedesktop.org; dri-devel@lists.freedesktop.org
> Cc: Garg, Nemesa <nemesa.garg@intel.com>; Shankar, Uma
> <uma.shankar@intel.com>
> Subject: Re: [PATCH 00/10] Introduce drm sharpness property
>
> On Thu, 07 Aug 2025, Nemesa Garg <nemesa.garg@intel.com> wrote:
> > 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.
>
> I was planning on merging this, but AFAICT this is the newest submission.
> Basically the CI results are 1½ months old, and I'd prefer newer.
>
> Also need to figure out which route to merge, drm-misc or drm-intel.
>
> BR,
> Jani.
>
I will sent a new version after rebasing.
Thanks and Regards,
Nemesa
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH 00/10] Introduce drm sharpness property
@ 2025-09-19 14:34 Nemesa Garg
0 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-09-19 14:34 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg
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 strength and winsize register
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 | 24 ++
.../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 | 7 +
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 | 90 +++++-
drivers/gpu/drm/i915/display/skl_scaler.h | 2 +
drivers/gpu/drm/xe/Makefile | 1 +
include/drm/drm_crtc.h | 18 ++
15 files changed, 551 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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH 00/10] Introduce drm sharpness property
@ 2025-09-26 11:37 Nemesa Garg
0 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-09-26 11:37 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg
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.
Minor changes in patch 3, 4 and 5 hence require rb.
Nemesa Garg (10):
drm/drm_crtc: Introduce sharpness strength property
drm/i915/display: Introduce HAS_CASF for sharpness support
drm/i915/display: Add strength and winsize register
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 | 24 ++
.../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, 550 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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH 00/10] Introduce drm sharpness property
@ 2025-10-01 6:34 Nemesa Garg
2025-10-09 11:02 ` Nautiyal, Ankit K
0 siblings, 1 reply; 36+ messages in thread
From: Nemesa Garg @ 2025-10-01 6:34 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel; +Cc: Nemesa Garg
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.
Minor changes in patch 3, 4 and 5 hence require rb.
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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
* Re: [PATCH 00/10] Introduce drm sharpness property
2025-10-01 6:34 Nemesa Garg
@ 2025-10-09 11:02 ` Nautiyal, Ankit K
0 siblings, 0 replies; 36+ messages in thread
From: Nautiyal, Ankit K @ 2025-10-09 11:02 UTC (permalink / raw)
To: Nemesa Garg, intel-gfx, intel-xe, dri-devel
On 10/1/2025 12:04 PM, Nemesa Garg wrote:
> 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.
>
> Minor changes in patch 3, 4 and 5 hence require rb.
>
> 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
Overall series LGTM.
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>
> 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
>
^ permalink raw reply [flat|nested] 36+ messages in thread
* [PATCH 00/10] Introduce drm sharpness property
@ 2025-10-26 17:26 Nemesa Garg
0 siblings, 0 replies; 36+ messages in thread
From: Nemesa Garg @ 2025-10-26 17:26 UTC (permalink / raw)
To: intel-gfx, dri-devel, intel-xe; +Cc: Nemesa Garg
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.
Minor changes in patch 3, 4 and 5 hence require rb
Rebasing the series v20.
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.25.1
^ permalink raw reply [flat|nested] 36+ messages in thread
end of thread, other threads:[~2025-10-26 17:30 UTC | newest]
Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-07 9:28 [PATCH 00/10] Introduce drm sharpness property Nemesa Garg
2025-08-07 9:28 ` [PATCH 01/10] drm/drm_crtc: Introduce sharpness strength property Nemesa Garg
2025-08-18 6:06 ` G M, Adarsh
2025-08-07 9:28 ` [PATCH 02/10] drm/i915/display: Introduce HAS_CASF for sharpness support Nemesa Garg
2025-08-07 9:28 ` [PATCH 03/10] drm/i915/display: Add strength and winsize register Nemesa Garg
2025-08-07 9:28 ` [PATCH 04/10] drm/i915/display: Add filter lut values Nemesa Garg
2025-08-07 9:28 ` [PATCH 05/10] drm/i915/display: Compute the scaler coefficients Nemesa Garg
2025-08-07 9:28 ` [PATCH 06/10] drm/i915/display: Add and compute scaler parameter Nemesa Garg
2025-08-07 9:28 ` [PATCH 07/10] drm/i915/display: Configure the second scaler Nemesa Garg
2025-08-07 9:28 ` [PATCH 08/10] drm/i915/display: Set and get the casf config Nemesa Garg
2025-08-07 9:28 ` [PATCH 09/10] drm/i915/display: Enable/disable casf Nemesa Garg
2025-08-07 9:28 ` [PATCH 10/10] drm/i915/display: Expose sharpness strength property Nemesa Garg
2025-08-07 9:41 ` ✗ CI.checkpatch: warning for Introduce drm sharpness property Patchwork
2025-08-07 9:42 ` ✓ CI.KUnit: success " Patchwork
2025-08-07 9:57 ` ✗ CI.checksparse: warning " Patchwork
2025-08-07 10:45 ` ✓ Xe.CI.BAT: success " Patchwork
2025-08-07 11:58 ` ✗ Xe.CI.Full: failure " Patchwork
2025-09-09 8:10 ` [PATCH 00/10] " Jani Nikula
2025-09-09 8:39 ` Jani Nikula
2025-09-09 8:44 ` Garg, Nemesa
2025-09-19 11:55 ` Jani Nikula
2025-09-19 13:01 ` Garg, Nemesa
-- strict thread matches above, loose matches on Subject: below --
2025-10-26 17:26 Nemesa Garg
2025-10-01 6:34 Nemesa Garg
2025-10-09 11:02 ` Nautiyal, Ankit K
2025-09-26 11:37 Nemesa Garg
2025-09-19 14:34 Nemesa Garg
2025-07-24 13:45 Nemesa Garg
2025-07-28 11:42 ` Garg, Nemesa
2025-05-19 12:26 Nemesa Garg
2025-07-23 15:25 ` Xaver Hugl
2025-07-24 13:59 ` Garg, Nemesa
2025-08-11 10:23 ` Shankar, Uma
2025-04-08 10:24 Nemesa Garg
2025-04-02 12:56 Nemesa Garg
2025-03-04 10:28 Nemesa Garg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox