* [PATCH v2 01/10] drm/i915/alpm: Add dpcd definition for DP2.1 alpm capability
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
@ 2025-11-03 22:09 ` Animesh Manna
2025-11-04 4:01 ` Kandpal, Suraj
2025-11-03 22:09 ` [PATCH v2 02/10] drm/i915/alpm: alpm_init() for DP2.1 Animesh Manna
` (10 subsequent siblings)
11 siblings, 1 reply; 23+ messages in thread
From: Animesh Manna @ 2025-11-03 22:09 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel
Cc: jani.nikula, Animesh Manna, Jouni Högander
Add required dpcd address which will be needed to enable DP2.1 alpm.
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
---
include/drm/display/drm_dp.h | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/include/drm/display/drm_dp.h b/include/drm/display/drm_dp.h
index e4eebabab975..b4bacbcf130e 100644
--- a/include/drm/display/drm_dp.h
+++ b/include/drm/display/drm_dp.h
@@ -1512,6 +1512,8 @@
/* See DP_128B132B_SUPPORTED_LINK_RATES for values */
#define DP_PHY_REPEATER_128B132B_RATES 0xf0007 /* 2.0 */
#define DP_PHY_REPEATER_EQ_DONE 0xf0008 /* 2.0 E11 */
+#define DP_LTTPR_ALPM_CAPABILITIES 0xf0009 /* 2.1 */
+#define DP_TOTAL_LTTPR_CNT 0xf000a /* 2.1 */
enum drm_dp_phy {
DP_PHY_DPRX,
@@ -1691,7 +1693,7 @@ enum drm_dp_phy {
#define DP_DSC_BRANCH_CAP_SIZE 3
#define EDP_PSR_RECEIVER_CAP_SIZE 2
#define EDP_DISPLAY_CTL_CAP_SIZE 5
-#define DP_LTTPR_COMMON_CAP_SIZE 8
+#define DP_LTTPR_COMMON_CAP_SIZE 10
#define DP_LTTPR_PHY_CAP_SIZE 3
#define DP_SDP_AUDIO_TIMESTAMP 0x01
--
2.29.0
^ permalink raw reply related [flat|nested] 23+ messages in thread* RE: [PATCH v2 01/10] drm/i915/alpm: Add dpcd definition for DP2.1 alpm capability
2025-11-03 22:09 ` [PATCH v2 01/10] drm/i915/alpm: Add dpcd definition for DP2.1 alpm capability Animesh Manna
@ 2025-11-04 4:01 ` Kandpal, Suraj
0 siblings, 0 replies; 23+ messages in thread
From: Kandpal, Suraj @ 2025-11-04 4:01 UTC (permalink / raw)
To: Manna, Animesh, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Nikula, Jani, Manna, Animesh, Hogander, Jouni
> Subject: [PATCH v2 01/10] drm/i915/alpm: Add dpcd definition for DP2.1 alpm
> capability
*DPCD
*ALPM
Try to keep abbreviation in uppercase
>
> Add required dpcd address which will be needed to enable DP2.1 alpm.
Diito
Otherwise LGTM,
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> ---
> include/drm/display/drm_dp.h | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/include/drm/display/drm_dp.h b/include/drm/display/drm_dp.h
> index e4eebabab975..b4bacbcf130e 100644
> --- a/include/drm/display/drm_dp.h
> +++ b/include/drm/display/drm_dp.h
> @@ -1512,6 +1512,8 @@
> /* See DP_128B132B_SUPPORTED_LINK_RATES for values */
> #define DP_PHY_REPEATER_128B132B_RATES 0xf0007 /*
> 2.0 */
> #define DP_PHY_REPEATER_EQ_DONE 0xf0008 /* 2.0 E11 */
> +#define DP_LTTPR_ALPM_CAPABILITIES 0xf0009 /* 2.1 */
> +#define DP_TOTAL_LTTPR_CNT 0xf000a /* 2.1 */
>
> enum drm_dp_phy {
> DP_PHY_DPRX,
> @@ -1691,7 +1693,7 @@ enum drm_dp_phy {
> #define DP_DSC_BRANCH_CAP_SIZE 3
> #define EDP_PSR_RECEIVER_CAP_SIZE 2
> #define EDP_DISPLAY_CTL_CAP_SIZE 5
> -#define DP_LTTPR_COMMON_CAP_SIZE 8
> +#define DP_LTTPR_COMMON_CAP_SIZE 10
> #define DP_LTTPR_PHY_CAP_SIZE 3
>
> #define DP_SDP_AUDIO_TIMESTAMP 0x01
> --
> 2.29.0
^ permalink raw reply [flat|nested] 23+ messages in thread
* [PATCH v2 02/10] drm/i915/alpm: alpm_init() for DP2.1
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
2025-11-03 22:09 ` [PATCH v2 01/10] drm/i915/alpm: Add dpcd definition for DP2.1 alpm capability Animesh Manna
@ 2025-11-03 22:09 ` Animesh Manna
2025-11-10 9:01 ` Jani Nikula
2025-11-03 22:09 ` [PATCH v2 03/10] drm/i915/alpm: Enable debugfs " Animesh Manna
` (9 subsequent siblings)
11 siblings, 1 reply; 23+ messages in thread
From: Animesh Manna @ 2025-11-03 22:09 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel
Cc: jani.nikula, Animesh Manna, Jouni Högander
Initialize alpm for DP2.1 and separate out alpm mutex-init
from alpm-init.
v1: Initial version.
v2: Separate out mutex-init. [Jani]
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 1 -
drivers/gpu/drm/i915/display/intel_dp.c | 11 ++++++++++-
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 6372f533f65b..639941e332f3 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -49,7 +49,6 @@ void intel_alpm_init(struct intel_dp *intel_dp)
return;
intel_dp->alpm_dpcd = dpcd;
- mutex_init(&intel_dp->alpm.lock);
}
static int get_silence_period_symbols(const struct intel_crtc_state *crtc_state)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 0ec82fcbcf48..f995a98df2c3 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -6074,8 +6074,12 @@ intel_dp_detect(struct drm_connector *_connector,
if (ret == 1)
connector->base.epoch_counter++;
- if (!intel_dp_is_edp(intel_dp))
+ if (!intel_dp_is_edp(intel_dp)) {
+ if (DISPLAY_VER(display) >= 35)
+ intel_alpm_init(intel_dp);
+
intel_psr_init_dpcd(intel_dp);
+ }
intel_dp_detect_dsc_caps(intel_dp, connector);
@@ -6717,6 +6721,8 @@ static bool intel_edp_init_connector(struct intel_dp *intel_dp,
intel_hpd_enable_detection(encoder);
intel_alpm_init(intel_dp);
+ if (intel_dp->alpm_dpcd)
+ mutex_init(&intel_dp->alpm.lock);
/* Cache DPCD and EDID for edp. */
has_dpcd = intel_edp_init_dpcd(intel_dp, connector);
@@ -6932,6 +6938,9 @@ intel_dp_init_connector(struct intel_digital_port *dig_port,
intel_psr_init(intel_dp);
+ if (DISPLAY_VER(display) >= 35)
+ mutex_init(&intel_dp->alpm.lock);
+
return true;
fail:
--
2.29.0
^ permalink raw reply related [flat|nested] 23+ messages in thread* Re: [PATCH v2 02/10] drm/i915/alpm: alpm_init() for DP2.1
2025-11-03 22:09 ` [PATCH v2 02/10] drm/i915/alpm: alpm_init() for DP2.1 Animesh Manna
@ 2025-11-10 9:01 ` Jani Nikula
0 siblings, 0 replies; 23+ messages in thread
From: Jani Nikula @ 2025-11-10 9:01 UTC (permalink / raw)
To: Animesh Manna, intel-gfx, intel-xe, dri-devel
Cc: Animesh Manna, Jouni Högander
On Tue, 04 Nov 2025, Animesh Manna <animesh.manna@intel.com> wrote:
> Initialize alpm for DP2.1 and separate out alpm mutex-init
> from alpm-init.
>
> v1: Initial version.
> v2: Separate out mutex-init. [Jani]
Under no circumstances should you have two places and code paths to
initialize a mutex.
I think you need two or three functions, one for initializing the mutex
(and potentially other similar stuff), one for dynamic initialization
for eDP and one for DP. Don't sprinkle the display version checks all
over the place.
BR,
Jani.
>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_alpm.c | 1 -
> drivers/gpu/drm/i915/display/intel_dp.c | 11 ++++++++++-
> 2 files changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
> index 6372f533f65b..639941e332f3 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> @@ -49,7 +49,6 @@ void intel_alpm_init(struct intel_dp *intel_dp)
> return;
>
> intel_dp->alpm_dpcd = dpcd;
> - mutex_init(&intel_dp->alpm.lock);
> }
>
> static int get_silence_period_symbols(const struct intel_crtc_state *crtc_state)
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index 0ec82fcbcf48..f995a98df2c3 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -6074,8 +6074,12 @@ intel_dp_detect(struct drm_connector *_connector,
> if (ret == 1)
> connector->base.epoch_counter++;
>
> - if (!intel_dp_is_edp(intel_dp))
> + if (!intel_dp_is_edp(intel_dp)) {
> + if (DISPLAY_VER(display) >= 35)
> + intel_alpm_init(intel_dp);
> +
> intel_psr_init_dpcd(intel_dp);
> + }
>
> intel_dp_detect_dsc_caps(intel_dp, connector);
>
> @@ -6717,6 +6721,8 @@ static bool intel_edp_init_connector(struct intel_dp *intel_dp,
> intel_hpd_enable_detection(encoder);
>
> intel_alpm_init(intel_dp);
> + if (intel_dp->alpm_dpcd)
> + mutex_init(&intel_dp->alpm.lock);
>
> /* Cache DPCD and EDID for edp. */
> has_dpcd = intel_edp_init_dpcd(intel_dp, connector);
> @@ -6932,6 +6938,9 @@ intel_dp_init_connector(struct intel_digital_port *dig_port,
>
> intel_psr_init(intel_dp);
>
> + if (DISPLAY_VER(display) >= 35)
> + mutex_init(&intel_dp->alpm.lock);
> +
> return true;
>
> fail:
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 23+ messages in thread
* [PATCH v2 03/10] drm/i915/alpm: Enable debugfs for DP2.1
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
2025-11-03 22:09 ` [PATCH v2 01/10] drm/i915/alpm: Add dpcd definition for DP2.1 alpm capability Animesh Manna
2025-11-03 22:09 ` [PATCH v2 02/10] drm/i915/alpm: alpm_init() for DP2.1 Animesh Manna
@ 2025-11-03 22:09 ` Animesh Manna
2025-11-04 4:08 ` Kandpal, Suraj
2025-11-10 9:03 ` Jani Nikula
2025-11-03 22:09 ` [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time calculation Animesh Manna
` (8 subsequent siblings)
11 siblings, 2 replies; 23+ messages in thread
From: Animesh Manna @ 2025-11-03 22:09 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel
Cc: jani.nikula, Animesh Manna, Jouni Högander
Enable AlPM debug info through lobf debug info.
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 639941e332f3..779718d0c8dd 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -541,9 +541,15 @@ void intel_alpm_lobf_debugfs_add(struct intel_connector *connector)
struct intel_display *display = to_intel_display(connector);
struct dentry *root = connector->base.debugfs_entry;
- if (DISPLAY_VER(display) < 20 ||
- connector->base.connector_type != DRM_MODE_CONNECTOR_eDP)
+ if (connector->base.connector_type == DRM_MODE_CONNECTOR_DisplayPort) {
+ if (DISPLAY_VER(display) < 35)
+ return;
+ } else if (connector->base.connector_type == DRM_MODE_CONNECTOR_eDP) {
+ if (DISPLAY_VER(display) < 20)
+ return;
+ } else {
return;
+ }
debugfs_create_file("i915_edp_lobf_debug", 0644, root,
connector, &i915_edp_lobf_debug_fops);
--
2.29.0
^ permalink raw reply related [flat|nested] 23+ messages in thread* RE: [PATCH v2 03/10] drm/i915/alpm: Enable debugfs for DP2.1
2025-11-03 22:09 ` [PATCH v2 03/10] drm/i915/alpm: Enable debugfs " Animesh Manna
@ 2025-11-04 4:08 ` Kandpal, Suraj
2025-11-10 9:03 ` Jani Nikula
1 sibling, 0 replies; 23+ messages in thread
From: Kandpal, Suraj @ 2025-11-04 4:08 UTC (permalink / raw)
To: Manna, Animesh, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Nikula, Jani, Manna, Animesh, Hogander, Jouni
> Subject: [PATCH v2 03/10] drm/i915/alpm: Enable debugfs for DP2.1
>
> Enable AlPM debug info through lobf debug info.
>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_alpm.c | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c
> b/drivers/gpu/drm/i915/display/intel_alpm.c
> index 639941e332f3..779718d0c8dd 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> @@ -541,9 +541,15 @@ void intel_alpm_lobf_debugfs_add(struct
> intel_connector *connector)
> struct intel_display *display = to_intel_display(connector);
> struct dentry *root = connector->base.debugfs_entry;
>
> - if (DISPLAY_VER(display) < 20 ||
> - connector->base.connector_type !=
> DRM_MODE_CONNECTOR_eDP)
> + if (connector->base.connector_type ==
> DRM_MODE_CONNECTOR_DisplayPort) {
> + if (DISPLAY_VER(display) < 35)
> + return;
> + } else if (connector->base.connector_type ==
> DRM_MODE_CONNECTOR_eDP) {
> + if (DISPLAY_VER(display) < 20)
> + return;
> + } else {
> return;
> + }
How about
if (!((connector->base.connector_type == DRM_MODE_CONNECTOR_DisplayPort && DISPLAY_VER(display) >= 35) ||
(connector->base.connector_type == DRM_MODE_CONNECTOR_eDP && DISPLAY_VER(display) >= 20)))
return;
Regards,
Suraj Kandpal
>
> debugfs_create_file("i915_edp_lobf_debug", 0644, root,
> connector, &i915_edp_lobf_debug_fops);
> --
> 2.29.0
^ permalink raw reply [flat|nested] 23+ messages in thread* Re: [PATCH v2 03/10] drm/i915/alpm: Enable debugfs for DP2.1
2025-11-03 22:09 ` [PATCH v2 03/10] drm/i915/alpm: Enable debugfs " Animesh Manna
2025-11-04 4:08 ` Kandpal, Suraj
@ 2025-11-10 9:03 ` Jani Nikula
1 sibling, 0 replies; 23+ messages in thread
From: Jani Nikula @ 2025-11-10 9:03 UTC (permalink / raw)
To: Animesh Manna, intel-gfx, intel-xe, dri-devel
Cc: Animesh Manna, Jouni Högander
On Tue, 04 Nov 2025, Animesh Manna <animesh.manna@intel.com> wrote:
> Enable AlPM debug info through lobf debug info.
>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_alpm.c | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
> index 639941e332f3..779718d0c8dd 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> @@ -541,9 +541,15 @@ void intel_alpm_lobf_debugfs_add(struct intel_connector *connector)
> struct intel_display *display = to_intel_display(connector);
> struct dentry *root = connector->base.debugfs_entry;
>
> - if (DISPLAY_VER(display) < 20 ||
> - connector->base.connector_type != DRM_MODE_CONNECTOR_eDP)
> + if (connector->base.connector_type == DRM_MODE_CONNECTOR_DisplayPort) {
> + if (DISPLAY_VER(display) < 35)
> + return;
> + } else if (connector->base.connector_type == DRM_MODE_CONNECTOR_eDP) {
> + if (DISPLAY_VER(display) < 20)
> + return;
> + } else {
> return;
> + }
These are the same conditions that you're sprinkling all over the place
in the previous patch, and basically boil down to "does the connector
support alpm?"
BR,
Jani.
>
> debugfs_create_file("i915_edp_lobf_debug", 0644, root,
> connector, &i915_edp_lobf_debug_fops);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 23+ messages in thread
* [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time calculation
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
` (2 preceding siblings ...)
2025-11-03 22:09 ` [PATCH v2 03/10] drm/i915/alpm: Enable debugfs " Animesh Manna
@ 2025-11-03 22:09 ` Animesh Manna
2025-11-07 4:00 ` Kandpal, Suraj
2025-11-03 22:09 ` [PATCH v2 05/10] drm/i915/alpm: Auxless wake time calculation for Xe3p Animesh Manna
` (7 subsequent siblings)
11 siblings, 1 reply; 23+ messages in thread
From: Animesh Manna @ 2025-11-03 22:09 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel
Cc: jani.nikula, Animesh Manna, Jouni Högander
Divide the auxless wake time calculation in parts which will
help later to add Xe3p related modification.
v1: Initial version.
v2: Refactor first existing calculation. [Jani]
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 37 ++++++++++++++++-------
1 file changed, 26 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 779718d0c8dd..8d07455a62c2 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -85,6 +85,26 @@ static int get_lfps_half_cycle_clocks(const struct intel_crtc_state *crtc_state)
1000 / (2 * LFPS_CYCLE_COUNT);
}
+static int get_tphy2_p2_to_p0(struct intel_dp *intel_dp)
+{
+ return 12 * 1000;
+}
+
+static int get_establishment_period(struct intel_dp *intel_dp,
+ const struct intel_crtc_state *crtc_state)
+{
+ int port_clock = crtc_state->port_clock;
+ int t1 = 50 * 1000;
+ int tps4 = (252 * 10);
+ long tml_phy_lock = 1000 * 1000 * tps4 / port_clock / 10;
+ int tcds, establishment_period;
+
+ tcds = (7 + DIV_ROUND_UP(6500, tml_phy_lock) + 1) * tml_phy_lock;
+ establishment_period = (SILENCE_PERIOD_TIME + t1 + tcds);
+
+ return establishment_period;
+}
+
/*
* AUX-Less Wake Time = CEILING( ((PHY P2 to P0) + tLFPS_Period, Max+
* tSilence, Max+ tPHY Establishment + tCDS) / tline)
@@ -104,19 +124,14 @@ static int get_lfps_half_cycle_clocks(const struct intel_crtc_state *crtc_state)
* tML_PHY_LOCK = TPS4 Length * ( 10 / (Link Rate in MHz) )
* TPS4 Length = 252 Symbols
*/
-static int _lnl_compute_aux_less_wake_time(const struct intel_crtc_state *crtc_state)
+static int _lnl_compute_aux_less_wake_time(struct intel_dp *intel_dp,
+ const struct intel_crtc_state *crtc_state)
{
- int tphy2_p2_to_p0 = 12 * 1000;
- int t1 = 50 * 1000;
- int tps4 = 252;
- /* port_clock is link rate in 10kbit/s units */
- int tml_phy_lock = 1000 * 1000 * tps4 / crtc_state->port_clock;
- int num_ml_phy_lock = 7 + DIV_ROUND_UP(6500, tml_phy_lock) + 1;
- int t2 = num_ml_phy_lock * tml_phy_lock;
- int tcds = 1 * t2;
+ int tphy2_p2_to_p0 = get_tphy2_p2_to_p0(intel_dp);
+ int establishment_period = get_establishment_period(intel_dp, crtc_state);
return DIV_ROUND_UP(tphy2_p2_to_p0 + get_lfps_cycle_time(crtc_state) +
- SILENCE_PERIOD_TIME + t1 + tcds, 1000);
+ establishment_period, 1000);
}
static int
@@ -128,7 +143,7 @@ _lnl_compute_aux_less_alpm_params(struct intel_dp *intel_dp,
lfps_half_cycle;
aux_less_wake_time =
- _lnl_compute_aux_less_wake_time(crtc_state);
+ _lnl_compute_aux_less_wake_time(intel_dp, crtc_state);
aux_less_wake_lines = intel_usecs_to_scanlines(&crtc_state->hw.adjusted_mode,
aux_less_wake_time);
silence_period = get_silence_period_symbols(crtc_state);
--
2.29.0
^ permalink raw reply related [flat|nested] 23+ messages in thread* RE: [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time calculation
2025-11-03 22:09 ` [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time calculation Animesh Manna
@ 2025-11-07 4:00 ` Kandpal, Suraj
2025-11-07 9:32 ` Manna, Animesh
0 siblings, 1 reply; 23+ messages in thread
From: Kandpal, Suraj @ 2025-11-07 4:00 UTC (permalink / raw)
To: Manna, Animesh, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Nikula, Jani, Manna, Animesh, Hogander, Jouni
> Subject: [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time
> calculation
>
> Divide the auxless wake time calculation in parts which will help later to add
> Xe3p related modification.
>
> v1: Initial version.
No need for this you can start off with v2 directly
Same for all patches where this has occured
> v2: Refactor first existing calculation. [Jani]
>
Add Bspec link
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_alpm.c | 37 ++++++++++++++++-------
> 1 file changed, 26 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c
> b/drivers/gpu/drm/i915/display/intel_alpm.c
> index 779718d0c8dd..8d07455a62c2 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> @@ -85,6 +85,26 @@ static int get_lfps_half_cycle_clocks(const struct
> intel_crtc_state *crtc_state)
> 1000 / (2 * LFPS_CYCLE_COUNT);
> }
>
> +static int get_tphy2_p2_to_p0(struct intel_dp *intel_dp) {
> + return 12 * 1000;
> +}
> +
> +static int get_establishment_period(struct intel_dp *intel_dp,
> + const struct intel_crtc_state *crtc_state) {
> + int port_clock = crtc_state->port_clock;
> + int t1 = 50 * 1000;
> + int tps4 = (252 * 10);
Where did this * 10 come from?
> + long tml_phy_lock = 1000 * 1000 * tps4 / port_clock / 10;
Why the extra /10 required here also if you had not multiplied tps4 with 10 then this wouldn't be required
You also removed the comment telling us portclock need to be in 10Kb/s
> + int tcds, establishment_period;
> +
> + tcds = (7 + DIV_ROUND_UP(6500, tml_phy_lock) + 1) * tml_phy_lock;
> + establishment_period = (SILENCE_PERIOD_TIME + t1 + tcds);
> +
> + return establishment_period;
> +}
> +
> /*
> * AUX-Less Wake Time = CEILING( ((PHY P2 to P0) + tLFPS_Period, Max+
> * tSilence, Max+ tPHY Establishment + tCDS) / tline) @@ -104,19 +124,14
> @@ static int get_lfps_half_cycle_clocks(const struct intel_crtc_state
> *crtc_state)
> * tML_PHY_LOCK = TPS4 Length * ( 10 / (Link Rate in MHz) )
> * TPS4 Length = 252 Symbols
> */
> -static int _lnl_compute_aux_less_wake_time(const struct intel_crtc_state
> *crtc_state)
> +static int _lnl_compute_aux_less_wake_time(struct intel_dp *intel_dp,
> + const struct intel_crtc_state
I don’t see any justified reason to send intel_dp here
Regards,
Suraj Kandpal
> *crtc_state)
> {
> - int tphy2_p2_to_p0 = 12 * 1000;
> - int t1 = 50 * 1000;
> - int tps4 = 252;
> - /* port_clock is link rate in 10kbit/s units */
> - int tml_phy_lock = 1000 * 1000 * tps4 / crtc_state->port_clock;
> - int num_ml_phy_lock = 7 + DIV_ROUND_UP(6500, tml_phy_lock) + 1;
> - int t2 = num_ml_phy_lock * tml_phy_lock;
> - int tcds = 1 * t2;
> + int tphy2_p2_to_p0 = get_tphy2_p2_to_p0(intel_dp);
> + int establishment_period = get_establishment_period(intel_dp,
> +crtc_state);
>
> return DIV_ROUND_UP(tphy2_p2_to_p0 +
> get_lfps_cycle_time(crtc_state) +
> - SILENCE_PERIOD_TIME + t1 + tcds, 1000);
> + establishment_period, 1000);
> }
>
> static int
> @@ -128,7 +143,7 @@ _lnl_compute_aux_less_alpm_params(struct intel_dp
> *intel_dp,
> lfps_half_cycle;
>
> aux_less_wake_time =
> - _lnl_compute_aux_less_wake_time(crtc_state);
> + _lnl_compute_aux_less_wake_time(intel_dp, crtc_state);
> aux_less_wake_lines = intel_usecs_to_scanlines(&crtc_state-
> >hw.adjusted_mode,
> aux_less_wake_time);
> silence_period = get_silence_period_symbols(crtc_state);
> --
> 2.29.0
^ permalink raw reply [flat|nested] 23+ messages in thread* RE: [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time calculation
2025-11-07 4:00 ` Kandpal, Suraj
@ 2025-11-07 9:32 ` Manna, Animesh
2025-11-10 9:06 ` Jani Nikula
0 siblings, 1 reply; 23+ messages in thread
From: Manna, Animesh @ 2025-11-07 9:32 UTC (permalink / raw)
To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Nikula, Jani, Hogander, Jouni
> -----Original Message-----
> From: Kandpal, Suraj <suraj.kandpal@intel.com>
> Sent: Friday, November 7, 2025 9:31 AM
> To: Manna, Animesh <animesh.manna@intel.com>; intel-
> gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; dri-
> devel@lists.freedesktop.org
> Cc: Nikula, Jani <jani.nikula@intel.com>; Manna, Animesh
> <animesh.manna@intel.com>; Hogander, Jouni
> <jouni.hogander@intel.com>
> Subject: RE: [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time
> calculation
>
> > Subject: [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time
> > calculation
> >
> > Divide the auxless wake time calculation in parts which will help
> > later to add Xe3p related modification.
> >
> > v1: Initial version.
>
> No need for this you can start off with v2 directly Same for all patches where
> this has occured
>
> > v2: Refactor first existing calculation. [Jani]
> >
>
> Add Bspec link
>
> > Cc: Jouni Högander <jouni.hogander@intel.com>
> > Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_alpm.c | 37
> > ++++++++++++++++-------
> > 1 file changed, 26 insertions(+), 11 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c
> > b/drivers/gpu/drm/i915/display/intel_alpm.c
> > index 779718d0c8dd..8d07455a62c2 100644
> > --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> > +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> > @@ -85,6 +85,26 @@ static int get_lfps_half_cycle_clocks(const struct
> > intel_crtc_state *crtc_state)
> > 1000 / (2 * LFPS_CYCLE_COUNT);
> > }
> >
> > +static int get_tphy2_p2_to_p0(struct intel_dp *intel_dp) {
> > + return 12 * 1000;
> > +}
> > +
> > +static int get_establishment_period(struct intel_dp *intel_dp,
> > + const struct intel_crtc_state *crtc_state) {
> > + int port_clock = crtc_state->port_clock;
> > + int t1 = 50 * 1000;
> > + int tps4 = (252 * 10);
>
> Where did this * 10 come from?
The Link Rate Divider (Rate Div) is 10 for 8b/10b and 32 128b/132b. Also please check the next patch for more clarity.
>
> > + long tml_phy_lock = 1000 * 1000 * tps4 / port_clock / 10;
>
> Why the extra /10 required here also if you had not multiplied tps4 with 10
> then this wouldn't be required You also removed the comment telling us
> portclock need to be in 10Kb/s
Divide by 10 always needed due to unit size of 10kb/sec, earlier both negated but for 128b/132b mode rate_div is 32. It will be more clear with next patch where added the changes for 128b/132b.
>
> > + int tcds, establishment_period;
> > +
> > + tcds = (7 + DIV_ROUND_UP(6500, tml_phy_lock) + 1) * tml_phy_lock;
> > + establishment_period = (SILENCE_PERIOD_TIME + t1 + tcds);
> > +
> > + return establishment_period;
> > +}
> > +
> > /*
> > * AUX-Less Wake Time = CEILING( ((PHY P2 to P0) + tLFPS_Period, Max+
> > * tSilence, Max+ tPHY Establishment + tCDS) / tline) @@ -104,19
> > +124,14 @@ static int get_lfps_half_cycle_clocks(const struct
> > intel_crtc_state
> > *crtc_state)
> > * tML_PHY_LOCK = TPS4 Length * ( 10 / (Link Rate in MHz) )
> > * TPS4 Length = 252 Symbols
> > */
> > -static int _lnl_compute_aux_less_wake_time(const struct
> > intel_crtc_state
> > *crtc_state)
> > +static int _lnl_compute_aux_less_wake_time(struct intel_dp *intel_dp,
> > + const struct intel_crtc_state
>
> I don’t see any justified reason to send intel_dp here
Its needed in next patch, fix the function prototype here.
Regards,
Animesh
>
> Regards,
> Suraj Kandpal
>
> > *crtc_state)
> > {
> > - int tphy2_p2_to_p0 = 12 * 1000;
> > - int t1 = 50 * 1000;
> > - int tps4 = 252;
> > - /* port_clock is link rate in 10kbit/s units */
> > - int tml_phy_lock = 1000 * 1000 * tps4 / crtc_state->port_clock;
> > - int num_ml_phy_lock = 7 + DIV_ROUND_UP(6500, tml_phy_lock) + 1;
> > - int t2 = num_ml_phy_lock * tml_phy_lock;
> > - int tcds = 1 * t2;
> > + int tphy2_p2_to_p0 = get_tphy2_p2_to_p0(intel_dp);
> > + int establishment_period = get_establishment_period(intel_dp,
> > +crtc_state);
> >
> > return DIV_ROUND_UP(tphy2_p2_to_p0 +
> > get_lfps_cycle_time(crtc_state) +
> > - SILENCE_PERIOD_TIME + t1 + tcds, 1000);
> > + establishment_period, 1000);
> > }
> >
> > static int
> > @@ -128,7 +143,7 @@ _lnl_compute_aux_less_alpm_params(struct
> intel_dp
> > *intel_dp,
> > lfps_half_cycle;
> >
> > aux_less_wake_time =
> > - _lnl_compute_aux_less_wake_time(crtc_state);
> > + _lnl_compute_aux_less_wake_time(intel_dp, crtc_state);
> > aux_less_wake_lines = intel_usecs_to_scanlines(&crtc_state-
> > >hw.adjusted_mode,
> > aux_less_wake_time);
> > silence_period = get_silence_period_symbols(crtc_state);
> > --
> > 2.29.0
^ permalink raw reply [flat|nested] 23+ messages in thread* RE: [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time calculation
2025-11-07 9:32 ` Manna, Animesh
@ 2025-11-10 9:06 ` Jani Nikula
0 siblings, 0 replies; 23+ messages in thread
From: Jani Nikula @ 2025-11-10 9:06 UTC (permalink / raw)
To: Manna, Animesh, Kandpal, Suraj, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Hogander, Jouni
On Fri, 07 Nov 2025, "Manna, Animesh" <animesh.manna@intel.com> wrote:
>> -----Original Message-----
>> From: Kandpal, Suraj <suraj.kandpal@intel.com>
>> Sent: Friday, November 7, 2025 9:31 AM
>> To: Manna, Animesh <animesh.manna@intel.com>; intel-
>> gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; dri-
>> devel@lists.freedesktop.org
>> Cc: Nikula, Jani <jani.nikula@intel.com>; Manna, Animesh
>> <animesh.manna@intel.com>; Hogander, Jouni
>> <jouni.hogander@intel.com>
>> Subject: RE: [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time
>> calculation
>>
>> > Subject: [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time
>> > calculation
>> >
>> > Divide the auxless wake time calculation in parts which will help
>> > later to add Xe3p related modification.
>> >
>> > v1: Initial version.
>>
>> No need for this you can start off with v2 directly Same for all patches where
>> this has occured
>>
>> > v2: Refactor first existing calculation. [Jani]
>> >
>>
>> Add Bspec link
>>
>> > Cc: Jouni Högander <jouni.hogander@intel.com>
>> > Signed-off-by: Animesh Manna <animesh.manna@intel.com>
>> > ---
>> > drivers/gpu/drm/i915/display/intel_alpm.c | 37
>> > ++++++++++++++++-------
>> > 1 file changed, 26 insertions(+), 11 deletions(-)
>> >
>> > diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c
>> > b/drivers/gpu/drm/i915/display/intel_alpm.c
>> > index 779718d0c8dd..8d07455a62c2 100644
>> > --- a/drivers/gpu/drm/i915/display/intel_alpm.c
>> > +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
>> > @@ -85,6 +85,26 @@ static int get_lfps_half_cycle_clocks(const struct
>> > intel_crtc_state *crtc_state)
>> > 1000 / (2 * LFPS_CYCLE_COUNT);
>> > }
>> >
>> > +static int get_tphy2_p2_to_p0(struct intel_dp *intel_dp) {
>> > + return 12 * 1000;
>> > +}
>> > +
>> > +static int get_establishment_period(struct intel_dp *intel_dp,
>> > + const struct intel_crtc_state *crtc_state) {
>> > + int port_clock = crtc_state->port_clock;
>> > + int t1 = 50 * 1000;
>> > + int tps4 = (252 * 10);
>>
>> Where did this * 10 come from?
>
> The Link Rate Divider (Rate Div) is 10 for 8b/10b and 32
> 128b/132b. Also please check the next patch for more clarity.
Please separate pure code movement and changes like this.
git show --color-moved on the commit should give you a nice idea what
code movement looks like. It's a breeze to review when very few things
change during code movement.
BR,
Jani.
>
>>
>> > + long tml_phy_lock = 1000 * 1000 * tps4 / port_clock / 10;
>>
>> Why the extra /10 required here also if you had not multiplied tps4 with 10
>> then this wouldn't be required You also removed the comment telling us
>> portclock need to be in 10Kb/s
>
> Divide by 10 always needed due to unit size of 10kb/sec, earlier both negated but for 128b/132b mode rate_div is 32. It will be more clear with next patch where added the changes for 128b/132b.
>
>>
>> > + int tcds, establishment_period;
>> > +
>> > + tcds = (7 + DIV_ROUND_UP(6500, tml_phy_lock) + 1) * tml_phy_lock;
>> > + establishment_period = (SILENCE_PERIOD_TIME + t1 + tcds);
>> > +
>> > + return establishment_period;
>> > +}
>> > +
>> > /*
>> > * AUX-Less Wake Time = CEILING( ((PHY P2 to P0) + tLFPS_Period, Max+
>> > * tSilence, Max+ tPHY Establishment + tCDS) / tline) @@ -104,19
>> > +124,14 @@ static int get_lfps_half_cycle_clocks(const struct
>> > intel_crtc_state
>> > *crtc_state)
>> > * tML_PHY_LOCK = TPS4 Length * ( 10 / (Link Rate in MHz) )
>> > * TPS4 Length = 252 Symbols
>> > */
>> > -static int _lnl_compute_aux_less_wake_time(const struct
>> > intel_crtc_state
>> > *crtc_state)
>> > +static int _lnl_compute_aux_less_wake_time(struct intel_dp *intel_dp,
>> > + const struct intel_crtc_state
>>
>> I don’t see any justified reason to send intel_dp here
>
> Its needed in next patch, fix the function prototype here.
>
> Regards,
> Animesh
>
>>
>> Regards,
>> Suraj Kandpal
>>
>> > *crtc_state)
>> > {
>> > - int tphy2_p2_to_p0 = 12 * 1000;
>> > - int t1 = 50 * 1000;
>> > - int tps4 = 252;
>> > - /* port_clock is link rate in 10kbit/s units */
>> > - int tml_phy_lock = 1000 * 1000 * tps4 / crtc_state->port_clock;
>> > - int num_ml_phy_lock = 7 + DIV_ROUND_UP(6500, tml_phy_lock) + 1;
>> > - int t2 = num_ml_phy_lock * tml_phy_lock;
>> > - int tcds = 1 * t2;
>> > + int tphy2_p2_to_p0 = get_tphy2_p2_to_p0(intel_dp);
>> > + int establishment_period = get_establishment_period(intel_dp,
>> > +crtc_state);
>> >
>> > return DIV_ROUND_UP(tphy2_p2_to_p0 +
>> > get_lfps_cycle_time(crtc_state) +
>> > - SILENCE_PERIOD_TIME + t1 + tcds, 1000);
>> > + establishment_period, 1000);
>> > }
>> >
>> > static int
>> > @@ -128,7 +143,7 @@ _lnl_compute_aux_less_alpm_params(struct
>> intel_dp
>> > *intel_dp,
>> > lfps_half_cycle;
>> >
>> > aux_less_wake_time =
>> > - _lnl_compute_aux_less_wake_time(crtc_state);
>> > + _lnl_compute_aux_less_wake_time(intel_dp, crtc_state);
>> > aux_less_wake_lines = intel_usecs_to_scanlines(&crtc_state-
>> > >hw.adjusted_mode,
>> > aux_less_wake_time);
>> > silence_period = get_silence_period_symbols(crtc_state);
>> > --
>> > 2.29.0
>
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 23+ messages in thread
* [PATCH v2 05/10] drm/i915/alpm: Auxless wake time calculation for Xe3p
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
` (3 preceding siblings ...)
2025-11-03 22:09 ` [PATCH v2 04/10] drm/i915/alpm: Refactor Auxless wake time calculation Animesh Manna
@ 2025-11-03 22:09 ` Animesh Manna
2025-11-03 22:09 ` [PATCH v2 06/10] drm/i915/alpm: Half LFPS cycle calculation Animesh Manna
` (6 subsequent siblings)
11 siblings, 0 replies; 23+ messages in thread
From: Animesh Manna @ 2025-11-03 22:09 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel
Cc: jani.nikula, Animesh Manna, Jouni Högander
Add support for auxless waketime calculation for DP2.1 ALPM
as dependent parameter got changed.
v1: Initial version.
v2: Use intel_dp_is_uhbr(). [Jani]
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 51 ++++++++++++++++++++---
1 file changed, 46 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 8d07455a62c2..5686064def8d 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -87,7 +87,9 @@ static int get_lfps_half_cycle_clocks(const struct intel_crtc_state *crtc_state)
static int get_tphy2_p2_to_p0(struct intel_dp *intel_dp)
{
- return 12 * 1000;
+ struct intel_display *display = to_intel_display(intel_dp);
+
+ return DISPLAY_VER(display) >= 35 ? (40 * 1000) : (12 * 1000);
}
static int get_establishment_period(struct intel_dp *intel_dp,
@@ -95,16 +97,54 @@ static int get_establishment_period(struct intel_dp *intel_dp,
{
int port_clock = crtc_state->port_clock;
int t1 = 50 * 1000;
- int tps4 = (252 * 10);
+ int tps4 = intel_dp_is_uhbr(crtc_state) ? (396 * 32) : (252 * 10);
long tml_phy_lock = 1000 * 1000 * tps4 / port_clock / 10;
+ int lttpr_count = 0;
int tcds, establishment_period;
- tcds = (7 + DIV_ROUND_UP(6500, tml_phy_lock) + 1) * tml_phy_lock;
- establishment_period = (SILENCE_PERIOD_TIME + t1 + tcds);
+ if (intel_dp_is_edp(intel_dp)) {
+ tcds = (7 + DIV_ROUND_UP(6500, tml_phy_lock) + 1) * tml_phy_lock;
+ } else {
+ tcds = 7 * tml_phy_lock;
+ lttpr_count = drm_dp_lttpr_count(intel_dp->lttpr_common_caps);
+ }
+
+ if (lttpr_count) {
+ int tlw = 13000;
+ int tcs = 10000;
+ int tlfps_period = get_lfps_cycle_time(crtc_state);
+ int tdcs = (SILENCE_PERIOD_TIME + t1 + tcs +
+ (lttpr_count - 1) * (tlw + tlfps_period));
+ int tacds = 70000;
+ int tds = (lttpr_count - 1) * 7 * tml_phy_lock;
+
+ /* tdrl is same as tcds*/
+ establishment_period = tlw + tlfps_period + tdcs + tacds + tds + tcds;
+ } else {
+ /* TODO: Add a check for data realign by DPCD 0x116[3] */
+
+ establishment_period = (SILENCE_PERIOD_TIME + t1 + tcds);
+ }
return establishment_period;
}
+static int get_switch_to_active(const struct intel_crtc_state *crtc_state)
+{
+ int port_clock = crtc_state->port_clock;
+ int switch_to_active;
+
+ if (intel_dp_is_uhbr(crtc_state)) {
+ int symbol_clock = port_clock / intel_dp_link_symbol_size(port_clock);
+
+ switch_to_active = 32 * DIV_ROUND_UP((396 + 3 + 64), symbol_clock);
+ } else {
+ switch_to_active = 0;
+ }
+
+ return switch_to_active;
+}
+
/*
* AUX-Less Wake Time = CEILING( ((PHY P2 to P0) + tLFPS_Period, Max+
* tSilence, Max+ tPHY Establishment + tCDS) / tline)
@@ -129,9 +169,10 @@ static int _lnl_compute_aux_less_wake_time(struct intel_dp *intel_dp,
{
int tphy2_p2_to_p0 = get_tphy2_p2_to_p0(intel_dp);
int establishment_period = get_establishment_period(intel_dp, crtc_state);
+ int switch_to_active = get_switch_to_active(crtc_state);
return DIV_ROUND_UP(tphy2_p2_to_p0 + get_lfps_cycle_time(crtc_state) +
- establishment_period, 1000);
+ establishment_period + switch_to_active, 1000);
}
static int
--
2.29.0
^ permalink raw reply related [flat|nested] 23+ messages in thread* [PATCH v2 06/10] drm/i915/alpm: Half LFPS cycle calculation
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
` (4 preceding siblings ...)
2025-11-03 22:09 ` [PATCH v2 05/10] drm/i915/alpm: Auxless wake time calculation for Xe3p Animesh Manna
@ 2025-11-03 22:09 ` Animesh Manna
2025-11-03 22:09 ` [PATCH v2 07/10] drm/i915/alpm: Program lttpr count for DP 2.1 alpm Animesh Manna
` (5 subsequent siblings)
11 siblings, 0 replies; 23+ messages in thread
From: Animesh Manna @ 2025-11-03 22:09 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel
Cc: jani.nikula, Animesh Manna, Jouni Högander
Add support for half LFPS cycle calculation for DP2.1 ALPM as dependent
parameters got changed.
v1: Initial version.
v2: Avoid returning early. [Jani]
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 38 +++++++++++++++--------
1 file changed, 25 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 5686064def8d..97813ce2d4d0 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -57,31 +57,43 @@ static int get_silence_period_symbols(const struct intel_crtc_state *crtc_state)
1000 / 1000;
}
-static void get_lfps_cycle_min_max_time(const struct intel_crtc_state *crtc_state,
+static void get_lfps_cycle_min_max_time(struct intel_dp *intel_dp,
+ const struct intel_crtc_state *crtc_state,
int *min, int *max)
{
- if (crtc_state->port_clock < 540000) {
- *min = 65 * LFPS_CYCLE_COUNT;
- *max = 75 * LFPS_CYCLE_COUNT;
+ struct intel_display *display = to_intel_display(intel_dp);
+
+ if (intel_dp_is_edp(intel_dp)) {
+ if (crtc_state->port_clock < 540000) {
+ *min = DISPLAY_VER(display) < 35 ? 65 * LFPS_CYCLE_COUNT : 140;
+ *max = DISPLAY_VER(display) < 35 ? 75 * LFPS_CYCLE_COUNT : 800;
+ } else {
+ *min = 140;
+ *max = 800;
+ }
} else {
- *min = 140;
- *max = 800;
+ *min = 320;
+ *max = 1600;
+ return;
}
}
-static int get_lfps_cycle_time(const struct intel_crtc_state *crtc_state)
+static int get_lfps_cycle_time(struct intel_dp *intel_dp,
+ const struct intel_crtc_state *crtc_state)
{
int tlfps_cycle_min, tlfps_cycle_max;
- get_lfps_cycle_min_max_time(crtc_state, &tlfps_cycle_min,
+ get_lfps_cycle_min_max_time(intel_dp, crtc_state, &tlfps_cycle_min,
&tlfps_cycle_max);
return tlfps_cycle_min + (tlfps_cycle_max - tlfps_cycle_min) / 2;
}
-static int get_lfps_half_cycle_clocks(const struct intel_crtc_state *crtc_state)
+static int get_lfps_half_cycle_clocks(struct intel_dp *intel_dp,
+ const struct intel_crtc_state *crtc_state)
{
- return get_lfps_cycle_time(crtc_state) * crtc_state->port_clock / 1000 /
+ return get_lfps_cycle_time(intel_dp, crtc_state) *
+ crtc_state->port_clock / 1000 /
1000 / (2 * LFPS_CYCLE_COUNT);
}
@@ -112,7 +124,7 @@ static int get_establishment_period(struct intel_dp *intel_dp,
if (lttpr_count) {
int tlw = 13000;
int tcs = 10000;
- int tlfps_period = get_lfps_cycle_time(crtc_state);
+ int tlfps_period = get_lfps_cycle_time(intel_dp, crtc_state);
int tdcs = (SILENCE_PERIOD_TIME + t1 + tcs +
(lttpr_count - 1) * (tlw + tlfps_period));
int tacds = 70000;
@@ -171,7 +183,7 @@ static int _lnl_compute_aux_less_wake_time(struct intel_dp *intel_dp,
int establishment_period = get_establishment_period(intel_dp, crtc_state);
int switch_to_active = get_switch_to_active(crtc_state);
- return DIV_ROUND_UP(tphy2_p2_to_p0 + get_lfps_cycle_time(crtc_state) +
+ return DIV_ROUND_UP(tphy2_p2_to_p0 + get_lfps_cycle_time(intel_dp, crtc_state) +
establishment_period + switch_to_active, 1000);
}
@@ -189,7 +201,7 @@ _lnl_compute_aux_less_alpm_params(struct intel_dp *intel_dp,
aux_less_wake_time);
silence_period = get_silence_period_symbols(crtc_state);
- lfps_half_cycle = get_lfps_half_cycle_clocks(crtc_state);
+ lfps_half_cycle = get_lfps_half_cycle_clocks(intel_dp, crtc_state);
if (aux_less_wake_lines > ALPM_CTL_AUX_LESS_WAKE_TIME_MASK ||
silence_period > PORT_ALPM_CTL_SILENCE_PERIOD_MASK ||
--
2.29.0
^ permalink raw reply related [flat|nested] 23+ messages in thread* [PATCH v2 07/10] drm/i915/alpm: Program lttpr count for DP 2.1 alpm
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
` (5 preceding siblings ...)
2025-11-03 22:09 ` [PATCH v2 06/10] drm/i915/alpm: Half LFPS cycle calculation Animesh Manna
@ 2025-11-03 22:09 ` Animesh Manna
2025-11-03 22:09 ` [PATCH v2 08/10] drm/i915/alpm: Enable MAC Transmitting LFPS for LT phy Animesh Manna
` (4 subsequent siblings)
11 siblings, 0 replies; 23+ messages in thread
From: Animesh Manna @ 2025-11-03 22:09 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel
Cc: jani.nikula, Animesh Manna, Jouni Högander
Issue a aux write transaction to dpcd 0xf000a with total number of lttpr
before link traning.
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
---
.../gpu/drm/i915/display/intel_dp_link_training.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_dp_link_training.c b/drivers/gpu/drm/i915/display/intel_dp_link_training.c
index aad5fe14962f..cf25fd51f452 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_link_training.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_link_training.c
@@ -1624,6 +1624,16 @@ intel_dp_128b132b_link_train(struct intel_dp *intel_dp,
return passed;
}
+static void intel_dp_update_lttpr_count(struct intel_dp *intel_dp,
+ int lttpr_count)
+{
+ if (!intel_dp_is_edp(intel_dp) ||
+ intel_dp->lttpr_common_caps[0] <= 0x20)
+ return;
+
+ drm_dp_dpcd_writeb(&intel_dp->aux, DP_TOTAL_LTTPR_CNT, lttpr_count);
+}
+
/**
* intel_dp_start_link_train - start link training
* @state: Atomic state
@@ -1660,6 +1670,8 @@ void intel_dp_start_link_train(struct intel_atomic_state *state,
intel_dp_prepare_link_train(intel_dp, crtc_state);
+ intel_dp_update_lttpr_count(intel_dp, lttpr_count);
+
if (intel_dp_is_uhbr(crtc_state))
passed = intel_dp_128b132b_link_train(intel_dp, crtc_state, lttpr_count);
else
--
2.29.0
^ permalink raw reply related [flat|nested] 23+ messages in thread* [PATCH v2 08/10] drm/i915/alpm: Enable MAC Transmitting LFPS for LT phy
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
` (6 preceding siblings ...)
2025-11-03 22:09 ` [PATCH v2 07/10] drm/i915/alpm: Program lttpr count for DP 2.1 alpm Animesh Manna
@ 2025-11-03 22:09 ` Animesh Manna
2025-11-04 5:02 ` Kandpal, Suraj
2025-11-03 22:09 ` [PATCH v2 09/10] drm/i915/alpm: Replace is_edp() with alpm_is_possible() Animesh Manna
` (3 subsequent siblings)
11 siblings, 1 reply; 23+ messages in thread
From: Animesh Manna @ 2025-11-03 22:09 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel
Cc: jani.nikula, Animesh Manna, Jouni Högander
Enable LT phy for transmitting LFPS during aux-less alpm.
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_ddi.c | 5 ++-
drivers/gpu/drm/i915/display/intel_lt_phy.c | 35 +++++++++++++++++++
drivers/gpu/drm/i915/display/intel_lt_phy.h | 2 ++
.../gpu/drm/i915/display/intel_lt_phy_regs.h | 3 ++
4 files changed, 44 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
index 733ef4559131..f6450ebea2a8 100644
--- a/drivers/gpu/drm/i915/display/intel_ddi.c
+++ b/drivers/gpu/drm/i915/display/intel_ddi.c
@@ -3781,7 +3781,10 @@ static void mtl_ddi_prepare_link_retrain(struct intel_dp *intel_dp,
* ii. Enable MAC Transmits LFPS in the "PHY Common Control 0" PIPE
* register
*/
- intel_lnl_mac_transmit_lfps(encoder, crtc_state);
+ if (HAS_LT_PHY(display))
+ intel_xe3plpd_mac_transmit_lfps(encoder, crtc_state);
+ else
+ intel_lnl_mac_transmit_lfps(encoder, crtc_state);
}
static void intel_ddi_prepare_link_retrain(struct intel_dp *intel_dp,
diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy.c b/drivers/gpu/drm/i915/display/intel_lt_phy.c
index af48d6cde226..87659a9d9847 100644
--- a/drivers/gpu/drm/i915/display/intel_lt_phy.c
+++ b/drivers/gpu/drm/i915/display/intel_lt_phy.c
@@ -7,6 +7,7 @@
#include "i915_reg.h"
#include "i915_utils.h"
+#include "intel_alpm.h"
#include "intel_cx0_phy.h"
#include "intel_cx0_phy_regs.h"
#include "intel_ddi.h"
@@ -1998,3 +1999,37 @@ void intel_xe3plpd_pll_disable(struct intel_encoder *encoder)
intel_lt_phy_pll_disable(encoder);
}
+
+/*
+ * According to HAS we need to enable MAC Transmitting LFPS in the "PHY Common
+ * Control 0" PIPE register in case of AUX Less ALPM is going to be used. This
+ * function is doing that and is called by link retrain sequence.
+ */
+void intel_xe3plpd_mac_transmit_lfps(struct intel_encoder *encoder,
+ const struct intel_crtc_state *crtc_state)
+{
+ intel_wakeref_t wakeref;
+ int i;
+ u8 owned_lane_mask;
+
+ if (!intel_alpm_is_alpm_aux_less(enc_to_intel_dp(encoder), crtc_state))
+ return;
+
+ owned_lane_mask = intel_lt_phy_get_owned_lane_mask(encoder);
+
+ wakeref = intel_lt_phy_transaction_begin(encoder);
+
+ for (i = 0; i < 4; i++) {
+ int tx = i % 2 + 1;
+ u8 lane_mask = i < 2 ? INTEL_LT_PHY_LANE0 : INTEL_LT_PHY_LANE1;
+
+ if (!(owned_lane_mask & lane_mask))
+ continue;
+
+ intel_lt_phy_rmw(encoder, lane_mask, LT_PHY_CMN_CTL(tx, 0),
+ LT_PHY_CMN_LFPS_ENABLE,
+ LT_PHY_CMN_LFPS_ENABLE, MB_WRITE_COMMITTED);
+ }
+
+ intel_lt_phy_transaction_end(encoder, wakeref);
+}
diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy.h b/drivers/gpu/drm/i915/display/intel_lt_phy.h
index a538d4c69210..7391dd7252d7 100644
--- a/drivers/gpu/drm/i915/display/intel_lt_phy.h
+++ b/drivers/gpu/drm/i915/display/intel_lt_phy.h
@@ -38,6 +38,8 @@ void intel_lt_phy_pll_state_verify(struct intel_atomic_state *state,
void intel_xe3plpd_pll_enable(struct intel_encoder *encoder,
const struct intel_crtc_state *crtc_state);
void intel_xe3plpd_pll_disable(struct intel_encoder *encoder);
+void intel_xe3plpd_mac_transmit_lfps(struct intel_encoder *encoder,
+ const struct intel_crtc_state *crtc_state);
#define HAS_LT_PHY(display) (DISPLAY_VER(display) >= 35)
diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h b/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h
index 9223487d764e..8a19b7cb59dc 100644
--- a/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h
+++ b/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h
@@ -36,6 +36,9 @@
#define LT_PHY_TXY_CTL10_MAC(idx) _MMIO(LT_PHY_TXY_CTL10(idx))
#define LT_PHY_TX_LANE_ENABLE REG_BIT8(0)
+#define LT_PHY_CMN_CTL(idx, control) (0x800 + (0x200 * ((idx) - 1)) + (control))
+#define LT_PHY_CMN_LFPS_ENABLE REG_BIT8(1)
+
/* LT Phy Vendor Register */
#define LT_PHY_VDR_0_CONFIG 0xC02
#define LT_PHY_VDR_DP_PLL_ENABLE REG_BIT(7)
--
2.29.0
^ permalink raw reply related [flat|nested] 23+ messages in thread* RE: [PATCH v2 08/10] drm/i915/alpm: Enable MAC Transmitting LFPS for LT phy
2025-11-03 22:09 ` [PATCH v2 08/10] drm/i915/alpm: Enable MAC Transmitting LFPS for LT phy Animesh Manna
@ 2025-11-04 5:02 ` Kandpal, Suraj
0 siblings, 0 replies; 23+ messages in thread
From: Kandpal, Suraj @ 2025-11-04 5:02 UTC (permalink / raw)
To: Manna, Animesh, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Nikula, Jani, Manna, Animesh, Hogander, Jouni
> Subject: [PATCH v2 08/10] drm/i915/alpm: Enable MAC Transmitting LFPS for
> LT phy
>
> Enable LT phy for transmitting LFPS during aux-less alpm.
Not really !
You are actually enabling MAC to transmit LFPS via LT PHY
>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_ddi.c | 5 ++-
> drivers/gpu/drm/i915/display/intel_lt_phy.c | 35 +++++++++++++++++++
> drivers/gpu/drm/i915/display/intel_lt_phy.h | 2 ++
> .../gpu/drm/i915/display/intel_lt_phy_regs.h | 3 ++
> 4 files changed, 44 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c
> b/drivers/gpu/drm/i915/display/intel_ddi.c
> index 733ef4559131..f6450ebea2a8 100644
> --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> @@ -3781,7 +3781,10 @@ static void mtl_ddi_prepare_link_retrain(struct
> intel_dp *intel_dp,
> * ii. Enable MAC Transmits LFPS in the "PHY Common Control 0"
> PIPE
> * register
> */
> - intel_lnl_mac_transmit_lfps(encoder, crtc_state);
> + if (HAS_LT_PHY(display))
> + intel_xe3plpd_mac_transmit_lfps(encoder, crtc_state);
> + else
> + intel_lnl_mac_transmit_lfps(encoder, crtc_state);
> }
>
> static void intel_ddi_prepare_link_retrain(struct intel_dp *intel_dp, diff --git
> a/drivers/gpu/drm/i915/display/intel_lt_phy.c
> b/drivers/gpu/drm/i915/display/intel_lt_phy.c
> index af48d6cde226..87659a9d9847 100644
> --- a/drivers/gpu/drm/i915/display/intel_lt_phy.c
> +++ b/drivers/gpu/drm/i915/display/intel_lt_phy.c
> @@ -7,6 +7,7 @@
>
> #include "i915_reg.h"
> #include "i915_utils.h"
> +#include "intel_alpm.h"
> #include "intel_cx0_phy.h"
> #include "intel_cx0_phy_regs.h"
> #include "intel_ddi.h"
> @@ -1998,3 +1999,37 @@ void intel_xe3plpd_pll_disable(struct
> intel_encoder *encoder)
> intel_lt_phy_pll_disable(encoder);
>
> }
> +
> +/*
> + * According to HAS we need to enable MAC Transmitting LFPS in the "PHY
> +Common
> + * Control 0" PIPE register in case of AUX Less ALPM is going to be
> +used. This
> + * function is doing that and is called by link retrain sequence.
> + */
> +void intel_xe3plpd_mac_transmit_lfps(struct intel_encoder *encoder,
> + const struct intel_crtc_state *crtc_state) {
> + intel_wakeref_t wakeref;
> + int i;
> + u8 owned_lane_mask;
> +
> + if (!intel_alpm_is_alpm_aux_less(enc_to_intel_dp(encoder),
> crtc_state))
> + return;
> +
> + owned_lane_mask = intel_lt_phy_get_owned_lane_mask(encoder);
> +
> + wakeref = intel_lt_phy_transaction_begin(encoder);
> +
> + for (i = 0; i < 4; i++) {
> + int tx = i % 2 + 1;
> + u8 lane_mask = i < 2 ? INTEL_LT_PHY_LANE0 :
> INTEL_LT_PHY_LANE1;
> +
> + if (!(owned_lane_mask & lane_mask))
> + continue;
> +
> + intel_lt_phy_rmw(encoder, lane_mask, LT_PHY_CMN_CTL(tx,
> 0),
> + LT_PHY_CMN_LFPS_ENABLE,
> + LT_PHY_CMN_LFPS_ENABLE,
> MB_WRITE_COMMITTED);
All this loop not needed you have no dependency on the transmitter
LT_PHY_CMN_CTL0 is only one of its kind at address 0x800.
A simple lt_phy_rmw to enable LT_PHY_CMN_LFPS_ENABLE should work
> + }
> +
> + intel_lt_phy_transaction_end(encoder, wakeref); }
> diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy.h
> b/drivers/gpu/drm/i915/display/intel_lt_phy.h
> index a538d4c69210..7391dd7252d7 100644
> --- a/drivers/gpu/drm/i915/display/intel_lt_phy.h
> +++ b/drivers/gpu/drm/i915/display/intel_lt_phy.h
> @@ -38,6 +38,8 @@ void intel_lt_phy_pll_state_verify(struct
> intel_atomic_state *state, void intel_xe3plpd_pll_enable(struct intel_encoder
> *encoder,
> const struct intel_crtc_state *crtc_state); void
> intel_xe3plpd_pll_disable(struct intel_encoder *encoder);
> +void intel_xe3plpd_mac_transmit_lfps(struct intel_encoder *encoder,
> + const struct intel_crtc_state *crtc_state);
>
> #define HAS_LT_PHY(display) (DISPLAY_VER(display) >= 35)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h
> b/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h
> index 9223487d764e..8a19b7cb59dc 100644
> --- a/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h
> +++ b/drivers/gpu/drm/i915/display/intel_lt_phy_regs.h
> @@ -36,6 +36,9 @@
> #define LT_PHY_TXY_CTL10_MAC(idx) _MMIO(LT_PHY_TXY_CTL10(idx))
> #define LT_PHY_TX_LANE_ENABLE REG_BIT8(0)
>
> +#define LT_PHY_CMN_CTL(idx, control) (0x800 + (0x200 * ((idx) - 1)) +
> (control))
No need should only be 0x800
And name should be LT_PHY_CMN_CTL_0
Regards,
Suraj Kandpal
> +#define LT_PHY_CMN_LFPS_ENABLE REG_BIT8(1)
> +
> /* LT Phy Vendor Register */
> #define LT_PHY_VDR_0_CONFIG 0xC02
> #define LT_PHY_VDR_DP_PLL_ENABLE REG_BIT(7)
> --
> 2.29.0
^ permalink raw reply [flat|nested] 23+ messages in thread
* [PATCH v2 09/10] drm/i915/alpm: Replace is_edp() with alpm_is_possible()
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
` (7 preceding siblings ...)
2025-11-03 22:09 ` [PATCH v2 08/10] drm/i915/alpm: Enable MAC Transmitting LFPS for LT phy Animesh Manna
@ 2025-11-03 22:09 ` Animesh Manna
2025-11-03 22:09 ` [PATCH v2 10/10] drm/i915/alpm: Introduce has_alpm to decouple from pr/psr2/lobf Animesh Manna
` (2 subsequent siblings)
11 siblings, 0 replies; 23+ messages in thread
From: Animesh Manna @ 2025-11-03 22:09 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel
Cc: jani.nikula, Animesh Manna, Jouni Högander
Add a separate alpm_is_possible() which will check for both edp and dp.
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 16 +++++++++++++---
drivers/gpu/drm/i915/display/intel_alpm.h | 1 +
2 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 97813ce2d4d0..16fe66a75f05 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -41,6 +41,16 @@ bool intel_alpm_is_alpm_aux_less(struct intel_dp *intel_dp,
(crtc_state->has_lobf && intel_alpm_aux_less_wake_supported(intel_dp));
}
+bool intel_alpm_is_possible(struct intel_dp *intel_dp)
+{
+ struct intel_display *display = to_intel_display(intel_dp);
+
+ return (DISPLAY_VER(display) >= 12 && intel_dp->alpm_dpcd) ||
+ (DISPLAY_VER(display) >= 35 &&
+ intel_dp->lttpr_common_caps[DP_LTTPR_ALPM_CAPABILITIES -
+ DP_LT_TUNABLE_PHY_REPEATER_FIELD_DATA_STRUCTURE_REV]);
+}
+
void intel_alpm_init(struct intel_dp *intel_dp)
{
u8 dpcd;
@@ -332,7 +342,7 @@ void intel_alpm_lobf_compute_config(struct intel_dp *intel_dp,
if (intel_dp->alpm.sink_alpm_error)
return;
- if (!intel_dp_is_edp(intel_dp))
+ if (!intel_alpm_is_possible(intel_dp))
return;
if (DISPLAY_VER(display) < 20)
@@ -483,7 +493,7 @@ void intel_alpm_pre_plane_update(struct intel_atomic_state *state,
intel_dp = enc_to_intel_dp(encoder);
- if (!intel_dp_is_edp(intel_dp))
+ if (!intel_alpm_is_possible(intel_dp))
continue;
if (old_crtc_state->has_lobf) {
@@ -535,7 +545,7 @@ void intel_alpm_post_plane_update(struct intel_atomic_state *state,
intel_dp = enc_to_intel_dp(encoder);
- if (intel_dp_is_edp(intel_dp)) {
+ if (intel_alpm_is_possible(intel_dp)) {
intel_alpm_enable_sink(intel_dp, crtc_state);
intel_alpm_configure(intel_dp, crtc_state);
}
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.h b/drivers/gpu/drm/i915/display/intel_alpm.h
index 53599b464dea..0c9972faa2e0 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.h
+++ b/drivers/gpu/drm/i915/display/intel_alpm.h
@@ -15,6 +15,7 @@ struct intel_connector;
struct intel_atomic_state;
struct intel_crtc;
+bool intel_alpm_is_possible(struct intel_dp *intel_dp);
void intel_alpm_init(struct intel_dp *intel_dp);
bool intel_alpm_compute_params(struct intel_dp *intel_dp,
struct intel_crtc_state *crtc_state);
--
2.29.0
^ permalink raw reply related [flat|nested] 23+ messages in thread* [PATCH v2 10/10] drm/i915/alpm: Introduce has_alpm to decouple from pr/psr2/lobf
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
` (8 preceding siblings ...)
2025-11-03 22:09 ` [PATCH v2 09/10] drm/i915/alpm: Replace is_edp() with alpm_is_possible() Animesh Manna
@ 2025-11-03 22:09 ` Animesh Manna
2025-11-07 3:49 ` Kandpal, Suraj
2025-11-03 23:48 ` ✓ CI.KUnit: success for Enable DP2.1 alpm (rev2) Patchwork
2025-11-04 13:55 ` ✗ Xe.CI.Full: failure " Patchwork
11 siblings, 1 reply; 23+ messages in thread
From: Animesh Manna @ 2025-11-03 22:09 UTC (permalink / raw)
To: intel-gfx, intel-xe, dri-devel
Cc: jani.nikula, Animesh Manna, Jouni Högander
For DP2.1, ALPM is optional and there can be scenario where panel replay
will be supported without ALPM. So decouple ALPM feaure by has_alpm flag
from related display features.
Cc: Jouni Högander <jouni.hogander@intel.com>
Signed-off-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 7 +++---
.../drm/i915/display/intel_display_types.h | 2 ++
drivers/gpu/drm/i915/display/intel_psr.c | 23 ++++++++-----------
drivers/gpu/drm/i915/display/intel_psr.h | 1 -
4 files changed, 15 insertions(+), 18 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 16fe66a75f05..e1988f43cbb9 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -376,6 +376,8 @@ void intel_alpm_lobf_compute_config(struct intel_dp *intel_dp,
crtc_state->has_lobf = (context_latency + guardband) >
(first_sdp_position + waketime_in_lines);
+
+ crtc_state->has_alpm = crtc_state->has_lobf;
}
static void lnl_alpm_configure(struct intel_dp *intel_dp,
@@ -385,8 +387,7 @@ static void lnl_alpm_configure(struct intel_dp *intel_dp,
enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;
u32 alpm_ctl;
- if (DISPLAY_VER(display) < 20 || (!intel_psr_needs_alpm(intel_dp, crtc_state) &&
- !crtc_state->has_lobf))
+ if (!crtc_state->has_alpm)
return;
mutex_lock(&intel_dp->alpm.lock);
@@ -510,7 +511,7 @@ void intel_alpm_enable_sink(struct intel_dp *intel_dp,
{
u8 val;
- if (!intel_psr_needs_alpm(intel_dp, crtc_state) && !crtc_state->has_lobf)
+ if (!crtc_state->has_alpm)
return;
val = DP_ALPM_ENABLE | DP_ALPM_LOCK_ERROR_IRQ_HPD_ENABLE;
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 00600134bda0..0b60ada4b972 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1392,6 +1392,8 @@ struct intel_crtc_state {
u8 silence_period_sym_clocks;
u8 lfps_half_cycle_num_of_syms;
} alpm_state;
+
+ bool has_alpm;
};
enum intel_pipe_crc_source {
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 05014ffe3ce1..eeb4255b5e5e 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -1681,6 +1681,8 @@ static bool intel_sel_update_config_valid(struct intel_dp *intel_dp,
crtc_state->enable_psr2_su_region_et =
psr2_su_region_et_valid(intel_dp, crtc_state->has_panel_replay);
+ crtc_state->has_alpm = intel_alpm_is_possible(intel_dp);
+
return true;
unsupported:
@@ -1750,11 +1752,17 @@ _panel_replay_compute_config(struct intel_dp *intel_dp,
return false;
}
+ if (intel_alpm_is_possible(intel_dp))
+ crtc_state->has_alpm = alpm_config_valid(intel_dp, crtc_state, true, true, false);
+
if (!intel_dp_is_edp(intel_dp))
return true;
/* Remaining checks are for eDP only */
+ if (!crtc_state->has_alpm)
+ return false;
+
if (to_intel_crtc(crtc_state->uapi.crtc)->pipe != PIPE_A &&
to_intel_crtc(crtc_state->uapi.crtc)->pipe != PIPE_B)
return false;
@@ -1777,9 +1785,6 @@ _panel_replay_compute_config(struct intel_dp *intel_dp,
return false;
}
- if (!alpm_config_valid(intel_dp, crtc_state, true, true, false))
- return false;
-
return true;
}
@@ -4445,16 +4450,6 @@ void intel_psr_connector_debugfs_add(struct intel_connector *connector)
connector, &i915_psr_status_fops);
}
-bool intel_psr_needs_alpm(struct intel_dp *intel_dp, const struct intel_crtc_state *crtc_state)
-{
- /*
- * eDP Panel Replay uses always ALPM
- * PSR2 uses ALPM but PSR1 doesn't
- */
- return intel_dp_is_edp(intel_dp) && (crtc_state->has_sel_update ||
- crtc_state->has_panel_replay);
-}
-
bool intel_psr_needs_alpm_aux_less(struct intel_dp *intel_dp,
const struct intel_crtc_state *crtc_state)
{
@@ -4470,7 +4465,7 @@ void intel_psr_compute_config_late(struct intel_dp *intel_dp,
if (intel_psr_needs_alpm_aux_less(intel_dp, crtc_state))
wake_lines = crtc_state->alpm_state.aux_less_wake_lines;
- else if (intel_psr_needs_alpm(intel_dp, crtc_state))
+ else if (crtc_state->has_alpm)
wake_lines = DISPLAY_VER(display) < 20 ?
psr2_block_count_lines(crtc_state->alpm_state.io_wake_lines,
crtc_state->alpm_state.fast_wake_lines) :
diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h
index 620b35928832..3cb4fa20e427 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.h
+++ b/drivers/gpu/drm/i915/display/intel_psr.h
@@ -80,7 +80,6 @@ void intel_psr_trigger_frame_change_event(struct intel_dsb *dsb,
int intel_psr_min_set_context_latency(const struct intel_crtc_state *crtc_state);
void intel_psr_connector_debugfs_add(struct intel_connector *connector);
void intel_psr_debugfs_register(struct intel_display *display);
-bool intel_psr_needs_alpm(struct intel_dp *intel_dp, const struct intel_crtc_state *crtc_state);
bool intel_psr_needs_alpm_aux_less(struct intel_dp *intel_dp,
const struct intel_crtc_state *crtc_state);
void intel_psr_compute_config_late(struct intel_dp *intel_dp,
--
2.29.0
^ permalink raw reply related [flat|nested] 23+ messages in thread* RE: [PATCH v2 10/10] drm/i915/alpm: Introduce has_alpm to decouple from pr/psr2/lobf
2025-11-03 22:09 ` [PATCH v2 10/10] drm/i915/alpm: Introduce has_alpm to decouple from pr/psr2/lobf Animesh Manna
@ 2025-11-07 3:49 ` Kandpal, Suraj
2025-11-10 7:50 ` Manna, Animesh
0 siblings, 1 reply; 23+ messages in thread
From: Kandpal, Suraj @ 2025-11-07 3:49 UTC (permalink / raw)
To: Manna, Animesh, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Nikula, Jani, Manna, Animesh, Hogander, Jouni
> Subject: [PATCH v2 10/10] drm/i915/alpm: Introduce has_alpm to decouple
> from pr/psr2/lobf
>
> For DP2.1, ALPM is optional and there can be scenario where panel replay will
> be supported without ALPM. So decouple ALPM feaure by has_alpm flag from
Typo *feature
> related display features.
>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_alpm.c | 7 +++---
> .../drm/i915/display/intel_display_types.h | 2 ++
> drivers/gpu/drm/i915/display/intel_psr.c | 23 ++++++++-----------
> drivers/gpu/drm/i915/display/intel_psr.h | 1 -
> 4 files changed, 15 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c
> b/drivers/gpu/drm/i915/display/intel_alpm.c
> index 16fe66a75f05..e1988f43cbb9 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> @@ -376,6 +376,8 @@ void intel_alpm_lobf_compute_config(struct intel_dp
> *intel_dp,
>
> crtc_state->has_lobf = (context_latency + guardband) >
> (first_sdp_position + waketime_in_lines);
> +
> + crtc_state->has_alpm = crtc_state->has_lobf;
> }
>
> static void lnl_alpm_configure(struct intel_dp *intel_dp, @@ -385,8 +387,7
> @@ static void lnl_alpm_configure(struct intel_dp *intel_dp,
> enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;
> u32 alpm_ctl;
>
> - if (DISPLAY_VER(display) < 20 || (!intel_psr_needs_alpm(intel_dp,
> crtc_state) &&
> - !crtc_state->has_lobf))
> + if (!crtc_state->has_alpm)
> return;
>
> mutex_lock(&intel_dp->alpm.lock);
> @@ -510,7 +511,7 @@ void intel_alpm_enable_sink(struct intel_dp
> *intel_dp, {
> u8 val;
>
> - if (!intel_psr_needs_alpm(intel_dp, crtc_state) && !crtc_state-
> >has_lobf)
> + if (!crtc_state->has_alpm)
> return;
>
> val = DP_ALPM_ENABLE |
> DP_ALPM_LOCK_ERROR_IRQ_HPD_ENABLE;
> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> b/drivers/gpu/drm/i915/display/intel_display_types.h
> index 00600134bda0..0b60ada4b972 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> @@ -1392,6 +1392,8 @@ struct intel_crtc_state {
> u8 silence_period_sym_clocks;
> u8 lfps_half_cycle_num_of_syms;
> } alpm_state;
> +
> + bool has_alpm;
> };
>
> enum intel_pipe_crc_source {
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> b/drivers/gpu/drm/i915/display/intel_psr.c
> index 05014ffe3ce1..eeb4255b5e5e 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -1681,6 +1681,8 @@ static bool intel_sel_update_config_valid(struct
> intel_dp *intel_dp,
> crtc_state->enable_psr2_su_region_et =
> psr2_su_region_et_valid(intel_dp, crtc_state-
> >has_panel_replay);
>
> + crtc_state->has_alpm = intel_alpm_is_possible(intel_dp);
> +
> return true;
>
> unsupported:
> @@ -1750,11 +1752,17 @@ _panel_replay_compute_config(struct intel_dp
> *intel_dp,
> return false;
> }
>
> + if (intel_alpm_is_possible(intel_dp))
> + crtc_state->has_alpm = alpm_config_valid(intel_dp,
> crtc_state, true,
> +true, false);
> +
> if (!intel_dp_is_edp(intel_dp))
> return true;
>
> /* Remaining checks are for eDP only */
>
> + if (!crtc_state->has_alpm)
> + return false;
Why return false here didn't you state that ALPM is optional and PR can
Be supported without it.
Regards,
Suraj Kandpal
> +
> if (to_intel_crtc(crtc_state->uapi.crtc)->pipe != PIPE_A &&
> to_intel_crtc(crtc_state->uapi.crtc)->pipe != PIPE_B)
> return false;
> @@ -1777,9 +1785,6 @@ _panel_replay_compute_config(struct intel_dp
> *intel_dp,
> return false;
> }
>
> - if (!alpm_config_valid(intel_dp, crtc_state, true, true, false))
> - return false;
> -
> return true;
> }
>
> @@ -4445,16 +4450,6 @@ void intel_psr_connector_debugfs_add(struct
> intel_connector *connector)
> connector, &i915_psr_status_fops); }
>
> -bool intel_psr_needs_alpm(struct intel_dp *intel_dp, const struct
> intel_crtc_state *crtc_state) -{
> - /*
> - * eDP Panel Replay uses always ALPM
> - * PSR2 uses ALPM but PSR1 doesn't
> - */
> - return intel_dp_is_edp(intel_dp) && (crtc_state->has_sel_update ||
> - crtc_state->has_panel_replay);
> -}
> -
> bool intel_psr_needs_alpm_aux_less(struct intel_dp *intel_dp,
> const struct intel_crtc_state *crtc_state) {
> @@ -4470,7 +4465,7 @@ void intel_psr_compute_config_late(struct
> intel_dp *intel_dp,
>
> if (intel_psr_needs_alpm_aux_less(intel_dp, crtc_state))
> wake_lines = crtc_state->alpm_state.aux_less_wake_lines;
> - else if (intel_psr_needs_alpm(intel_dp, crtc_state))
> + else if (crtc_state->has_alpm)
> wake_lines = DISPLAY_VER(display) < 20 ?
> psr2_block_count_lines(crtc_state-
> >alpm_state.io_wake_lines,
> crtc_state-
> >alpm_state.fast_wake_lines) :
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.h
> b/drivers/gpu/drm/i915/display/intel_psr.h
> index 620b35928832..3cb4fa20e427 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.h
> +++ b/drivers/gpu/drm/i915/display/intel_psr.h
> @@ -80,7 +80,6 @@ void intel_psr_trigger_frame_change_event(struct
> intel_dsb *dsb, int intel_psr_min_set_context_latency(const struct
> intel_crtc_state *crtc_state); void intel_psr_connector_debugfs_add(struct
> intel_connector *connector); void intel_psr_debugfs_register(struct
> intel_display *display); -bool intel_psr_needs_alpm(struct intel_dp *intel_dp,
> const struct intel_crtc_state *crtc_state); bool
> intel_psr_needs_alpm_aux_less(struct intel_dp *intel_dp,
> const struct intel_crtc_state *crtc_state);
> void intel_psr_compute_config_late(struct intel_dp *intel_dp,
> --
> 2.29.0
^ permalink raw reply [flat|nested] 23+ messages in thread* RE: [PATCH v2 10/10] drm/i915/alpm: Introduce has_alpm to decouple from pr/psr2/lobf
2025-11-07 3:49 ` Kandpal, Suraj
@ 2025-11-10 7:50 ` Manna, Animesh
0 siblings, 0 replies; 23+ messages in thread
From: Manna, Animesh @ 2025-11-10 7:50 UTC (permalink / raw)
To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: Nikula, Jani, Hogander, Jouni
> -----Original Message-----
> From: Kandpal, Suraj <suraj.kandpal@intel.com>
> Sent: Friday, November 7, 2025 9:19 AM
> To: Manna, Animesh <animesh.manna@intel.com>; intel-
> gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; dri-
> devel@lists.freedesktop.org
> Cc: Nikula, Jani <jani.nikula@intel.com>; Manna, Animesh
> <animesh.manna@intel.com>; Hogander, Jouni
> <jouni.hogander@intel.com>
> Subject: RE: [PATCH v2 10/10] drm/i915/alpm: Introduce has_alpm to
> decouple from pr/psr2/lobf
>
> > Subject: [PATCH v2 10/10] drm/i915/alpm: Introduce has_alpm to
> > decouple from pr/psr2/lobf
> >
> > For DP2.1, ALPM is optional and there can be scenario where panel
> > replay will be supported without ALPM. So decouple ALPM feaure by
> > has_alpm flag from
>
> Typo *feature
>
> > related display features.
> >
> > Cc: Jouni Högander <jouni.hogander@intel.com>
> > Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_alpm.c | 7 +++---
> > .../drm/i915/display/intel_display_types.h | 2 ++
> > drivers/gpu/drm/i915/display/intel_psr.c | 23 ++++++++-----------
> > drivers/gpu/drm/i915/display/intel_psr.h | 1 -
> > 4 files changed, 15 insertions(+), 18 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c
> > b/drivers/gpu/drm/i915/display/intel_alpm.c
> > index 16fe66a75f05..e1988f43cbb9 100644
> > --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> > +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> > @@ -376,6 +376,8 @@ void intel_alpm_lobf_compute_config(struct
> > intel_dp *intel_dp,
> >
> > crtc_state->has_lobf = (context_latency + guardband) >
> > (first_sdp_position + waketime_in_lines);
> > +
> > + crtc_state->has_alpm = crtc_state->has_lobf;
> > }
> >
> > static void lnl_alpm_configure(struct intel_dp *intel_dp, @@ -385,8
> > +387,7 @@ static void lnl_alpm_configure(struct intel_dp *intel_dp,
> > enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;
> > u32 alpm_ctl;
> >
> > - if (DISPLAY_VER(display) < 20 || (!intel_psr_needs_alpm(intel_dp,
> > crtc_state) &&
> > - !crtc_state->has_lobf))
> > + if (!crtc_state->has_alpm)
> > return;
> >
> > mutex_lock(&intel_dp->alpm.lock);
> > @@ -510,7 +511,7 @@ void intel_alpm_enable_sink(struct intel_dp
> > *intel_dp, {
> > u8 val;
> >
> > - if (!intel_psr_needs_alpm(intel_dp, crtc_state) && !crtc_state-
> > >has_lobf)
> > + if (!crtc_state->has_alpm)
> > return;
> >
> > val = DP_ALPM_ENABLE |
> > DP_ALPM_LOCK_ERROR_IRQ_HPD_ENABLE;
> > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> > b/drivers/gpu/drm/i915/display/intel_display_types.h
> > index 00600134bda0..0b60ada4b972 100644
> > --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> > @@ -1392,6 +1392,8 @@ struct intel_crtc_state {
> > u8 silence_period_sym_clocks;
> > u8 lfps_half_cycle_num_of_syms;
> > } alpm_state;
> > +
> > + bool has_alpm;
> > };
> >
> > enum intel_pipe_crc_source {
> > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> > b/drivers/gpu/drm/i915/display/intel_psr.c
> > index 05014ffe3ce1..eeb4255b5e5e 100644
> > --- a/drivers/gpu/drm/i915/display/intel_psr.c
> > +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> > @@ -1681,6 +1681,8 @@ static bool intel_sel_update_config_valid(struct
> > intel_dp *intel_dp,
> > crtc_state->enable_psr2_su_region_et =
> > psr2_su_region_et_valid(intel_dp, crtc_state-
> > >has_panel_replay);
> >
> > + crtc_state->has_alpm = intel_alpm_is_possible(intel_dp);
> > +
> > return true;
> >
> > unsupported:
> > @@ -1750,11 +1752,17 @@ _panel_replay_compute_config(struct intel_dp
> > *intel_dp,
> > return false;
> > }
> >
> > + if (intel_alpm_is_possible(intel_dp))
> > + crtc_state->has_alpm = alpm_config_valid(intel_dp,
> > crtc_state, true,
> > +true, false);
> > +
> > if (!intel_dp_is_edp(intel_dp))
> > return true;
> >
> > /* Remaining checks are for eDP only */
> >
> > + if (!crtc_state->has_alpm)
> > + return false;
>
> Why return false here didn't you state that ALPM is optional and PR can Be
> supported without it.
This check is for EDP and ALPM is mandatory for EDP-PR.
Regards,
Animesh
>
> Regards,
> Suraj Kandpal
>
> > +
> > if (to_intel_crtc(crtc_state->uapi.crtc)->pipe != PIPE_A &&
> > to_intel_crtc(crtc_state->uapi.crtc)->pipe != PIPE_B)
> > return false;
> > @@ -1777,9 +1785,6 @@ _panel_replay_compute_config(struct intel_dp
> > *intel_dp,
> > return false;
> > }
> >
> > - if (!alpm_config_valid(intel_dp, crtc_state, true, true, false))
> > - return false;
> > -
> > return true;
> > }
> >
> > @@ -4445,16 +4450,6 @@ void intel_psr_connector_debugfs_add(struct
> > intel_connector *connector)
> > connector, &i915_psr_status_fops); }
> >
> > -bool intel_psr_needs_alpm(struct intel_dp *intel_dp, const struct
> > intel_crtc_state *crtc_state) -{
> > - /*
> > - * eDP Panel Replay uses always ALPM
> > - * PSR2 uses ALPM but PSR1 doesn't
> > - */
> > - return intel_dp_is_edp(intel_dp) && (crtc_state->has_sel_update ||
> > - crtc_state->has_panel_replay);
> > -}
> > -
> > bool intel_psr_needs_alpm_aux_less(struct intel_dp *intel_dp,
> > const struct intel_crtc_state *crtc_state) {
> @@ -4470,7
> > +4465,7 @@ void intel_psr_compute_config_late(struct
> > intel_dp *intel_dp,
> >
> > if (intel_psr_needs_alpm_aux_less(intel_dp, crtc_state))
> > wake_lines = crtc_state->alpm_state.aux_less_wake_lines;
> > - else if (intel_psr_needs_alpm(intel_dp, crtc_state))
> > + else if (crtc_state->has_alpm)
> > wake_lines = DISPLAY_VER(display) < 20 ?
> > psr2_block_count_lines(crtc_state-
> > >alpm_state.io_wake_lines,
> > crtc_state-
> > >alpm_state.fast_wake_lines) :
> > diff --git a/drivers/gpu/drm/i915/display/intel_psr.h
> > b/drivers/gpu/drm/i915/display/intel_psr.h
> > index 620b35928832..3cb4fa20e427 100644
> > --- a/drivers/gpu/drm/i915/display/intel_psr.h
> > +++ b/drivers/gpu/drm/i915/display/intel_psr.h
> > @@ -80,7 +80,6 @@ void intel_psr_trigger_frame_change_event(struct
> > intel_dsb *dsb, int intel_psr_min_set_context_latency(const struct
> > intel_crtc_state *crtc_state); void
> > intel_psr_connector_debugfs_add(struct
> > intel_connector *connector); void intel_psr_debugfs_register(struct
> > intel_display *display); -bool intel_psr_needs_alpm(struct intel_dp
> > *intel_dp, const struct intel_crtc_state *crtc_state); bool
> > intel_psr_needs_alpm_aux_less(struct intel_dp *intel_dp,
> > const struct intel_crtc_state *crtc_state);
> void
> > intel_psr_compute_config_late(struct intel_dp *intel_dp,
> > --
> > 2.29.0
^ permalink raw reply [flat|nested] 23+ messages in thread
* ✓ CI.KUnit: success for Enable DP2.1 alpm (rev2)
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
` (9 preceding siblings ...)
2025-11-03 22:09 ` [PATCH v2 10/10] drm/i915/alpm: Introduce has_alpm to decouple from pr/psr2/lobf Animesh Manna
@ 2025-11-03 23:48 ` Patchwork
2025-11-04 13:55 ` ✗ Xe.CI.Full: failure " Patchwork
11 siblings, 0 replies; 23+ messages in thread
From: Patchwork @ 2025-11-03 23:48 UTC (permalink / raw)
To: Animesh Manna; +Cc: intel-xe
== Series Details ==
Series: Enable DP2.1 alpm (rev2)
URL : https://patchwork.freedesktop.org/series/156416/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[23:47:07] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:47:11] 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
[23:47:42] Starting KUnit Kernel (1/1)...
[23:47:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:47:42] ================== guc_buf (11 subtests) ===================
[23:47:42] [PASSED] test_smallest
[23:47:42] [PASSED] test_largest
[23:47:42] [PASSED] test_granular
[23:47:42] [PASSED] test_unique
[23:47:42] [PASSED] test_overlap
[23:47:42] [PASSED] test_reusable
[23:47:42] [PASSED] test_too_big
[23:47:42] [PASSED] test_flush
[23:47:42] [PASSED] test_lookup
[23:47:42] [PASSED] test_data
[23:47:42] [PASSED] test_class
[23:47:42] ===================== [PASSED] guc_buf =====================
[23:47:42] =================== guc_dbm (7 subtests) ===================
[23:47:42] [PASSED] test_empty
[23:47:42] [PASSED] test_default
[23:47:42] ======================== test_size ========================
[23:47:42] [PASSED] 4
[23:47:42] [PASSED] 8
[23:47:42] [PASSED] 32
[23:47:42] [PASSED] 256
[23:47:42] ==================== [PASSED] test_size ====================
[23:47:42] ======================= test_reuse ========================
[23:47:42] [PASSED] 4
[23:47:42] [PASSED] 8
[23:47:42] [PASSED] 32
[23:47:42] [PASSED] 256
[23:47:42] =================== [PASSED] test_reuse ====================
[23:47:42] =================== test_range_overlap ====================
[23:47:42] [PASSED] 4
[23:47:42] [PASSED] 8
[23:47:42] [PASSED] 32
[23:47:42] [PASSED] 256
[23:47:42] =============== [PASSED] test_range_overlap ================
[23:47:42] =================== test_range_compact ====================
[23:47:42] [PASSED] 4
[23:47:42] [PASSED] 8
[23:47:42] [PASSED] 32
[23:47:42] [PASSED] 256
[23:47:42] =============== [PASSED] test_range_compact ================
[23:47:42] ==================== test_range_spare =====================
[23:47:42] [PASSED] 4
[23:47:42] [PASSED] 8
[23:47:42] [PASSED] 32
[23:47:42] [PASSED] 256
[23:47:42] ================ [PASSED] test_range_spare =================
[23:47:42] ===================== [PASSED] guc_dbm =====================
[23:47:42] =================== guc_idm (6 subtests) ===================
[23:47:42] [PASSED] bad_init
[23:47:42] [PASSED] no_init
[23:47:42] [PASSED] init_fini
[23:47:42] [PASSED] check_used
[23:47:42] [PASSED] check_quota
[23:47:42] [PASSED] check_all
[23:47:42] ===================== [PASSED] guc_idm =====================
[23:47:42] ================== no_relay (3 subtests) ===================
[23:47:42] [PASSED] xe_drops_guc2pf_if_not_ready
[23:47:42] [PASSED] xe_drops_guc2vf_if_not_ready
[23:47:42] [PASSED] xe_rejects_send_if_not_ready
[23:47:42] ==================== [PASSED] no_relay =====================
[23:47:42] ================== pf_relay (14 subtests) ==================
[23:47:42] [PASSED] pf_rejects_guc2pf_too_short
[23:47:42] [PASSED] pf_rejects_guc2pf_too_long
[23:47:42] [PASSED] pf_rejects_guc2pf_no_payload
[23:47:42] [PASSED] pf_fails_no_payload
[23:47:42] [PASSED] pf_fails_bad_origin
[23:47:42] [PASSED] pf_fails_bad_type
[23:47:42] [PASSED] pf_txn_reports_error
[23:47:42] [PASSED] pf_txn_sends_pf2guc
[23:47:42] [PASSED] pf_sends_pf2guc
[23:47:42] [SKIPPED] pf_loopback_nop
[23:47:42] [SKIPPED] pf_loopback_echo
[23:47:42] [SKIPPED] pf_loopback_fail
[23:47:42] [SKIPPED] pf_loopback_busy
[23:47:42] [SKIPPED] pf_loopback_retry
[23:47:42] ==================== [PASSED] pf_relay =====================
[23:47:42] ================== vf_relay (3 subtests) ===================
[23:47:42] [PASSED] vf_rejects_guc2vf_too_short
[23:47:42] [PASSED] vf_rejects_guc2vf_too_long
[23:47:42] [PASSED] vf_rejects_guc2vf_no_payload
[23:47:42] ==================== [PASSED] vf_relay =====================
[23:47:42] ===================== lmtt (1 subtest) =====================
[23:47:42] ======================== test_ops =========================
[23:47:42] [PASSED] 2-level
[23:47:42] [PASSED] multi-level
[23:47:42] ==================== [PASSED] test_ops =====================
[23:47:42] ====================== [PASSED] lmtt =======================
[23:47:42] ================= pf_service (11 subtests) =================
[23:47:42] [PASSED] pf_negotiate_any
[23:47:42] [PASSED] pf_negotiate_base_match
[23:47:42] [PASSED] pf_negotiate_base_newer
[23:47:42] [PASSED] pf_negotiate_base_next
[23:47:42] [SKIPPED] pf_negotiate_base_older
[23:47:42] [PASSED] pf_negotiate_base_prev
[23:47:42] [PASSED] pf_negotiate_latest_match
[23:47:42] [PASSED] pf_negotiate_latest_newer
[23:47:42] [PASSED] pf_negotiate_latest_next
[23:47:42] [SKIPPED] pf_negotiate_latest_older
[23:47:42] [SKIPPED] pf_negotiate_latest_prev
[23:47:42] =================== [PASSED] pf_service ====================
[23:47:42] ================= xe_guc_g2g (2 subtests) ==================
[23:47:42] ============== xe_live_guc_g2g_kunit_default ==============
[23:47:42] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[23:47:42] ============== xe_live_guc_g2g_kunit_allmem ===============
[23:47:42] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[23:47:42] =================== [SKIPPED] xe_guc_g2g ===================
[23:47:42] =================== xe_mocs (2 subtests) ===================
[23:47:42] ================ xe_live_mocs_kernel_kunit ================
[23:47:42] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[23:47:42] ================ xe_live_mocs_reset_kunit =================
[23:47:42] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[23:47:42] ==================== [SKIPPED] xe_mocs =====================
[23:47:42] ================= xe_migrate (2 subtests) ==================
[23:47:42] ================= xe_migrate_sanity_kunit =================
[23:47:42] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[23:47:42] ================== xe_validate_ccs_kunit ==================
[23:47:42] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[23:47:42] =================== [SKIPPED] xe_migrate ===================
[23:47:42] ================== xe_dma_buf (1 subtest) ==================
[23:47:42] ==================== xe_dma_buf_kunit =====================
[23:47:42] ================ [SKIPPED] xe_dma_buf_kunit ================
[23:47:42] =================== [SKIPPED] xe_dma_buf ===================
[23:47:42] ================= xe_bo_shrink (1 subtest) =================
[23:47:42] =================== xe_bo_shrink_kunit ====================
[23:47:42] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[23:47:42] ================== [SKIPPED] xe_bo_shrink ==================
[23:47:42] ==================== xe_bo (2 subtests) ====================
[23:47:42] ================== xe_ccs_migrate_kunit ===================
[23:47:42] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[23:47:42] ==================== xe_bo_evict_kunit ====================
[23:47:42] =============== [SKIPPED] xe_bo_evict_kunit ================
[23:47:42] ===================== [SKIPPED] xe_bo ======================
[23:47:42] ==================== args (11 subtests) ====================
[23:47:42] [PASSED] count_args_test
[23:47:42] [PASSED] call_args_example
[23:47:42] [PASSED] call_args_test
[23:47:42] [PASSED] drop_first_arg_example
[23:47:42] [PASSED] drop_first_arg_test
[23:47:42] [PASSED] first_arg_example
[23:47:42] [PASSED] first_arg_test
[23:47:42] [PASSED] last_arg_example
[23:47:42] [PASSED] last_arg_test
[23:47:42] [PASSED] pick_arg_example
[23:47:42] [PASSED] sep_comma_example
[23:47:42] ====================== [PASSED] args =======================
[23:47:42] =================== xe_pci (3 subtests) ====================
[23:47:42] ==================== check_graphics_ip ====================
[23:47:42] [PASSED] 12.00 Xe_LP
[23:47:42] [PASSED] 12.10 Xe_LP+
[23:47:42] [PASSED] 12.55 Xe_HPG
[23:47:42] [PASSED] 12.60 Xe_HPC
[23:47:42] [PASSED] 12.70 Xe_LPG
[23:47:42] [PASSED] 12.71 Xe_LPG
[23:47:42] [PASSED] 12.74 Xe_LPG+
[23:47:42] [PASSED] 20.01 Xe2_HPG
[23:47:42] [PASSED] 20.02 Xe2_HPG
[23:47:42] [PASSED] 20.04 Xe2_LPG
[23:47:42] [PASSED] 30.00 Xe3_LPG
[23:47:42] [PASSED] 30.01 Xe3_LPG
[23:47:42] [PASSED] 30.03 Xe3_LPG
[23:47:42] [PASSED] 30.04 Xe3_LPG
[23:47:42] [PASSED] 30.05 Xe3_LPG
[23:47:42] [PASSED] 35.11 Xe3p_XPC
[23:47:42] ================ [PASSED] check_graphics_ip ================
[23:47:42] ===================== check_media_ip ======================
[23:47:42] [PASSED] 12.00 Xe_M
[23:47:42] [PASSED] 12.55 Xe_HPM
[23:47:42] [PASSED] 13.00 Xe_LPM+
[23:47:42] [PASSED] 13.01 Xe2_HPM
[23:47:42] [PASSED] 20.00 Xe2_LPM
[23:47:42] [PASSED] 30.00 Xe3_LPM
[23:47:42] [PASSED] 30.02 Xe3_LPM
[23:47:42] [PASSED] 35.00 Xe3p_LPM
[23:47:42] [PASSED] 35.03 Xe3p_HPM
[23:47:42] ================= [PASSED] check_media_ip ==================
[23:47:42] =================== check_platform_desc ===================
[23:47:42] [PASSED] 0x9A60 (TIGERLAKE)
[23:47:42] [PASSED] 0x9A68 (TIGERLAKE)
[23:47:42] [PASSED] 0x9A70 (TIGERLAKE)
[23:47:42] [PASSED] 0x9A40 (TIGERLAKE)
[23:47:42] [PASSED] 0x9A49 (TIGERLAKE)
[23:47:42] [PASSED] 0x9A59 (TIGERLAKE)
[23:47:42] [PASSED] 0x9A78 (TIGERLAKE)
[23:47:42] [PASSED] 0x9AC0 (TIGERLAKE)
[23:47:42] [PASSED] 0x9AC9 (TIGERLAKE)
[23:47:42] [PASSED] 0x9AD9 (TIGERLAKE)
[23:47:42] [PASSED] 0x9AF8 (TIGERLAKE)
[23:47:42] [PASSED] 0x4C80 (ROCKETLAKE)
[23:47:42] [PASSED] 0x4C8A (ROCKETLAKE)
[23:47:42] [PASSED] 0x4C8B (ROCKETLAKE)
[23:47:42] [PASSED] 0x4C8C (ROCKETLAKE)
[23:47:42] [PASSED] 0x4C90 (ROCKETLAKE)
[23:47:42] [PASSED] 0x4C9A (ROCKETLAKE)
[23:47:42] [PASSED] 0x4680 (ALDERLAKE_S)
[23:47:42] [PASSED] 0x4682 (ALDERLAKE_S)
[23:47:42] [PASSED] 0x4688 (ALDERLAKE_S)
[23:47:42] [PASSED] 0x468A (ALDERLAKE_S)
[23:47:42] [PASSED] 0x468B (ALDERLAKE_S)
[23:47:42] [PASSED] 0x4690 (ALDERLAKE_S)
[23:47:42] [PASSED] 0x4692 (ALDERLAKE_S)
[23:47:42] [PASSED] 0x4693 (ALDERLAKE_S)
[23:47:42] [PASSED] 0x46A0 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46A1 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46A2 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46A3 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46A6 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46A8 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46AA (ALDERLAKE_P)
[23:47:42] [PASSED] 0x462A (ALDERLAKE_P)
[23:47:42] [PASSED] 0x4626 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x4628 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46B0 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46B1 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46B2 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46B3 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46C0 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46C1 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46C2 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46C3 (ALDERLAKE_P)
[23:47:42] [PASSED] 0x46D0 (ALDERLAKE_N)
[23:47:42] [PASSED] 0x46D1 (ALDERLAKE_N)
[23:47:42] [PASSED] 0x46D2 (ALDERLAKE_N)
[23:47:42] [PASSED] 0x46D3 (ALDERLAKE_N)
[23:47:42] [PASSED] 0x46D4 (ALDERLAKE_N)
[23:47:42] [PASSED] 0xA721 (ALDERLAKE_P)
[23:47:42] [PASSED] 0xA7A1 (ALDERLAKE_P)
[23:47:42] [PASSED] 0xA7A9 (ALDERLAKE_P)
[23:47:42] [PASSED] 0xA7AC (ALDERLAKE_P)
[23:47:42] [PASSED] 0xA7AD (ALDERLAKE_P)
[23:47:42] [PASSED] 0xA720 (ALDERLAKE_P)
[23:47:42] [PASSED] 0xA7A0 (ALDERLAKE_P)
[23:47:42] [PASSED] 0xA7A8 (ALDERLAKE_P)
[23:47:42] [PASSED] 0xA7AA (ALDERLAKE_P)
[23:47:42] [PASSED] 0xA7AB (ALDERLAKE_P)
[23:47:42] [PASSED] 0xA780 (ALDERLAKE_S)
[23:47:42] [PASSED] 0xA781 (ALDERLAKE_S)
[23:47:42] [PASSED] 0xA782 (ALDERLAKE_S)
[23:47:42] [PASSED] 0xA783 (ALDERLAKE_S)
[23:47:42] [PASSED] 0xA788 (ALDERLAKE_S)
[23:47:42] [PASSED] 0xA789 (ALDERLAKE_S)
[23:47:42] [PASSED] 0xA78A (ALDERLAKE_S)
[23:47:42] [PASSED] 0xA78B (ALDERLAKE_S)
[23:47:42] [PASSED] 0x4905 (DG1)
[23:47:42] [PASSED] 0x4906 (DG1)
[23:47:42] [PASSED] 0x4907 (DG1)
[23:47:42] [PASSED] 0x4908 (DG1)
[23:47:42] [PASSED] 0x4909 (DG1)
[23:47:42] [PASSED] 0x56C0 (DG2)
[23:47:42] [PASSED] 0x56C2 (DG2)
[23:47:42] [PASSED] 0x56C1 (DG2)
[23:47:42] [PASSED] 0x7D51 (METEORLAKE)
[23:47:42] [PASSED] 0x7DD1 (METEORLAKE)
[23:47:42] [PASSED] 0x7D41 (METEORLAKE)
[23:47:42] [PASSED] 0x7D67 (METEORLAKE)
[23:47:42] [PASSED] 0xB640 (METEORLAKE)
[23:47:42] [PASSED] 0x56A0 (DG2)
[23:47:42] [PASSED] 0x56A1 (DG2)
[23:47:42] [PASSED] 0x56A2 (DG2)
[23:47:42] [PASSED] 0x56BE (DG2)
[23:47:42] [PASSED] 0x56BF (DG2)
[23:47:42] [PASSED] 0x5690 (DG2)
[23:47:42] [PASSED] 0x5691 (DG2)
[23:47:42] [PASSED] 0x5692 (DG2)
[23:47:42] [PASSED] 0x56A5 (DG2)
[23:47:42] [PASSED] 0x56A6 (DG2)
[23:47:42] [PASSED] 0x56B0 (DG2)
[23:47:42] [PASSED] 0x56B1 (DG2)
[23:47:42] [PASSED] 0x56BA (DG2)
[23:47:42] [PASSED] 0x56BB (DG2)
[23:47:42] [PASSED] 0x56BC (DG2)
[23:47:42] [PASSED] 0x56BD (DG2)
[23:47:42] [PASSED] 0x5693 (DG2)
[23:47:42] [PASSED] 0x5694 (DG2)
[23:47:42] [PASSED] 0x5695 (DG2)
[23:47:42] [PASSED] 0x56A3 (DG2)
[23:47:42] [PASSED] 0x56A4 (DG2)
[23:47:42] [PASSED] 0x56B2 (DG2)
[23:47:42] [PASSED] 0x56B3 (DG2)
[23:47:42] [PASSED] 0x5696 (DG2)
[23:47:42] [PASSED] 0x5697 (DG2)
[23:47:42] [PASSED] 0xB69 (PVC)
[23:47:42] [PASSED] 0xB6E (PVC)
[23:47:42] [PASSED] 0xBD4 (PVC)
[23:47:42] [PASSED] 0xBD5 (PVC)
[23:47:42] [PASSED] 0xBD6 (PVC)
[23:47:42] [PASSED] 0xBD7 (PVC)
[23:47:42] [PASSED] 0xBD8 (PVC)
[23:47:42] [PASSED] 0xBD9 (PVC)
[23:47:42] [PASSED] 0xBDA (PVC)
[23:47:42] [PASSED] 0xBDB (PVC)
[23:47:42] [PASSED] 0xBE0 (PVC)
[23:47:42] [PASSED] 0xBE1 (PVC)
[23:47:42] [PASSED] 0xBE5 (PVC)
[23:47:42] [PASSED] 0x7D40 (METEORLAKE)
[23:47:42] [PASSED] 0x7D45 (METEORLAKE)
[23:47:42] [PASSED] 0x7D55 (METEORLAKE)
[23:47:42] [PASSED] 0x7D60 (METEORLAKE)
[23:47:42] [PASSED] 0x7DD5 (METEORLAKE)
[23:47:42] [PASSED] 0x6420 (LUNARLAKE)
[23:47:42] [PASSED] 0x64A0 (LUNARLAKE)
[23:47:42] [PASSED] 0x64B0 (LUNARLAKE)
[23:47:42] [PASSED] 0xE202 (BATTLEMAGE)
[23:47:42] [PASSED] 0xE209 (BATTLEMAGE)
[23:47:42] [PASSED] 0xE20B (BATTLEMAGE)
[23:47:42] [PASSED] 0xE20C (BATTLEMAGE)
[23:47:42] [PASSED] 0xE20D (BATTLEMAGE)
[23:47:42] [PASSED] 0xE210 (BATTLEMAGE)
[23:47:42] [PASSED] 0xE211 (BATTLEMAGE)
[23:47:42] [PASSED] 0xE212 (BATTLEMAGE)
[23:47:42] [PASSED] 0xE216 (BATTLEMAGE)
[23:47:42] [PASSED] 0xE220 (BATTLEMAGE)
[23:47:42] [PASSED] 0xE221 (BATTLEMAGE)
[23:47:42] [PASSED] 0xE222 (BATTLEMAGE)
[23:47:42] [PASSED] 0xE223 (BATTLEMAGE)
[23:47:42] [PASSED] 0xB080 (PANTHERLAKE)
[23:47:42] [PASSED] 0xB081 (PANTHERLAKE)
[23:47:42] [PASSED] 0xB082 (PANTHERLAKE)
[23:47:42] [PASSED] 0xB083 (PANTHERLAKE)
[23:47:42] [PASSED] 0xB084 (PANTHERLAKE)
[23:47:42] [PASSED] 0xB085 (PANTHERLAKE)
[23:47:42] [PASSED] 0xB086 (PANTHERLAKE)
[23:47:42] [PASSED] 0xB087 (PANTHERLAKE)
[23:47:42] [PASSED] 0xB08F (PANTHERLAKE)
[23:47:42] [PASSED] 0xB090 (PANTHERLAKE)
[23:47:42] [PASSED] 0xB0A0 (PANTHERLAKE)
[23:47:42] [PASSED] 0xB0B0 (PANTHERLAKE)
[23:47:42] [PASSED] 0xD740 (NOVALAKE_S)
[23:47:42] [PASSED] 0xD741 (NOVALAKE_S)
[23:47:42] [PASSED] 0xD742 (NOVALAKE_S)
[23:47:42] [PASSED] 0xD743 (NOVALAKE_S)
[23:47:42] [PASSED] 0xD744 (NOVALAKE_S)
[23:47:42] [PASSED] 0xD745 (NOVALAKE_S)
[23:47:42] [PASSED] 0x674C (CRESCENTISLAND)
[23:47:42] [PASSED] 0xFD80 (PANTHERLAKE)
[23:47:42] [PASSED] 0xFD81 (PANTHERLAKE)
[23:47:42] =============== [PASSED] check_platform_desc ===============
[23:47:42] ===================== [PASSED] xe_pci ======================
[23:47:42] =================== xe_rtp (2 subtests) ====================
[23:47:42] =============== xe_rtp_process_to_sr_tests ================
[23:47:42] [PASSED] coalesce-same-reg
[23:47:42] [PASSED] no-match-no-add
[23:47:42] [PASSED] match-or
[23:47:42] [PASSED] match-or-xfail
[23:47:42] [PASSED] no-match-no-add-multiple-rules
[23:47:42] [PASSED] two-regs-two-entries
[23:47:42] [PASSED] clr-one-set-other
[23:47:42] [PASSED] set-field
[23:47:42] [PASSED] conflict-duplicate
[23:47:42] [PASSED] conflict-not-disjoint
[23:47:42] [PASSED] conflict-reg-type
[23:47:42] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[23:47:42] ================== xe_rtp_process_tests ===================
[23:47:42] [PASSED] active1
[23:47:42] [PASSED] active2
[23:47:42] [PASSED] active-inactive
[23:47:42] [PASSED] inactive-active
[23:47:42] [PASSED] inactive-1st_or_active-inactive
[23:47:42] [PASSED] inactive-2nd_or_active-inactive
[23:47:42] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[23:47:42] [PASSED] inactive-no_or_active-inactive
[23:47:42] ============== [PASSED] xe_rtp_process_tests ===============
[23:47:42] ===================== [PASSED] xe_rtp ======================
[23:47:42] ==================== xe_wa (1 subtest) =====================
[23:47:42] ======================== xe_wa_gt =========================
[23:47:42] [PASSED] TIGERLAKE B0
[23:47:42] [PASSED] DG1 A0
[23:47:42] [PASSED] DG1 B0
[23:47:42] [PASSED] ALDERLAKE_S A0
[23:47:42] [PASSED] ALDERLAKE_S B0
[23:47:42] [PASSED] ALDERLAKE_S C0
[23:47:42] [PASSED] ALDERLAKE_S D0
[23:47:42] [PASSED] ALDERLAKE_P A0
[23:47:42] [PASSED] ALDERLAKE_P B0
[23:47:42] [PASSED] ALDERLAKE_P C0
[23:47:42] [PASSED] ALDERLAKE_S RPLS D0
[23:47:42] [PASSED] ALDERLAKE_P RPLU E0
[23:47:42] [PASSED] DG2 G10 C0
[23:47:42] [PASSED] DG2 G11 B1
[23:47:42] [PASSED] DG2 G12 A1
[23:47:42] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[23:47:42] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[23:47:42] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[23:47:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[23:47:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[23:47:42] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[23:47:42] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[23:47:42] ==================== [PASSED] xe_wa_gt =====================
[23:47:42] ====================== [PASSED] xe_wa ======================
[23:47:42] ============================================================
[23:47:42] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[23:47:42] Elapsed time: 35.370s total, 4.313s configuring, 30.690s building, 0.328s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[23:47:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:47:44] 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
[23:48:09] Starting KUnit Kernel (1/1)...
[23:48:09] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:48:10] ============ drm_test_pick_cmdline (2 subtests) ============
[23:48:10] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[23:48:10] =============== drm_test_pick_cmdline_named ===============
[23:48:10] [PASSED] NTSC
[23:48:10] [PASSED] NTSC-J
[23:48:10] [PASSED] PAL
[23:48:10] [PASSED] PAL-M
[23:48:10] =========== [PASSED] drm_test_pick_cmdline_named ===========
[23:48:10] ============== [PASSED] drm_test_pick_cmdline ==============
[23:48:10] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[23:48:10] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[23:48:10] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[23:48:10] =========== drm_validate_clone_mode (2 subtests) ===========
[23:48:10] ============== drm_test_check_in_clone_mode ===============
[23:48:10] [PASSED] in_clone_mode
[23:48:10] [PASSED] not_in_clone_mode
[23:48:10] ========== [PASSED] drm_test_check_in_clone_mode ===========
[23:48:10] =============== drm_test_check_valid_clones ===============
[23:48:10] [PASSED] not_in_clone_mode
[23:48:10] [PASSED] valid_clone
[23:48:10] [PASSED] invalid_clone
[23:48:10] =========== [PASSED] drm_test_check_valid_clones ===========
[23:48:10] ============= [PASSED] drm_validate_clone_mode =============
[23:48:10] ============= drm_validate_modeset (1 subtest) =============
[23:48:10] [PASSED] drm_test_check_connector_changed_modeset
[23:48:10] ============== [PASSED] drm_validate_modeset ===============
[23:48:10] ====== drm_test_bridge_get_current_state (2 subtests) ======
[23:48:10] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[23:48:10] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[23:48:10] ======== [PASSED] drm_test_bridge_get_current_state ========
[23:48:10] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[23:48:10] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[23:48:10] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[23:48:10] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[23:48:10] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[23:48:10] ============== drm_bridge_alloc (2 subtests) ===============
[23:48:10] [PASSED] drm_test_drm_bridge_alloc_basic
[23:48:10] [PASSED] drm_test_drm_bridge_alloc_get_put
[23:48:10] ================ [PASSED] drm_bridge_alloc =================
[23:48:10] ================== drm_buddy (8 subtests) ==================
[23:48:10] [PASSED] drm_test_buddy_alloc_limit
[23:48:10] [PASSED] drm_test_buddy_alloc_optimistic
[23:48:10] [PASSED] drm_test_buddy_alloc_pessimistic
[23:48:10] [PASSED] drm_test_buddy_alloc_pathological
[23:48:10] [PASSED] drm_test_buddy_alloc_contiguous
[23:48:10] [PASSED] drm_test_buddy_alloc_clear
[23:48:10] [PASSED] drm_test_buddy_alloc_range_bias
[23:48:10] [PASSED] drm_test_buddy_fragmentation_performance
[23:48:10] ==================== [PASSED] drm_buddy ====================
[23:48:10] ============= drm_cmdline_parser (40 subtests) =============
[23:48:10] [PASSED] drm_test_cmdline_force_d_only
[23:48:10] [PASSED] drm_test_cmdline_force_D_only_dvi
[23:48:10] [PASSED] drm_test_cmdline_force_D_only_hdmi
[23:48:10] [PASSED] drm_test_cmdline_force_D_only_not_digital
[23:48:10] [PASSED] drm_test_cmdline_force_e_only
[23:48:10] [PASSED] drm_test_cmdline_res
[23:48:10] [PASSED] drm_test_cmdline_res_vesa
[23:48:10] [PASSED] drm_test_cmdline_res_vesa_rblank
[23:48:10] [PASSED] drm_test_cmdline_res_rblank
[23:48:10] [PASSED] drm_test_cmdline_res_bpp
[23:48:10] [PASSED] drm_test_cmdline_res_refresh
[23:48:10] [PASSED] drm_test_cmdline_res_bpp_refresh
[23:48:10] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[23:48:10] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[23:48:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[23:48:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[23:48:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[23:48:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[23:48:10] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[23:48:10] [PASSED] drm_test_cmdline_res_margins_force_on
[23:48:10] [PASSED] drm_test_cmdline_res_vesa_margins
[23:48:10] [PASSED] drm_test_cmdline_name
[23:48:10] [PASSED] drm_test_cmdline_name_bpp
[23:48:10] [PASSED] drm_test_cmdline_name_option
[23:48:10] [PASSED] drm_test_cmdline_name_bpp_option
[23:48:10] [PASSED] drm_test_cmdline_rotate_0
[23:48:10] [PASSED] drm_test_cmdline_rotate_90
[23:48:10] [PASSED] drm_test_cmdline_rotate_180
[23:48:10] [PASSED] drm_test_cmdline_rotate_270
[23:48:10] [PASSED] drm_test_cmdline_hmirror
[23:48:10] [PASSED] drm_test_cmdline_vmirror
[23:48:10] [PASSED] drm_test_cmdline_margin_options
[23:48:10] [PASSED] drm_test_cmdline_multiple_options
[23:48:10] [PASSED] drm_test_cmdline_bpp_extra_and_option
[23:48:10] [PASSED] drm_test_cmdline_extra_and_option
[23:48:10] [PASSED] drm_test_cmdline_freestanding_options
[23:48:10] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[23:48:10] [PASSED] drm_test_cmdline_panel_orientation
[23:48:10] ================ drm_test_cmdline_invalid =================
[23:48:10] [PASSED] margin_only
[23:48:10] [PASSED] interlace_only
[23:48:10] [PASSED] res_missing_x
[23:48:10] [PASSED] res_missing_y
[23:48:10] [PASSED] res_bad_y
[23:48:10] [PASSED] res_missing_y_bpp
[23:48:10] [PASSED] res_bad_bpp
[23:48:10] [PASSED] res_bad_refresh
[23:48:10] [PASSED] res_bpp_refresh_force_on_off
[23:48:10] [PASSED] res_invalid_mode
[23:48:10] [PASSED] res_bpp_wrong_place_mode
[23:48:10] [PASSED] name_bpp_refresh
[23:48:10] [PASSED] name_refresh
[23:48:10] [PASSED] name_refresh_wrong_mode
[23:48:10] [PASSED] name_refresh_invalid_mode
[23:48:10] [PASSED] rotate_multiple
[23:48:10] [PASSED] rotate_invalid_val
[23:48:10] [PASSED] rotate_truncated
[23:48:10] [PASSED] invalid_option
[23:48:10] [PASSED] invalid_tv_option
[23:48:10] [PASSED] truncated_tv_option
[23:48:10] ============ [PASSED] drm_test_cmdline_invalid =============
[23:48:10] =============== drm_test_cmdline_tv_options ===============
[23:48:10] [PASSED] NTSC
[23:48:10] [PASSED] NTSC_443
[23:48:10] [PASSED] NTSC_J
[23:48:10] [PASSED] PAL
[23:48:10] [PASSED] PAL_M
[23:48:10] [PASSED] PAL_N
[23:48:10] [PASSED] SECAM
[23:48:10] [PASSED] MONO_525
[23:48:10] [PASSED] MONO_625
[23:48:10] =========== [PASSED] drm_test_cmdline_tv_options ===========
[23:48:10] =============== [PASSED] drm_cmdline_parser ================
[23:48:10] ========== drmm_connector_hdmi_init (20 subtests) ==========
[23:48:10] [PASSED] drm_test_connector_hdmi_init_valid
[23:48:10] [PASSED] drm_test_connector_hdmi_init_bpc_8
[23:48:10] [PASSED] drm_test_connector_hdmi_init_bpc_10
[23:48:10] [PASSED] drm_test_connector_hdmi_init_bpc_12
[23:48:10] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[23:48:10] [PASSED] drm_test_connector_hdmi_init_bpc_null
[23:48:10] [PASSED] drm_test_connector_hdmi_init_formats_empty
[23:48:10] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[23:48:10] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:48:10] [PASSED] supported_formats=0x9 yuv420_allowed=1
[23:48:10] [PASSED] supported_formats=0x9 yuv420_allowed=0
[23:48:10] [PASSED] supported_formats=0x3 yuv420_allowed=1
[23:48:10] [PASSED] supported_formats=0x3 yuv420_allowed=0
[23:48:10] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:48:10] [PASSED] drm_test_connector_hdmi_init_null_ddc
[23:48:10] [PASSED] drm_test_connector_hdmi_init_null_product
[23:48:10] [PASSED] drm_test_connector_hdmi_init_null_vendor
[23:48:10] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[23:48:10] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[23:48:10] [PASSED] drm_test_connector_hdmi_init_product_valid
[23:48:10] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[23:48:10] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[23:48:10] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[23:48:10] ========= drm_test_connector_hdmi_init_type_valid =========
[23:48:10] [PASSED] HDMI-A
[23:48:10] [PASSED] HDMI-B
[23:48:10] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[23:48:10] ======== drm_test_connector_hdmi_init_type_invalid ========
[23:48:10] [PASSED] Unknown
[23:48:10] [PASSED] VGA
[23:48:10] [PASSED] DVI-I
[23:48:10] [PASSED] DVI-D
[23:48:10] [PASSED] DVI-A
[23:48:10] [PASSED] Composite
[23:48:10] [PASSED] SVIDEO
[23:48:10] [PASSED] LVDS
[23:48:10] [PASSED] Component
[23:48:10] [PASSED] DIN
[23:48:10] [PASSED] DP
[23:48:10] [PASSED] TV
[23:48:10] [PASSED] eDP
[23:48:10] [PASSED] Virtual
[23:48:10] [PASSED] DSI
[23:48:10] [PASSED] DPI
[23:48:10] [PASSED] Writeback
[23:48:10] [PASSED] SPI
[23:48:10] [PASSED] USB
[23:48:10] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[23:48:10] ============ [PASSED] drmm_connector_hdmi_init =============
[23:48:10] ============= drmm_connector_init (3 subtests) =============
[23:48:10] [PASSED] drm_test_drmm_connector_init
[23:48:10] [PASSED] drm_test_drmm_connector_init_null_ddc
[23:48:10] ========= drm_test_drmm_connector_init_type_valid =========
[23:48:10] [PASSED] Unknown
[23:48:10] [PASSED] VGA
[23:48:10] [PASSED] DVI-I
[23:48:10] [PASSED] DVI-D
[23:48:10] [PASSED] DVI-A
[23:48:10] [PASSED] Composite
[23:48:10] [PASSED] SVIDEO
[23:48:10] [PASSED] LVDS
[23:48:10] [PASSED] Component
[23:48:10] [PASSED] DIN
[23:48:10] [PASSED] DP
[23:48:10] [PASSED] HDMI-A
[23:48:10] [PASSED] HDMI-B
[23:48:10] [PASSED] TV
[23:48:10] [PASSED] eDP
[23:48:10] [PASSED] Virtual
[23:48:10] [PASSED] DSI
[23:48:10] [PASSED] DPI
[23:48:10] [PASSED] Writeback
[23:48:10] [PASSED] SPI
[23:48:10] [PASSED] USB
[23:48:10] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[23:48:10] =============== [PASSED] drmm_connector_init ===============
[23:48:10] ========= drm_connector_dynamic_init (6 subtests) ==========
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_init
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_init_properties
[23:48:10] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[23:48:10] [PASSED] Unknown
[23:48:10] [PASSED] VGA
[23:48:10] [PASSED] DVI-I
[23:48:10] [PASSED] DVI-D
[23:48:10] [PASSED] DVI-A
[23:48:10] [PASSED] Composite
[23:48:10] [PASSED] SVIDEO
[23:48:10] [PASSED] LVDS
[23:48:10] [PASSED] Component
[23:48:10] [PASSED] DIN
[23:48:10] [PASSED] DP
[23:48:10] [PASSED] HDMI-A
[23:48:10] [PASSED] HDMI-B
[23:48:10] [PASSED] TV
[23:48:10] [PASSED] eDP
[23:48:10] [PASSED] Virtual
[23:48:10] [PASSED] DSI
[23:48:10] [PASSED] DPI
[23:48:10] [PASSED] Writeback
[23:48:10] [PASSED] SPI
[23:48:10] [PASSED] USB
[23:48:10] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[23:48:10] ======== drm_test_drm_connector_dynamic_init_name =========
[23:48:10] [PASSED] Unknown
[23:48:10] [PASSED] VGA
[23:48:10] [PASSED] DVI-I
[23:48:10] [PASSED] DVI-D
[23:48:10] [PASSED] DVI-A
[23:48:10] [PASSED] Composite
[23:48:10] [PASSED] SVIDEO
[23:48:10] [PASSED] LVDS
[23:48:10] [PASSED] Component
[23:48:10] [PASSED] DIN
[23:48:10] [PASSED] DP
[23:48:10] [PASSED] HDMI-A
[23:48:10] [PASSED] HDMI-B
[23:48:10] [PASSED] TV
[23:48:10] [PASSED] eDP
[23:48:10] [PASSED] Virtual
[23:48:10] [PASSED] DSI
[23:48:10] [PASSED] DPI
[23:48:10] [PASSED] Writeback
[23:48:10] [PASSED] SPI
[23:48:10] [PASSED] USB
[23:48:10] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[23:48:10] =========== [PASSED] drm_connector_dynamic_init ============
[23:48:10] ==== drm_connector_dynamic_register_early (4 subtests) =====
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[23:48:10] ====== [PASSED] drm_connector_dynamic_register_early =======
[23:48:10] ======= drm_connector_dynamic_register (7 subtests) ========
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[23:48:10] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[23:48:10] ========= [PASSED] drm_connector_dynamic_register ==========
[23:48:10] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[23:48:10] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[23:48:10] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[23:48:10] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[23:48:10] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[23:48:10] ========== drm_test_get_tv_mode_from_name_valid ===========
[23:48:10] [PASSED] NTSC
[23:48:10] [PASSED] NTSC-443
[23:48:10] [PASSED] NTSC-J
[23:48:10] [PASSED] PAL
[23:48:10] [PASSED] PAL-M
[23:48:10] [PASSED] PAL-N
[23:48:10] [PASSED] SECAM
[23:48:10] [PASSED] Mono
[23:48:10] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[23:48:10] [PASSED] drm_test_get_tv_mode_from_name_truncated
[23:48:10] ============ [PASSED] drm_get_tv_mode_from_name ============
[23:48:10] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[23:48:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[23:48:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[23:48:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[23:48:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[23:48:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[23:48:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[23:48:10] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[23:48:10] [PASSED] VIC 96
[23:48:10] [PASSED] VIC 97
[23:48:10] [PASSED] VIC 101
[23:48:10] [PASSED] VIC 102
[23:48:10] [PASSED] VIC 106
[23:48:10] [PASSED] VIC 107
[23:48:10] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[23:48:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[23:48:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[23:48:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[23:48:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[23:48:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[23:48:10] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[23:48:10] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[23:48:10] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[23:48:10] [PASSED] Automatic
[23:48:10] [PASSED] Full
[23:48:10] [PASSED] Limited 16:235
[23:48:10] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[23:48:10] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[23:48:10] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[23:48:10] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[23:48:10] === drm_test_drm_hdmi_connector_get_output_format_name ====
[23:48:10] [PASSED] RGB
[23:48:10] [PASSED] YUV 4:2:0
[23:48:10] [PASSED] YUV 4:2:2
[23:48:10] [PASSED] YUV 4:4:4
[23:48:10] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[23:48:10] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[23:48:10] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[23:48:10] ============= drm_damage_helper (21 subtests) ==============
[23:48:10] [PASSED] drm_test_damage_iter_no_damage
[23:48:10] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[23:48:10] [PASSED] drm_test_damage_iter_no_damage_src_moved
[23:48:10] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[23:48:10] [PASSED] drm_test_damage_iter_no_damage_not_visible
[23:48:10] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[23:48:10] [PASSED] drm_test_damage_iter_no_damage_no_fb
[23:48:10] [PASSED] drm_test_damage_iter_simple_damage
[23:48:10] [PASSED] drm_test_damage_iter_single_damage
[23:48:10] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[23:48:10] [PASSED] drm_test_damage_iter_single_damage_outside_src
[23:48:10] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[23:48:10] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[23:48:10] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[23:48:10] [PASSED] drm_test_damage_iter_single_damage_src_moved
[23:48:10] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[23:48:10] [PASSED] drm_test_damage_iter_damage
[23:48:10] [PASSED] drm_test_damage_iter_damage_one_intersect
[23:48:10] [PASSED] drm_test_damage_iter_damage_one_outside
[23:48:10] [PASSED] drm_test_damage_iter_damage_src_moved
[23:48:10] [PASSED] drm_test_damage_iter_damage_not_visible
[23:48:10] ================ [PASSED] drm_damage_helper ================
[23:48:10] ============== drm_dp_mst_helper (3 subtests) ==============
[23:48:10] ============== drm_test_dp_mst_calc_pbn_mode ==============
[23:48:10] [PASSED] Clock 154000 BPP 30 DSC disabled
[23:48:10] [PASSED] Clock 234000 BPP 30 DSC disabled
[23:48:10] [PASSED] Clock 297000 BPP 24 DSC disabled
[23:48:10] [PASSED] Clock 332880 BPP 24 DSC enabled
[23:48:10] [PASSED] Clock 324540 BPP 24 DSC enabled
[23:48:10] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[23:48:10] ============== drm_test_dp_mst_calc_pbn_div ===============
[23:48:10] [PASSED] Link rate 2000000 lane count 4
[23:48:10] [PASSED] Link rate 2000000 lane count 2
[23:48:10] [PASSED] Link rate 2000000 lane count 1
[23:48:10] [PASSED] Link rate 1350000 lane count 4
[23:48:10] [PASSED] Link rate 1350000 lane count 2
[23:48:10] [PASSED] Link rate 1350000 lane count 1
[23:48:10] [PASSED] Link rate 1000000 lane count 4
[23:48:10] [PASSED] Link rate 1000000 lane count 2
[23:48:10] [PASSED] Link rate 1000000 lane count 1
[23:48:10] [PASSED] Link rate 810000 lane count 4
[23:48:10] [PASSED] Link rate 810000 lane count 2
[23:48:10] [PASSED] Link rate 810000 lane count 1
[23:48:10] [PASSED] Link rate 540000 lane count 4
[23:48:10] [PASSED] Link rate 540000 lane count 2
[23:48:10] [PASSED] Link rate 540000 lane count 1
[23:48:10] [PASSED] Link rate 270000 lane count 4
[23:48:10] [PASSED] Link rate 270000 lane count 2
[23:48:10] [PASSED] Link rate 270000 lane count 1
[23:48:10] [PASSED] Link rate 162000 lane count 4
[23:48:10] [PASSED] Link rate 162000 lane count 2
[23:48:10] [PASSED] Link rate 162000 lane count 1
[23:48:10] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[23:48:10] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[23:48:10] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[23:48:10] [PASSED] DP_POWER_UP_PHY with port number
[23:48:10] [PASSED] DP_POWER_DOWN_PHY with port number
[23:48:10] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[23:48:10] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[23:48:10] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[23:48:10] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[23:48:10] [PASSED] DP_QUERY_PAYLOAD with port number
[23:48:10] [PASSED] DP_QUERY_PAYLOAD with VCPI
[23:48:10] [PASSED] DP_REMOTE_DPCD_READ with port number
[23:48:10] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[23:48:10] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[23:48:10] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[23:48:10] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[23:48:10] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[23:48:10] [PASSED] DP_REMOTE_I2C_READ with port number
[23:48:10] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[23:48:10] [PASSED] DP_REMOTE_I2C_READ with transactions array
[23:48:10] [PASSED] DP_REMOTE_I2C_WRITE with port number
[23:48:10] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[23:48:10] [PASSED] DP_REMOTE_I2C_WRITE with data array
[23:48:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[23:48:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[23:48:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[23:48:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[23:48:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[23:48:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[23:48:10] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[23:48:10] ================ [PASSED] drm_dp_mst_helper ================
[23:48:10] ================== drm_exec (7 subtests) ===================
[23:48:10] [PASSED] sanitycheck
[23:48:10] [PASSED] test_lock
[23:48:10] [PASSED] test_lock_unlock
[23:48:10] [PASSED] test_duplicates
[23:48:10] [PASSED] test_prepare
[23:48:10] [PASSED] test_prepare_array
[23:48:10] [PASSED] test_multiple_loops
[23:48:10] ==================== [PASSED] drm_exec =====================
[23:48:10] =========== drm_format_helper_test (17 subtests) ===========
[23:48:10] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[23:48:10] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[23:48:10] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[23:48:10] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[23:48:10] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[23:48:10] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[23:48:10] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[23:48:10] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[23:48:10] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[23:48:10] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[23:48:10] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[23:48:10] ============== drm_test_fb_xrgb8888_to_mono ===============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[23:48:10] ==================== drm_test_fb_swab =====================
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ================ [PASSED] drm_test_fb_swab =================
[23:48:10] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[23:48:10] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[23:48:10] [PASSED] single_pixel_source_buffer
[23:48:10] [PASSED] single_pixel_clip_rectangle
[23:48:10] [PASSED] well_known_colors
[23:48:10] [PASSED] destination_pitch
[23:48:10] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[23:48:10] ================= drm_test_fb_clip_offset =================
[23:48:10] [PASSED] pass through
[23:48:10] [PASSED] horizontal offset
[23:48:10] [PASSED] vertical offset
[23:48:10] [PASSED] horizontal and vertical offset
[23:48:10] [PASSED] horizontal offset (custom pitch)
[23:48:10] [PASSED] vertical offset (custom pitch)
[23:48:10] [PASSED] horizontal and vertical offset (custom pitch)
[23:48:10] ============= [PASSED] drm_test_fb_clip_offset =============
[23:48:10] =================== drm_test_fb_memcpy ====================
[23:48:10] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[23:48:10] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[23:48:10] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[23:48:10] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[23:48:10] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[23:48:10] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[23:48:10] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[23:48:10] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[23:48:10] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[23:48:10] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[23:48:10] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[23:48:10] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[23:48:10] =============== [PASSED] drm_test_fb_memcpy ================
[23:48:10] ============= [PASSED] drm_format_helper_test ==============
[23:48:10] ================= drm_format (18 subtests) =================
[23:48:10] [PASSED] drm_test_format_block_width_invalid
[23:48:10] [PASSED] drm_test_format_block_width_one_plane
[23:48:10] [PASSED] drm_test_format_block_width_two_plane
[23:48:10] [PASSED] drm_test_format_block_width_three_plane
[23:48:10] [PASSED] drm_test_format_block_width_tiled
[23:48:10] [PASSED] drm_test_format_block_height_invalid
[23:48:10] [PASSED] drm_test_format_block_height_one_plane
[23:48:10] [PASSED] drm_test_format_block_height_two_plane
[23:48:10] [PASSED] drm_test_format_block_height_three_plane
[23:48:10] [PASSED] drm_test_format_block_height_tiled
[23:48:10] [PASSED] drm_test_format_min_pitch_invalid
[23:48:10] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[23:48:10] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[23:48:10] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[23:48:10] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[23:48:10] [PASSED] drm_test_format_min_pitch_two_plane
[23:48:10] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[23:48:10] [PASSED] drm_test_format_min_pitch_tiled
[23:48:10] =================== [PASSED] drm_format ====================
[23:48:10] ============== drm_framebuffer (10 subtests) ===============
[23:48:10] ========== drm_test_framebuffer_check_src_coords ==========
[23:48:10] [PASSED] Success: source fits into fb
[23:48:10] [PASSED] Fail: overflowing fb with x-axis coordinate
[23:48:10] [PASSED] Fail: overflowing fb with y-axis coordinate
[23:48:10] [PASSED] Fail: overflowing fb with source width
[23:48:10] [PASSED] Fail: overflowing fb with source height
[23:48:10] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[23:48:10] [PASSED] drm_test_framebuffer_cleanup
[23:48:10] =============== drm_test_framebuffer_create ===============
[23:48:10] [PASSED] ABGR8888 normal sizes
[23:48:10] [PASSED] ABGR8888 max sizes
[23:48:10] [PASSED] ABGR8888 pitch greater than min required
[23:48:10] [PASSED] ABGR8888 pitch less than min required
[23:48:10] [PASSED] ABGR8888 Invalid width
[23:48:10] [PASSED] ABGR8888 Invalid buffer handle
[23:48:10] [PASSED] No pixel format
[23:48:10] [PASSED] ABGR8888 Width 0
[23:48:10] [PASSED] ABGR8888 Height 0
[23:48:10] [PASSED] ABGR8888 Out of bound height * pitch combination
[23:48:10] [PASSED] ABGR8888 Large buffer offset
[23:48:10] [PASSED] ABGR8888 Buffer offset for inexistent plane
[23:48:10] [PASSED] ABGR8888 Invalid flag
[23:48:10] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[23:48:10] [PASSED] ABGR8888 Valid buffer modifier
[23:48:10] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[23:48:10] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[23:48:10] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[23:48:10] [PASSED] NV12 Normal sizes
[23:48:10] [PASSED] NV12 Max sizes
[23:48:10] [PASSED] NV12 Invalid pitch
[23:48:10] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[23:48:10] [PASSED] NV12 different modifier per-plane
[23:48:10] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[23:48:10] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[23:48:10] [PASSED] NV12 Modifier for inexistent plane
[23:48:10] [PASSED] NV12 Handle for inexistent plane
[23:48:10] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[23:48:10] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[23:48:10] [PASSED] YVU420 Normal sizes
[23:48:10] [PASSED] YVU420 Max sizes
[23:48:10] [PASSED] YVU420 Invalid pitch
[23:48:10] [PASSED] YVU420 Different pitches
[23:48:10] [PASSED] YVU420 Different buffer offsets/pitches
[23:48:10] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[23:48:10] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[23:48:10] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[23:48:10] [PASSED] YVU420 Valid modifier
[23:48:10] [PASSED] YVU420 Different modifiers per plane
[23:48:10] [PASSED] YVU420 Modifier for inexistent plane
[23:48:10] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[23:48:10] [PASSED] X0L2 Normal sizes
[23:48:10] [PASSED] X0L2 Max sizes
[23:48:10] [PASSED] X0L2 Invalid pitch
[23:48:10] [PASSED] X0L2 Pitch greater than minimum required
[23:48:10] [PASSED] X0L2 Handle for inexistent plane
[23:48:10] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[23:48:10] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[23:48:10] [PASSED] X0L2 Valid modifier
[23:48:10] [PASSED] X0L2 Modifier for inexistent plane
[23:48:10] =========== [PASSED] drm_test_framebuffer_create ===========
[23:48:10] [PASSED] drm_test_framebuffer_free
[23:48:10] [PASSED] drm_test_framebuffer_init
[23:48:10] [PASSED] drm_test_framebuffer_init_bad_format
[23:48:10] [PASSED] drm_test_framebuffer_init_dev_mismatch
[23:48:10] [PASSED] drm_test_framebuffer_lookup
[23:48:10] [PASSED] drm_test_framebuffer_lookup_inexistent
[23:48:10] [PASSED] drm_test_framebuffer_modifiers_not_supported
[23:48:10] ================= [PASSED] drm_framebuffer =================
[23:48:10] ================ drm_gem_shmem (8 subtests) ================
[23:48:10] [PASSED] drm_gem_shmem_test_obj_create
[23:48:10] [PASSED] drm_gem_shmem_test_obj_create_private
[23:48:10] [PASSED] drm_gem_shmem_test_pin_pages
[23:48:10] [PASSED] drm_gem_shmem_test_vmap
[23:48:10] [PASSED] drm_gem_shmem_test_get_pages_sgt
[23:48:10] [PASSED] drm_gem_shmem_test_get_sg_table
[23:48:10] [PASSED] drm_gem_shmem_test_madvise
[23:48:10] [PASSED] drm_gem_shmem_test_purge
[23:48:10] ================== [PASSED] drm_gem_shmem ==================
[23:48:10] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[23:48:10] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[23:48:10] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[23:48:10] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[23:48:10] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[23:48:10] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[23:48:10] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[23:48:10] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[23:48:10] [PASSED] Automatic
[23:48:10] [PASSED] Full
[23:48:10] [PASSED] Limited 16:235
[23:48:10] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[23:48:10] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[23:48:10] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[23:48:10] [PASSED] drm_test_check_disable_connector
[23:48:10] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[23:48:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[23:48:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[23:48:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[23:48:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[23:48:10] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[23:48:10] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[23:48:10] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[23:48:10] [PASSED] drm_test_check_output_bpc_dvi
[23:48:10] [PASSED] drm_test_check_output_bpc_format_vic_1
[23:48:10] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[23:48:10] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[23:48:10] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[23:48:10] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[23:48:10] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[23:48:10] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[23:48:10] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[23:48:10] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[23:48:10] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[23:48:10] [PASSED] drm_test_check_broadcast_rgb_value
[23:48:10] [PASSED] drm_test_check_bpc_8_value
[23:48:10] [PASSED] drm_test_check_bpc_10_value
[23:48:10] [PASSED] drm_test_check_bpc_12_value
[23:48:10] [PASSED] drm_test_check_format_value
[23:48:10] [PASSED] drm_test_check_tmds_char_value
[23:48:10] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[23:48:10] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[23:48:10] [PASSED] drm_test_check_mode_valid
[23:48:10] [PASSED] drm_test_check_mode_valid_reject
[23:48:10] [PASSED] drm_test_check_mode_valid_reject_rate
[23:48:10] [PASSED] drm_test_check_mode_valid_reject_max_clock
[23:48:10] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[23:48:10] ================= drm_managed (2 subtests) =================
[23:48:10] [PASSED] drm_test_managed_release_action
[23:48:10] [PASSED] drm_test_managed_run_action
[23:48:10] =================== [PASSED] drm_managed ===================
[23:48:10] =================== drm_mm (6 subtests) ====================
[23:48:10] [PASSED] drm_test_mm_init
[23:48:10] [PASSED] drm_test_mm_debug
[23:48:10] [PASSED] drm_test_mm_align32
[23:48:10] [PASSED] drm_test_mm_align64
[23:48:10] [PASSED] drm_test_mm_lowest
[23:48:10] [PASSED] drm_test_mm_highest
[23:48:10] ===================== [PASSED] drm_mm ======================
[23:48:10] ============= drm_modes_analog_tv (5 subtests) =============
[23:48:10] [PASSED] drm_test_modes_analog_tv_mono_576i
[23:48:10] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[23:48:10] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[23:48:10] [PASSED] drm_test_modes_analog_tv_pal_576i
[23:48:10] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[23:48:10] =============== [PASSED] drm_modes_analog_tv ===============
[23:48:10] ============== drm_plane_helper (2 subtests) ===============
[23:48:10] =============== drm_test_check_plane_state ================
[23:48:10] [PASSED] clipping_simple
[23:48:10] [PASSED] clipping_rotate_reflect
[23:48:10] [PASSED] positioning_simple
[23:48:10] [PASSED] upscaling
[23:48:10] [PASSED] downscaling
[23:48:10] [PASSED] rounding1
[23:48:10] [PASSED] rounding2
[23:48:10] [PASSED] rounding3
[23:48:10] [PASSED] rounding4
[23:48:10] =========== [PASSED] drm_test_check_plane_state ============
[23:48:10] =========== drm_test_check_invalid_plane_state ============
[23:48:10] [PASSED] positioning_invalid
[23:48:10] [PASSED] upscaling_invalid
[23:48:10] [PASSED] downscaling_invalid
[23:48:10] ======= [PASSED] drm_test_check_invalid_plane_state ========
[23:48:10] ================ [PASSED] drm_plane_helper =================
[23:48:10] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[23:48:10] ====== drm_test_connector_helper_tv_get_modes_check =======
[23:48:10] [PASSED] None
[23:48:10] [PASSED] PAL
[23:48:10] [PASSED] NTSC
[23:48:10] [PASSED] Both, NTSC Default
[23:48:10] [PASSED] Both, PAL Default
[23:48:10] [PASSED] Both, NTSC Default, with PAL on command-line
[23:48:10] [PASSED] Both, PAL Default, with NTSC on command-line
[23:48:10] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[23:48:10] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[23:48:10] ================== drm_rect (9 subtests) ===================
[23:48:10] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[23:48:10] [PASSED] drm_test_rect_clip_scaled_not_clipped
[23:48:10] [PASSED] drm_test_rect_clip_scaled_clipped
[23:48:10] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[23:48:10] ================= drm_test_rect_intersect =================
[23:48:10] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[23:48:10] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[23:48:10] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[23:48:10] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[23:48:10] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[23:48:10] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[23:48:10] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[23:48:10] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[23:48:10] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[23:48:10] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[23:48:10] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[23:48:10] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[23:48:10] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[23:48:10] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[23:48:10] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[23:48:10] ============= [PASSED] drm_test_rect_intersect =============
[23:48:10] ================ drm_test_rect_calc_hscale ================
[23:48:10] [PASSED] normal use
[23:48:10] [PASSED] out of max range
[23:48:10] [PASSED] out of min range
[23:48:10] [PASSED] zero dst
[23:48:10] [PASSED] negative src
[23:48:10] [PASSED] negative dst
[23:48:10] ============ [PASSED] drm_test_rect_calc_hscale ============
[23:48:10] ================ drm_test_rect_calc_vscale ================
[23:48:10] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[23:48:10] [PASSED] out of max range
[23:48:10] [PASSED] out of min range
[23:48:10] [PASSED] zero dst
[23:48:10] [PASSED] negative src
[23:48:10] [PASSED] negative dst
[23:48:10] ============ [PASSED] drm_test_rect_calc_vscale ============
[23:48:10] ================== drm_test_rect_rotate ===================
[23:48:10] [PASSED] reflect-x
[23:48:10] [PASSED] reflect-y
[23:48:10] [PASSED] rotate-0
[23:48:10] [PASSED] rotate-90
[23:48:10] [PASSED] rotate-180
[23:48:10] [PASSED] rotate-270
[23:48:10] ============== [PASSED] drm_test_rect_rotate ===============
[23:48:10] ================ drm_test_rect_rotate_inv =================
[23:48:10] [PASSED] reflect-x
[23:48:10] [PASSED] reflect-y
[23:48:10] [PASSED] rotate-0
[23:48:10] [PASSED] rotate-90
[23:48:10] [PASSED] rotate-180
[23:48:10] [PASSED] rotate-270
[23:48:10] ============ [PASSED] drm_test_rect_rotate_inv =============
[23:48:10] ==================== [PASSED] drm_rect =====================
[23:48:10] ============ drm_sysfb_modeset_test (1 subtest) ============
[23:48:10] ============ drm_test_sysfb_build_fourcc_list =============
[23:48:10] [PASSED] no native formats
[23:48:10] [PASSED] XRGB8888 as native format
[23:48:10] [PASSED] remove duplicates
[23:48:10] [PASSED] convert alpha formats
[23:48:10] [PASSED] random formats
[23:48:10] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[23:48:10] ============= [PASSED] drm_sysfb_modeset_test ==============
[23:48:10] ============================================================
[23:48:10] Testing complete. Ran 622 tests: passed: 622
[23:48:10] Elapsed time: 27.381s total, 1.729s configuring, 25.234s building, 0.390s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[23:48:10] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:48:12] 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
[23:48:21] Starting KUnit Kernel (1/1)...
[23:48:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:48:21] ================= ttm_device (5 subtests) ==================
[23:48:21] [PASSED] ttm_device_init_basic
[23:48:21] [PASSED] ttm_device_init_multiple
[23:48:21] [PASSED] ttm_device_fini_basic
[23:48:21] [PASSED] ttm_device_init_no_vma_man
[23:48:21] ================== ttm_device_init_pools ==================
[23:48:21] [PASSED] No DMA allocations, no DMA32 required
[23:48:21] [PASSED] DMA allocations, DMA32 required
[23:48:21] [PASSED] No DMA allocations, DMA32 required
[23:48:21] [PASSED] DMA allocations, no DMA32 required
[23:48:21] ============== [PASSED] ttm_device_init_pools ==============
[23:48:21] =================== [PASSED] ttm_device ====================
[23:48:21] ================== ttm_pool (8 subtests) ===================
[23:48:21] ================== ttm_pool_alloc_basic ===================
[23:48:21] [PASSED] One page
[23:48:21] [PASSED] More than one page
[23:48:21] [PASSED] Above the allocation limit
[23:48:21] [PASSED] One page, with coherent DMA mappings enabled
[23:48:21] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:48:21] ============== [PASSED] ttm_pool_alloc_basic ===============
[23:48:21] ============== ttm_pool_alloc_basic_dma_addr ==============
[23:48:21] [PASSED] One page
[23:48:21] [PASSED] More than one page
[23:48:21] [PASSED] Above the allocation limit
[23:48:21] [PASSED] One page, with coherent DMA mappings enabled
[23:48:21] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:48:21] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[23:48:21] [PASSED] ttm_pool_alloc_order_caching_match
[23:48:21] [PASSED] ttm_pool_alloc_caching_mismatch
[23:48:21] [PASSED] ttm_pool_alloc_order_mismatch
[23:48:21] [PASSED] ttm_pool_free_dma_alloc
[23:48:21] [PASSED] ttm_pool_free_no_dma_alloc
[23:48:21] [PASSED] ttm_pool_fini_basic
[23:48:21] ==================== [PASSED] ttm_pool =====================
[23:48:21] ================ ttm_resource (8 subtests) =================
[23:48:21] ================= ttm_resource_init_basic =================
[23:48:21] [PASSED] Init resource in TTM_PL_SYSTEM
[23:48:21] [PASSED] Init resource in TTM_PL_VRAM
[23:48:21] [PASSED] Init resource in a private placement
[23:48:21] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[23:48:21] ============= [PASSED] ttm_resource_init_basic =============
[23:48:21] [PASSED] ttm_resource_init_pinned
[23:48:21] [PASSED] ttm_resource_fini_basic
[23:48:21] [PASSED] ttm_resource_manager_init_basic
[23:48:21] [PASSED] ttm_resource_manager_usage_basic
[23:48:21] [PASSED] ttm_resource_manager_set_used_basic
[23:48:21] [PASSED] ttm_sys_man_alloc_basic
[23:48:21] [PASSED] ttm_sys_man_free_basic
[23:48:21] ================== [PASSED] ttm_resource ===================
[23:48:21] =================== ttm_tt (15 subtests) ===================
[23:48:21] ==================== ttm_tt_init_basic ====================
[23:48:21] [PASSED] Page-aligned size
[23:48:21] [PASSED] Extra pages requested
[23:48:21] ================ [PASSED] ttm_tt_init_basic ================
[23:48:21] [PASSED] ttm_tt_init_misaligned
[23:48:21] [PASSED] ttm_tt_fini_basic
[23:48:21] [PASSED] ttm_tt_fini_sg
[23:48:21] [PASSED] ttm_tt_fini_shmem
[23:48:21] [PASSED] ttm_tt_create_basic
[23:48:21] [PASSED] ttm_tt_create_invalid_bo_type
[23:48:21] [PASSED] ttm_tt_create_ttm_exists
[23:48:21] [PASSED] ttm_tt_create_failed
[23:48:21] [PASSED] ttm_tt_destroy_basic
[23:48:21] [PASSED] ttm_tt_populate_null_ttm
[23:48:21] [PASSED] ttm_tt_populate_populated_ttm
[23:48:21] [PASSED] ttm_tt_unpopulate_basic
[23:48:21] [PASSED] ttm_tt_unpopulate_empty_ttm
[23:48:21] [PASSED] ttm_tt_swapin_basic
[23:48:21] ===================== [PASSED] ttm_tt ======================
[23:48:21] =================== ttm_bo (14 subtests) ===================
[23:48:21] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[23:48:21] [PASSED] Cannot be interrupted and sleeps
[23:48:21] [PASSED] Cannot be interrupted, locks straight away
[23:48:21] [PASSED] Can be interrupted, sleeps
[23:48:21] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[23:48:21] [PASSED] ttm_bo_reserve_locked_no_sleep
[23:48:21] [PASSED] ttm_bo_reserve_no_wait_ticket
[23:48:21] [PASSED] ttm_bo_reserve_double_resv
[23:48:21] [PASSED] ttm_bo_reserve_interrupted
[23:48:21] [PASSED] ttm_bo_reserve_deadlock
[23:48:21] [PASSED] ttm_bo_unreserve_basic
[23:48:21] [PASSED] ttm_bo_unreserve_pinned
[23:48:21] [PASSED] ttm_bo_unreserve_bulk
[23:48:21] [PASSED] ttm_bo_fini_basic
[23:48:21] [PASSED] ttm_bo_fini_shared_resv
[23:48:21] [PASSED] ttm_bo_pin_basic
[23:48:21] [PASSED] ttm_bo_pin_unpin_resource
[23:48:21] [PASSED] ttm_bo_multiple_pin_one_unpin
[23:48:21] ===================== [PASSED] ttm_bo ======================
[23:48:21] ============== ttm_bo_validate (21 subtests) ===============
[23:48:21] ============== ttm_bo_init_reserved_sys_man ===============
[23:48:21] [PASSED] Buffer object for userspace
[23:48:21] [PASSED] Kernel buffer object
[23:48:21] [PASSED] Shared buffer object
[23:48:21] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[23:48:21] ============== ttm_bo_init_reserved_mock_man ==============
[23:48:21] [PASSED] Buffer object for userspace
[23:48:21] [PASSED] Kernel buffer object
[23:48:21] [PASSED] Shared buffer object
[23:48:21] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[23:48:21] [PASSED] ttm_bo_init_reserved_resv
[23:48:21] ================== ttm_bo_validate_basic ==================
[23:48:21] [PASSED] Buffer object for userspace
[23:48:21] [PASSED] Kernel buffer object
[23:48:21] [PASSED] Shared buffer object
[23:48:21] ============== [PASSED] ttm_bo_validate_basic ==============
[23:48:21] [PASSED] ttm_bo_validate_invalid_placement
[23:48:21] ============= ttm_bo_validate_same_placement ==============
[23:48:21] [PASSED] System manager
[23:48:21] [PASSED] VRAM manager
[23:48:21] ========= [PASSED] ttm_bo_validate_same_placement ==========
[23:48:21] [PASSED] ttm_bo_validate_failed_alloc
[23:48:21] [PASSED] ttm_bo_validate_pinned
[23:48:21] [PASSED] ttm_bo_validate_busy_placement
[23:48:21] ================ ttm_bo_validate_multihop =================
[23:48:21] [PASSED] Buffer object for userspace
[23:48:21] [PASSED] Kernel buffer object
[23:48:21] [PASSED] Shared buffer object
[23:48:21] ============ [PASSED] ttm_bo_validate_multihop =============
[23:48:21] ========== ttm_bo_validate_no_placement_signaled ==========
[23:48:21] [PASSED] Buffer object in system domain, no page vector
[23:48:21] [PASSED] Buffer object in system domain with an existing page vector
[23:48:21] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[23:48:21] ======== ttm_bo_validate_no_placement_not_signaled ========
[23:48:21] [PASSED] Buffer object for userspace
[23:48:21] [PASSED] Kernel buffer object
[23:48:21] [PASSED] Shared buffer object
[23:48:21] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[23:48:21] [PASSED] ttm_bo_validate_move_fence_signaled
[23:48:21] ========= ttm_bo_validate_move_fence_not_signaled =========
[23:48:21] [PASSED] Waits for GPU
[23:48:21] [PASSED] Tries to lock straight away
[23:48:21] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[23:48:21] [PASSED] ttm_bo_validate_happy_evict
[23:48:21] [PASSED] ttm_bo_validate_all_pinned_evict
[23:48:21] [PASSED] ttm_bo_validate_allowed_only_evict
[23:48:21] [PASSED] ttm_bo_validate_deleted_evict
[23:48:21] [PASSED] ttm_bo_validate_busy_domain_evict
[23:48:21] [PASSED] ttm_bo_validate_evict_gutting
[23:48:21] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[23:48:21] ================= [PASSED] ttm_bo_validate =================
[23:48:21] ============================================================
[23:48:21] Testing complete. Ran 101 tests: passed: 101
[23:48:21] Elapsed time: 11.380s total, 1.678s configuring, 9.435s building, 0.216s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 23+ messages in thread* ✗ Xe.CI.Full: failure for Enable DP2.1 alpm (rev2)
2025-11-03 22:09 [PATCH v2 00/10] Enable DP2.1 alpm Animesh Manna
` (10 preceding siblings ...)
2025-11-03 23:48 ` ✓ CI.KUnit: success for Enable DP2.1 alpm (rev2) Patchwork
@ 2025-11-04 13:55 ` Patchwork
11 siblings, 0 replies; 23+ messages in thread
From: Patchwork @ 2025-11-04 13:55 UTC (permalink / raw)
To: Animesh Manna; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 59565 bytes --]
== Series Details ==
Series: Enable DP2.1 alpm (rev2)
URL : https://patchwork.freedesktop.org/series/156416/
State : failure
== Summary ==
CI Bug Log - changes from xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c_FULL -> xe-pw-156416v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156416v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156416v2_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-156416v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-lnl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color@ctm-red-to-blue@pipe-a-dp-2:
- shard-bmg: [PASS][2] -> [SKIP][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_color@ctm-red-to-blue@pipe-a-dp-2.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_color@ctm-red-to-blue@pipe-a-dp-2.html
* igt@kms_flip@2x-flip-vs-wf_vblank@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank@ad-dp2-hdmi-a3.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank@ad-dp2-hdmi-a3.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_sharpness_filter@filter-basic.html
* igt@xe_exec_system_allocator@many-execqueues-malloc-prefetch:
- shard-bmg: [PASS][7] -> [DMESG-WARN][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@xe_exec_system_allocator@many-execqueues-malloc-prefetch.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@xe_exec_system_allocator@many-execqueues-malloc-prefetch.html
* igt@xe_pmu@engine-activity-load-idle@engine-drm_xe_engine_class_render0:
- shard-adlp: [PASS][9] -> [FAIL][10] +5 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-adlp-8/igt@xe_pmu@engine-activity-load-idle@engine-drm_xe_engine_class_render0.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-adlp-6/igt@xe_pmu@engine-activity-load-idle@engine-drm_xe_engine_class_render0.html
Known issues
------------
Here are the changes found in xe-pw-156416v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1467])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +5 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1512])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +11 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2669]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#3432])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][25] ([Intel XE#4345] / [Intel XE#6168])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][26] ([Intel XE#1727] / [Intel XE#3113])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +20 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2325])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2252]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#373])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][32] ([Intel XE#1178])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2341])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-sliding-128x128:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2320])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-128x128.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-128x128.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2321])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#2291]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2286])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#4354])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-sst.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#4331])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2244])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#702])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2373])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#2316])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1421]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][52] -> [DMESG-FAIL][53] ([Intel XE#3428]) +1 other test dmesg-fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][54] -> [FAIL][55] ([Intel XE#5338])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank@ac-dp2-hdmi-a3.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2:
- shard-bmg: [PASS][56] -> [FAIL][57] ([Intel XE#5338] / [Intel XE#5416]) +4 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [PASS][58] -> [DMESG-WARN][59] ([Intel XE#4543]) +4 other tests dmesg-warn
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-adlp-8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-adlp-8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-adlp: [PASS][60] -> [DMESG-WARN][61] ([Intel XE#2953] / [Intel XE#4173])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-adlp-8/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-adlp-8/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1401] / [Intel XE#1745])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1401])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1397] / [Intel XE#1745])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1397])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2293]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#352])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#651]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#6313])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#5390]) +6 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#651]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#656]) +7 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2311]) +15 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#6312])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2313]) +18 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#653]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2927])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#4848])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_plane_alpha_blend@constant-alpha-max.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2393])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4596])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#309])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2763]) +9 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2391])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1122])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#3309])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][88] ([Intel XE#2029])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2499])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1406] / [Intel XE#1489])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-466/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1406] / [Intel XE#2387]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-basic@edp-1:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_psr@fbc-psr2-basic@edp-1.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1406]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2330])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_vblank@wait-forked-busy@pipe-a-dp-2:
- shard-bmg: [PASS][99] -> [FAIL][100] ([Intel XE#6340]) +1 other test fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_vblank@wait-forked-busy@pipe-a-dp-2.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_vblank@wait-forked-busy@pipe-a-dp-2.html
* igt@xe_eudebug@vma-ufence-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#4837]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@xe_eudebug@vma-ufence-faultable.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4837]) +6 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#4837]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#688]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1392]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2322]) +7 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#288]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_system_allocator@madvise-split-vma-with-mapping:
- shard-lnl: NOTRUN -> [WARN][108] ([Intel XE#5786])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@xe_exec_system_allocator@madvise-split-vma-with-mapping.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#5007]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#4943]) +5 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#4943]) +12 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#4915]) +47 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-464/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-eocheck.html
* igt@xe_exec_threads@threads-hang-rebind:
- shard-bmg: [PASS][113] -> [DMESG-WARN][114] ([Intel XE#3428]) +9 other tests dmesg-warn
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@xe_exec_threads@threads-hang-rebind.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@xe_exec_threads@threads-hang-rebind.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#6281])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#5893])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#512])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@xe_mmap@small-bar.html
* igt@xe_oa@non-privileged-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#3573])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-466/igt@xe_oa@non-privileged-access-vaddr.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#5694])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [PASS][121] -> [TIMEOUT][122] ([Intel XE#6227])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#579])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@engine-activity-accuracy-50:
- shard-lnl: NOTRUN -> [FAIL][124] ([Intel XE#6251]) +1 other test fail
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@xe_pmu@engine-activity-accuracy-50.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#4733]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#944])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#4273])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-lnl-7/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [FAIL][128] ([Intel XE#3908]) -> [PASS][129] +1 other test pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-adlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-adlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [DMESG-FAIL][130] ([Intel XE#4543]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][132] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_color@ctm-negative@pipe-a-dp-2:
- shard-bmg: [SKIP][134] -> [PASS][135] +1 other test pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@kms_color@ctm-negative@pipe-a-dp-2.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_color@ctm-negative@pipe-a-dp-2.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [SKIP][136] ([Intel XE#2316]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
- shard-bmg: [DMESG-WARN][138] ([Intel XE#3428]) -> [PASS][139] +2 other tests pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][140] ([Intel XE#455]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-dg2-436/igt@kms_hdr@invalid-hdr.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: [SKIP][142] ([Intel XE#1503]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_lease@simple-lease@pipe-a-dp-2:
- shard-bmg: [FAIL][144] -> [PASS][145] +2 other tests pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@kms_lease@simple-lease@pipe-a-dp-2.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_lease@simple-lease@pipe-a-dp-2.html
* igt@testdisplay:
- shard-bmg: [DMESG-WARN][146] -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@testdisplay.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@testdisplay.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][148] ([Intel XE#6321]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_gt_freq@freq_range_idle:
- shard-dg2-set2: [FAIL][150] ([Intel XE#6407]) -> [PASS][151] +1 other test pass
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-dg2-463/igt@xe_gt_freq@freq_range_idle.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-435/igt@xe_gt_freq@freq_range_idle.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][152] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][153] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][154] ([Intel XE#2341]) -> [FAIL][155] ([Intel XE#1178])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: [SKIP][156] ([Intel XE#2320]) -> [SKIP][157] ([Intel XE#2321])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][158] ([Intel XE#2312]) -> [SKIP][159] ([Intel XE#2311]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][160] ([Intel XE#2311]) -> [SKIP][161] ([Intel XE#2312]) +6 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][162] ([Intel XE#5390]) -> [SKIP][163] ([Intel XE#2312]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][164] ([Intel XE#2312]) -> [SKIP][165] ([Intel XE#5390])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][166] ([Intel XE#2313]) -> [SKIP][167] ([Intel XE#2312]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][168] ([Intel XE#2312]) -> [SKIP][169] ([Intel XE#2313]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@xe_exec_reset@cm-cat-error:
- shard-adlp: [DMESG-FAIL][170] ([Intel XE#3868]) -> [DMESG-WARN][171] ([Intel XE#3868])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-adlp-9/igt@xe_exec_reset@cm-cat-error.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-adlp-2/igt@xe_exec_reset@cm-cat-error.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [DMESG-WARN][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196]) ([Intel XE#3428]) -> ([PASS][197], [PASS][198], [SKIP][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [DMESG-WARN][211], [DMESG-WARN][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221]) ([Intel XE#2457] / [Intel XE#3428])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-1/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-1/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-1/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-7/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-4/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-4/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-4/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-1/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-5/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-8/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-8/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-4/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-8/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-5/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-2/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-2/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-2/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-5/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-bmg-6/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-7/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-4/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-4/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-1/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-5/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-4/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-1/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-6/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-8/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-8/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-2/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-2/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-2/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-2/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-8/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-bmg-8/igt@xe_module_load@load.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: [DMESG-FAIL][222] ([Intel XE#3868] / [Intel XE#5213] / [Intel XE#5545]) -> [DMESG-FAIL][223] ([Intel XE#3868] / [Intel XE#5213]) +1 other test dmesg-fail
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-adlp-3/igt@xe_sriov_scheduling@equal-throughput.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-adlp-1/igt@xe_sriov_scheduling@equal-throughput.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [DMESG-FAIL][224] ([Intel XE#3868] / [Intel XE#5213]) -> [DMESG-FAIL][225] ([Intel XE#3868] / [Intel XE#5213] / [Intel XE#5545]) +1 other test dmesg-fail
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c/shard-adlp-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/shard-adlp-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[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#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[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#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4848
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5416
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6227
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6313
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6340
[Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c -> xe-pw-156416v2
IGT_8606: 7f516488d66a52df3b3027d5c02c5be298424b78 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4039-3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c: 3d82a6cdc5241dbae65a59cf1197ff3bfd90ec2c
xe-pw-156416v2: 156416v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156416v2/index.html
[-- Attachment #2: Type: text/html, Size: 68579 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread