* [PATCH v3] drm/i915/display: use x100 version for full version and release
@ 2024-10-29 15:55 Jani Nikula
2024-10-29 22:31 ` ✓ Fi.CI.BAT: success for drm/i915/display: use x100 version for full version and release (rev4) Patchwork
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Jani Nikula @ 2024-10-29 15:55 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, ville.syrjala, matthew.d.roper, lucas.demarchi
Use x100, or ver * 100 + rel, versions for full IP version checks,
similar to what xe driver does:
- Replace IP_VER(14, 1) inline with 1401, etc.
- Convert DISPLAY_VER_FULL() to DISPLAY_VERx100()
- Convert IS_DISPLAY_VER_FULL() to IS_DISPLAY_VERx100()
- Convert IS_DISPLAY_VER_STEP() to IS_DISPLAY_VERx100_STEP()
This makes ver.rel versions easier to use, follows the xe driver
pattern, and drops the dependency on the IP_VER() macro.
v2: Rebase, drop IP_VER() from xe compat headers
v3: Rebase
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Acked-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../gpu/drm/i915/display/intel_atomic_plane.c | 4 ++--
drivers/gpu/drm/i915/display/intel_bw.c | 2 +-
drivers/gpu/drm/i915/display/intel_cdclk.c | 6 +++---
drivers/gpu/drm/i915/display/intel_cx0_phy.c | 4 ++--
.../gpu/drm/i915/display/intel_cx0_phy_regs.h | 2 +-
.../drm/i915/display/intel_display_device.h | 20 +++++++++----------
.../drm/i915/display/intel_display_power.c | 4 ++--
drivers/gpu/drm/i915/display/intel_dmc.c | 8 ++++----
drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
drivers/gpu/drm/i915/display/intel_fbc.c | 2 +-
drivers/gpu/drm/i915/display/intel_hdcp.c | 6 +++---
drivers/gpu/drm/i915/display/intel_pmdemand.c | 2 +-
drivers/gpu/drm/i915/display/intel_psr.c | 8 ++++----
drivers/gpu/drm/i915/display/skl_watermark.c | 2 +-
.../gpu/drm/xe/compat-i915-headers/i915_drv.h | 2 --
15 files changed, 36 insertions(+), 38 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_atomic_plane.c b/drivers/gpu/drm/i915/display/intel_atomic_plane.c
index 73fe36f00dae..d89630b2d5c1 100644
--- a/drivers/gpu/drm/i915/display/intel_atomic_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_atomic_plane.c
@@ -1026,8 +1026,8 @@ int intel_plane_check_src_coordinates(struct intel_plane_state *plane_state)
vsub = 1;
/* Wa_16023981245 */
- if ((DISPLAY_VER_FULL(i915) == IP_VER(20, 0) ||
- DISPLAY_VER_FULL(i915) == IP_VER(30, 0)) &&
+ if ((DISPLAY_VERx100(i915) == 2000 ||
+ DISPLAY_VERx100(i915) == 3000) &&
src_x % 2 != 0)
hsub = 2;
} else {
diff --git a/drivers/gpu/drm/i915/display/intel_bw.c b/drivers/gpu/drm/i915/display/intel_bw.c
index 47036d4abb33..a52b0ae68b96 100644
--- a/drivers/gpu/drm/i915/display/intel_bw.c
+++ b/drivers/gpu/drm/i915/display/intel_bw.c
@@ -743,7 +743,7 @@ void intel_bw_init_hw(struct drm_i915_private *dev_priv)
if (!HAS_DISPLAY(dev_priv))
return;
- if (DISPLAY_VER_FULL(dev_priv) >= IP_VER(14, 1) && IS_DGFX(dev_priv))
+ if (DISPLAY_VERx100(dev_priv) >= 1401 && IS_DGFX(dev_priv))
xe2_hpd_get_bw_info(dev_priv, &xe2_hpd_sa_info);
else if (DISPLAY_VER(dev_priv) >= 14)
tgl_get_bw_info(dev_priv, &mtl_sa_info);
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 96523526a2c3..03c4eef3f92a 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2058,8 +2058,8 @@ static bool pll_enable_wa_needed(struct intel_display *display)
{
struct drm_i915_private *dev_priv = to_i915(display->drm);
- return (DISPLAY_VER_FULL(display) == IP_VER(20, 0) ||
- DISPLAY_VER_FULL(display) == IP_VER(14, 0) ||
+ return (DISPLAY_VERx100(display) == 2000 ||
+ DISPLAY_VERx100(display) == 1400 ||
IS_DG2(dev_priv)) &&
display->cdclk.hw.vco > 0;
}
@@ -3852,7 +3852,7 @@ void intel_init_cdclk_hooks(struct intel_display *display)
} else if (DISPLAY_VER(display) >= 20) {
display->funcs.cdclk = &rplu_cdclk_funcs;
display->cdclk.table = xe2lpd_cdclk_table;
- } else if (DISPLAY_VER_FULL(display) >= IP_VER(14, 1)) {
+ } else if (DISPLAY_VERx100(display) >= 1401) {
display->funcs.cdclk = &rplu_cdclk_funcs;
display->cdclk.table = xe2hpd_cdclk_table;
} else if (DISPLAY_VER(display) >= 14) {
diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c
index 8ad19106fee1..2136673fe0ad 100644
--- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c
+++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c
@@ -2276,13 +2276,13 @@ intel_c20_pll_tables_get(struct intel_crtc_state *crtc_state,
if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_EDP)) {
if (DISPLAY_RUNTIME_INFO(display)->edp_typec_support)
return xe3lpd_c20_dp_edp_tables;
- if (DISPLAY_VER_FULL(i915) == IP_VER(14, 1))
+ if (DISPLAY_VERx100(i915) == 1401)
return xe2hpd_c20_edp_tables;
}
if (DISPLAY_VER(i915) >= 30)
return xe3lpd_c20_dp_edp_tables;
- else if (DISPLAY_VER_FULL(i915) == IP_VER(14, 1))
+ else if (DISPLAY_VERx100(i915) == 1401)
return xe2hpd_c20_dp_tables;
else
return mtl_c20_dp_tables;
diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h b/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h
index 582d6277d20c..f0e5c196eae4 100644
--- a/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h
+++ b/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h
@@ -273,7 +273,7 @@
#define _XE2HPD_C20_A_MPLLB_CFG 0xCCC2
#define _XE2HPD_C20_B_MPLLB_CFG 0xCCB6
-#define _IS_XE2HPD_C20(i915) (DISPLAY_VER_FULL(i915) == IP_VER(14, 1))
+#define _IS_XE2HPD_C20(i915) (DISPLAY_VERx100(i915) == 1401)
#define PHY_C20_A_TX_CNTX_CFG(i915, idx) \
((_IS_XE2HPD_C20(i915) ? _XE2HPD_C20_A_TX_CNTX_CFG : _MTL_C20_A_TX_CNTX_CFG) - (idx))
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 410f8b33a8a1..10964d95277f 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -168,10 +168,10 @@ enum intel_display_subplatform {
#define SUPPORTS_TV(i915) (DISPLAY_INFO(i915)->supports_tv)
/* Check that device has a display IP version within the specific range. */
-#define IS_DISPLAY_VER_FULL(__i915, from, until) ( \
- BUILD_BUG_ON_ZERO((from) < IP_VER(2, 0)) + \
- (DISPLAY_VER_FULL(__i915) >= (from) && \
- DISPLAY_VER_FULL(__i915) <= (until)))
+#define IS_DISPLAY_VERx100(__i915, from, until) ( \
+ BUILD_BUG_ON_ZERO((from) < 200) + \
+ (DISPLAY_VERx100(__i915) >= (from) && \
+ DISPLAY_VERx100(__i915) <= (until)))
/*
* Check if a device has a specific IP version as well as a stepping within the
@@ -182,22 +182,22 @@ enum intel_display_subplatform {
* hardware fix is present and the software workaround is no longer necessary.
* E.g.,
*
- * IS_DISPLAY_VER_STEP(i915, IP_VER(14, 0), STEP_A0, STEP_B2)
- * IS_DISPLAY_VER_STEP(i915, IP_VER(14, 0), STEP_C0, STEP_FOREVER)
+ * IS_DISPLAY_VERx100_STEP(i915, 1400, STEP_A0, STEP_B2)
+ * IS_DISPLAY_VERx100_STEP(i915, 1400, STEP_C0, STEP_FOREVER)
*
* "STEP_FOREVER" can be passed as "until" for workarounds that have no upper
* stepping bound for the specified IP version.
*/
-#define IS_DISPLAY_VER_STEP(__i915, ipver, from, until) \
- (IS_DISPLAY_VER_FULL((__i915), (ipver), (ipver)) && \
+#define IS_DISPLAY_VERx100_STEP(__i915, ipver, from, until) \
+ (IS_DISPLAY_VERx100((__i915), (ipver), (ipver)) && \
IS_DISPLAY_STEP((__i915), (from), (until)))
#define DISPLAY_INFO(i915) (__to_intel_display(i915)->info.__device_info)
#define DISPLAY_RUNTIME_INFO(i915) (&__to_intel_display(i915)->info.__runtime_info)
#define DISPLAY_VER(i915) (DISPLAY_RUNTIME_INFO(i915)->ip.ver)
-#define DISPLAY_VER_FULL(i915) IP_VER(DISPLAY_RUNTIME_INFO(i915)->ip.ver, \
- DISPLAY_RUNTIME_INFO(i915)->ip.rel)
+#define DISPLAY_VERx100(i915) (DISPLAY_RUNTIME_INFO(i915)->ip.ver * 100 + \
+ DISPLAY_RUNTIME_INFO(i915)->ip.rel)
#define IS_DISPLAY_VER(i915, from, until) \
(DISPLAY_VER(i915) >= (from) && DISPLAY_VER(i915) <= (until))
diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c b/drivers/gpu/drm/i915/display/intel_display_power.c
index d0c21c89c471..2766fd9208b0 100644
--- a/drivers/gpu/drm/i915/display/intel_display_power.c
+++ b/drivers/gpu/drm/i915/display/intel_display_power.c
@@ -1684,14 +1684,14 @@ static void icl_display_core_init(struct drm_i915_private *dev_priv,
intel_snps_phy_wait_for_calibration(dev_priv);
/* 9. XE2_HPD: Program CHICKEN_MISC_2 before any cursor or planes are enabled */
- if (DISPLAY_VER_FULL(dev_priv) == IP_VER(14, 1))
+ if (DISPLAY_VERx100(dev_priv) == 1401)
intel_de_rmw(dev_priv, CHICKEN_MISC_2, BMG_DARB_HALF_BLK_END_BURST, 1);
if (resume)
intel_dmc_load_program(display);
/* Wa_14011508470:tgl,dg1,rkl,adl-s,adl-p,dg2 */
- if (IS_DISPLAY_VER_FULL(dev_priv, IP_VER(12, 0), IP_VER(13, 0)))
+ if (IS_DISPLAY_VERx100(dev_priv, 1200, 1300))
intel_de_rmw(dev_priv, GEN11_CHICKEN_DCPR_2, 0,
DCPR_CLEAR_MEMSTAT_DIS | DCPR_SEND_RESP_IMM |
DCPR_MASK_LPMODE | DCPR_MASK_MAXLATENCY_MEMUP_CLR);
diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c b/drivers/gpu/drm/i915/display/intel_dmc.c
index 5392b68627ae..87bdacfd9edf 100644
--- a/drivers/gpu/drm/i915/display/intel_dmc.c
+++ b/drivers/gpu/drm/i915/display/intel_dmc.c
@@ -171,16 +171,16 @@ static const char *dmc_firmware_default(struct intel_display *display, u32 *size
const char *fw_path = NULL;
u32 max_fw_size = 0;
- if (DISPLAY_VER_FULL(display) == IP_VER(30, 0)) {
+ if (DISPLAY_VERx100(display) == 3000) {
fw_path = XE3LPD_DMC_PATH;
max_fw_size = XE2LPD_DMC_MAX_FW_SIZE;
- } else if (DISPLAY_VER_FULL(display) == IP_VER(20, 0)) {
+ } else if (DISPLAY_VERx100(display) == 2000) {
fw_path = XE2LPD_DMC_PATH;
max_fw_size = XE2LPD_DMC_MAX_FW_SIZE;
- } else if (DISPLAY_VER_FULL(display) == IP_VER(14, 1)) {
+ } else if (DISPLAY_VERx100(display) == 1401) {
fw_path = BMG_DMC_PATH;
max_fw_size = XELPDP_DMC_MAX_FW_SIZE;
- } else if (DISPLAY_VER_FULL(display) == IP_VER(14, 0)) {
+ } else if (DISPLAY_VERx100(display) == 1400) {
fw_path = MTL_DMC_PATH;
max_fw_size = XELPDP_DMC_MAX_FW_SIZE;
} else if (IS_DG2(i915)) {
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 694491a4c408..0780448d0cb4 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -497,7 +497,7 @@ static int mtl_max_source_rate(struct intel_dp *intel_dp)
if (intel_encoder_is_c10phy(encoder))
return 810000;
- if (DISPLAY_VER_FULL(to_i915(encoder->base.dev)) == IP_VER(14, 1))
+ if (DISPLAY_VERx100(to_i915(encoder->base.dev)) == 1401)
return 1350000;
return 2000000;
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 2e0863093cff..df05904bac8a 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -1347,7 +1347,7 @@ static int intel_fbc_check_plane(struct intel_atomic_state *state,
/* Wa_14016291713 */
if ((IS_DISPLAY_VER(display, 12, 13) ||
- IS_DISPLAY_VER_STEP(i915, IP_VER(14, 0), STEP_A0, STEP_C0)) &&
+ IS_DISPLAY_VERx100_STEP(i915, 1400, STEP_A0, STEP_C0)) &&
crtc_state->has_psr && !crtc_state->has_panel_replay) {
plane_state->no_fbc_reason = "PSR1 enabled (Wa_14016291713)";
return 0;
diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c
index ed6aa87403e2..268deddc5281 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
@@ -43,11 +43,11 @@ intel_hdcp_disable_hdcp_line_rekeying(struct intel_encoder *encoder,
return;
if (DISPLAY_VER(display) >= 14) {
- if (IS_DISPLAY_VER_STEP(display, IP_VER(14, 0), STEP_D0, STEP_FOREVER))
+ if (IS_DISPLAY_VERx100_STEP(display, 1400, STEP_D0, STEP_FOREVER))
intel_de_rmw(display, MTL_CHICKEN_TRANS(hdcp->cpu_transcoder),
0, HDCP_LINE_REKEY_DISABLE);
- else if (IS_DISPLAY_VER_STEP(display, IP_VER(14, 1), STEP_B0, STEP_FOREVER) ||
- IS_DISPLAY_VER_STEP(display, IP_VER(20, 0), STEP_B0, STEP_FOREVER))
+ else if (IS_DISPLAY_VERx100_STEP(display, 1401, STEP_B0, STEP_FOREVER) ||
+ IS_DISPLAY_VERx100_STEP(display, 2000, STEP_B0, STEP_FOREVER))
intel_de_rmw(display,
TRANS_DDI_FUNC_CTL(display, hdcp->cpu_transcoder),
0, TRANS_DDI_HDCP_LINE_REKEY_DISABLE);
diff --git a/drivers/gpu/drm/i915/display/intel_pmdemand.c b/drivers/gpu/drm/i915/display/intel_pmdemand.c
index 92190ff25136..cdd314956a31 100644
--- a/drivers/gpu/drm/i915/display/intel_pmdemand.c
+++ b/drivers/gpu/drm/i915/display/intel_pmdemand.c
@@ -92,7 +92,7 @@ int intel_pmdemand_init(struct drm_i915_private *i915)
&pmdemand_state->base,
&intel_pmdemand_funcs);
- if (IS_DISPLAY_VER_STEP(i915, IP_VER(14, 0), STEP_A0, STEP_C0))
+ if (IS_DISPLAY_VERx100_STEP(i915, 1400, STEP_A0, STEP_C0))
/* Wa_14016740474 */
intel_de_rmw(i915, XELPD_CHICKEN_DCPR_3, 0, DMD_RSP_TIMEOUT_DISABLE);
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 880ea845207f..0c8da1701c3a 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -1918,14 +1918,14 @@ static void intel_psr_enable_source(struct intel_dp *intel_dp,
* cause issues if non-supported panels are used.
*/
if (!intel_dp->psr.panel_replay_enabled &&
- (IS_DISPLAY_VER_STEP(display, IP_VER(14, 0), STEP_A0, STEP_B0) ||
+ (IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, STEP_B0) ||
IS_ALDERLAKE_P(dev_priv)))
intel_de_rmw(display, hsw_chicken_trans_reg(dev_priv, cpu_transcoder),
0, ADLP_1_BASED_X_GRANULARITY);
/* Wa_16012604467:adlp,mtl[a0,b0] */
if (!intel_dp->psr.panel_replay_enabled &&
- IS_DISPLAY_VER_STEP(display, IP_VER(14, 0), STEP_A0, STEP_B0))
+ IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, STEP_B0))
intel_de_rmw(display,
MTL_CLKGATE_DIS_TRANS(display, cpu_transcoder),
0,
@@ -2110,7 +2110,7 @@ static void intel_psr_disable_locked(struct intel_dp *intel_dp)
if (intel_dp->psr.sel_update_enabled) {
/* Wa_16012604467:adlp,mtl[a0,b0] */
if (!intel_dp->psr.panel_replay_enabled &&
- IS_DISPLAY_VER_STEP(display, IP_VER(14, 0), STEP_A0, STEP_B0))
+ IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, STEP_B0))
intel_de_rmw(display,
MTL_CLKGATE_DIS_TRANS(display, cpu_transcoder),
MTL_CLKGATE_DIS_TRANS_DMASC_GATING_DIS, 0);
@@ -2565,7 +2565,7 @@ intel_psr_apply_su_area_workarounds(struct intel_crtc_state *crtc_state)
/* Wa_14014971492 */
if (!crtc_state->has_panel_replay &&
- ((IS_DISPLAY_VER_STEP(display, IP_VER(14, 0), STEP_A0, STEP_B0) ||
+ ((IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, STEP_B0) ||
IS_ALDERLAKE_P(i915) || IS_TIGERLAKE(i915))) &&
crtc_state->splitter.enable)
crtc_state->psr2_su_area.y1 = 0;
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 31de33e868df..3b0e87edbacf 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -3533,7 +3533,7 @@ static void intel_mbus_dbox_update(struct intel_atomic_state *state)
for_each_intel_crtc_in_pipe_mask(&i915->drm, crtc, new_dbuf_state->active_pipes) {
u32 pipe_val = val;
- if (DISPLAY_VER_FULL(i915) == IP_VER(14, 0)) {
+ if (DISPLAY_VERx100(i915) == 1400) {
if (xelpdp_is_only_pipe_per_dbuf_bank(crtc->pipe,
new_dbuf_state->active_pipes))
pipe_val |= MBUS_DBOX_BW_8CREDITS_MTL;
diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
index bd8c3de57dcd..84b0991b35b3 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
@@ -73,8 +73,6 @@ static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
#define IS_BROADWELL_ULT(dev_priv) (dev_priv && 0)
#define IS_BROADWELL_ULX(dev_priv) (dev_priv && 0)
-#define IP_VER(ver, rel) ((ver) << 8 | (rel))
-
#define IS_MOBILE(xe) (xe && 0)
#define IS_TIGERLAKE_UY(xe) (xe && 0)
--
2.39.5
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ Fi.CI.BAT: success for drm/i915/display: use x100 version for full version and release (rev4) 2024-10-29 15:55 [PATCH v3] drm/i915/display: use x100 version for full version and release Jani Nikula @ 2024-10-29 22:31 ` Patchwork 2024-10-30 11:58 ` [PATCH v3] drm/i915/display: use x100 version for full version and release Kandpal, Suraj 2024-10-30 17:19 ` ✓ Fi.CI.IGT: success for drm/i915/display: use x100 version for full version and release (rev4) Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-10-29 22:31 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3456 bytes --] == Series Details == Series: drm/i915/display: use x100 version for full version and release (rev4) URL : https://patchwork.freedesktop.org/series/140454/ State : success == Summary == CI Bug Log - changes from CI_DRM_15606 -> Patchwork_140454v4 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/index.html Participating hosts (47 -> 45) ------------------------------ Missing (2): bat-arls-2 fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_140454v4 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-arlh-3: [PASS][1] -> [ABORT][2] ([i915#12133]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/bat-arlh-3/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/bat-arlh-3/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][3] -> [ABORT][4] ([i915#12061]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/bat-arlh-3/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/bat-arlh-3/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-8: [ABORT][5] ([i915#12133] / [i915#12216]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/bat-mtlp-8/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/bat-mtlp-8/igt@i915_selftest@live.html - bat-adlm-1: [INCOMPLETE][7] ([i915#12133]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/bat-adlm-1/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/bat-adlm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-8: [ABORT][9] ([i915#12216]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/bat-mtlp-8/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/bat-mtlp-8/igt@i915_selftest@live@workarounds.html - bat-adlm-1: [INCOMPLETE][11] ([i915#9413]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/bat-adlm-1/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/bat-adlm-1/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * Linux: CI_DRM_15606 -> Patchwork_140454v4 CI-20190529: 20190529 CI_DRM_15606: 91b5d7af697c6765039b8700127c1740da858065 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8087: 7abd9c49a49a9ff1f3300d7c51a92a5af8a789f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_140454v4: 91b5d7af697c6765039b8700127c1740da858065 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/index.html [-- Attachment #2: Type: text/html, Size: 4373 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH v3] drm/i915/display: use x100 version for full version and release 2024-10-29 15:55 [PATCH v3] drm/i915/display: use x100 version for full version and release Jani Nikula 2024-10-29 22:31 ` ✓ Fi.CI.BAT: success for drm/i915/display: use x100 version for full version and release (rev4) Patchwork @ 2024-10-30 11:58 ` Kandpal, Suraj 2024-10-30 12:25 ` Jani Nikula 2024-10-30 17:19 ` ✓ Fi.CI.IGT: success for drm/i915/display: use x100 version for full version and release (rev4) Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Kandpal, Suraj @ 2024-10-30 11:58 UTC (permalink / raw) To: Nikula, Jani, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Nikula, Jani, ville.syrjala@linux.intel.com, Roper, Matthew D, De Marchi, Lucas > -----Original Message----- > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Jani > Nikula > Sent: Tuesday, October 29, 2024 9:26 PM > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org > Cc: Nikula, Jani <jani.nikula@intel.com>; ville.syrjala@linux.intel.com; Roper, > Matthew D <matthew.d.roper@intel.com>; De Marchi, Lucas > <lucas.demarchi@intel.com> > Subject: [PATCH v3] drm/i915/display: use x100 version for full version and > release > > Use x100, or ver * 100 + rel, versions for full IP version checks, similar to what > xe driver does: > > - Replace IP_VER(14, 1) inline with 1401, etc. > > - Convert DISPLAY_VER_FULL() to DISPLAY_VERx100() > > - Convert IS_DISPLAY_VER_FULL() to IS_DISPLAY_VERx100() > > - Convert IS_DISPLAY_VER_STEP() to IS_DISPLAY_VERx100_STEP() > > This makes ver.rel versions easier to use, follows the xe driver pattern, and > drops the dependency on the IP_VER() macro. > > v2: Rebase, drop IP_VER() from xe compat headers > > v3: Rebase > > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > Acked-by: Matt Roper <matthew.d.roper@intel.com> > Signed-off-by: Jani Nikula <jani.nikula@intel.com> LGTM, Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com> > --- > .../gpu/drm/i915/display/intel_atomic_plane.c | 4 ++-- > drivers/gpu/drm/i915/display/intel_bw.c | 2 +- > drivers/gpu/drm/i915/display/intel_cdclk.c | 6 +++--- > drivers/gpu/drm/i915/display/intel_cx0_phy.c | 4 ++-- > .../gpu/drm/i915/display/intel_cx0_phy_regs.h | 2 +- > .../drm/i915/display/intel_display_device.h | 20 +++++++++---------- > .../drm/i915/display/intel_display_power.c | 4 ++-- > drivers/gpu/drm/i915/display/intel_dmc.c | 8 ++++---- > drivers/gpu/drm/i915/display/intel_dp.c | 2 +- > drivers/gpu/drm/i915/display/intel_fbc.c | 2 +- > drivers/gpu/drm/i915/display/intel_hdcp.c | 6 +++--- > drivers/gpu/drm/i915/display/intel_pmdemand.c | 2 +- > drivers/gpu/drm/i915/display/intel_psr.c | 8 ++++---- > drivers/gpu/drm/i915/display/skl_watermark.c | 2 +- > .../gpu/drm/xe/compat-i915-headers/i915_drv.h | 2 -- > 15 files changed, 36 insertions(+), 38 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_atomic_plane.c > b/drivers/gpu/drm/i915/display/intel_atomic_plane.c > index 73fe36f00dae..d89630b2d5c1 100644 > --- a/drivers/gpu/drm/i915/display/intel_atomic_plane.c > +++ b/drivers/gpu/drm/i915/display/intel_atomic_plane.c > @@ -1026,8 +1026,8 @@ int intel_plane_check_src_coordinates(struct > intel_plane_state *plane_state) > vsub = 1; > > /* Wa_16023981245 */ > - if ((DISPLAY_VER_FULL(i915) == IP_VER(20, 0) || > - DISPLAY_VER_FULL(i915) == IP_VER(30, 0)) && > + if ((DISPLAY_VERx100(i915) == 2000 || > + DISPLAY_VERx100(i915) == 3000) && > src_x % 2 != 0) > hsub = 2; > } else { > diff --git a/drivers/gpu/drm/i915/display/intel_bw.c > b/drivers/gpu/drm/i915/display/intel_bw.c > index 47036d4abb33..a52b0ae68b96 100644 > --- a/drivers/gpu/drm/i915/display/intel_bw.c > +++ b/drivers/gpu/drm/i915/display/intel_bw.c > @@ -743,7 +743,7 @@ void intel_bw_init_hw(struct drm_i915_private > *dev_priv) > if (!HAS_DISPLAY(dev_priv)) > return; > > - if (DISPLAY_VER_FULL(dev_priv) >= IP_VER(14, 1) && > IS_DGFX(dev_priv)) > + if (DISPLAY_VERx100(dev_priv) >= 1401 && IS_DGFX(dev_priv)) > xe2_hpd_get_bw_info(dev_priv, &xe2_hpd_sa_info); > else if (DISPLAY_VER(dev_priv) >= 14) > tgl_get_bw_info(dev_priv, &mtl_sa_info); diff --git > a/drivers/gpu/drm/i915/display/intel_cdclk.c > b/drivers/gpu/drm/i915/display/intel_cdclk.c > index 96523526a2c3..03c4eef3f92a 100644 > --- a/drivers/gpu/drm/i915/display/intel_cdclk.c > +++ b/drivers/gpu/drm/i915/display/intel_cdclk.c > @@ -2058,8 +2058,8 @@ static bool pll_enable_wa_needed(struct > intel_display *display) { > struct drm_i915_private *dev_priv = to_i915(display->drm); > > - return (DISPLAY_VER_FULL(display) == IP_VER(20, 0) || > - DISPLAY_VER_FULL(display) == IP_VER(14, 0) || > + return (DISPLAY_VERx100(display) == 2000 || > + DISPLAY_VERx100(display) == 1400 || > IS_DG2(dev_priv)) && > display->cdclk.hw.vco > 0; > } > @@ -3852,7 +3852,7 @@ void intel_init_cdclk_hooks(struct intel_display > *display) > } else if (DISPLAY_VER(display) >= 20) { > display->funcs.cdclk = &rplu_cdclk_funcs; > display->cdclk.table = xe2lpd_cdclk_table; > - } else if (DISPLAY_VER_FULL(display) >= IP_VER(14, 1)) { > + } else if (DISPLAY_VERx100(display) >= 1401) { > display->funcs.cdclk = &rplu_cdclk_funcs; > display->cdclk.table = xe2hpd_cdclk_table; > } else if (DISPLAY_VER(display) >= 14) { diff --git > a/drivers/gpu/drm/i915/display/intel_cx0_phy.c > b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > index 8ad19106fee1..2136673fe0ad 100644 > --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c > +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c > @@ -2276,13 +2276,13 @@ intel_c20_pll_tables_get(struct intel_crtc_state > *crtc_state, > if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_EDP)) { > if (DISPLAY_RUNTIME_INFO(display)- > >edp_typec_support) > return xe3lpd_c20_dp_edp_tables; > - if (DISPLAY_VER_FULL(i915) == IP_VER(14, 1)) > + if (DISPLAY_VERx100(i915) == 1401) > return xe2hpd_c20_edp_tables; > } > > if (DISPLAY_VER(i915) >= 30) > return xe3lpd_c20_dp_edp_tables; > - else if (DISPLAY_VER_FULL(i915) == IP_VER(14, 1)) > + else if (DISPLAY_VERx100(i915) == 1401) > return xe2hpd_c20_dp_tables; > else > return mtl_c20_dp_tables; > diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h > b/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h > index 582d6277d20c..f0e5c196eae4 100644 > --- a/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h > +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy_regs.h > @@ -273,7 +273,7 @@ > #define _XE2HPD_C20_A_MPLLB_CFG 0xCCC2 > #define _XE2HPD_C20_B_MPLLB_CFG 0xCCB6 > > -#define _IS_XE2HPD_C20(i915) (DISPLAY_VER_FULL(i915) == > IP_VER(14, 1)) > +#define _IS_XE2HPD_C20(i915) (DISPLAY_VERx100(i915) == 1401) > > #define PHY_C20_A_TX_CNTX_CFG(i915, idx) \ > ((_IS_XE2HPD_C20(i915) ? _XE2HPD_C20_A_TX_CNTX_CFG : > _MTL_C20_A_TX_CNTX_CFG) - (idx)) diff --git > a/drivers/gpu/drm/i915/display/intel_display_device.h > b/drivers/gpu/drm/i915/display/intel_display_device.h > index 410f8b33a8a1..10964d95277f 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_device.h > +++ b/drivers/gpu/drm/i915/display/intel_display_device.h > @@ -168,10 +168,10 @@ enum intel_display_subplatform { > #define SUPPORTS_TV(i915) (DISPLAY_INFO(i915)->supports_tv) > > /* Check that device has a display IP version within the specific range. */ - > #define IS_DISPLAY_VER_FULL(__i915, from, until) ( \ > - BUILD_BUG_ON_ZERO((from) < IP_VER(2, 0)) + \ > - (DISPLAY_VER_FULL(__i915) >= (from) && \ > - DISPLAY_VER_FULL(__i915) <= (until))) > +#define IS_DISPLAY_VERx100(__i915, from, until) ( \ > + BUILD_BUG_ON_ZERO((from) < 200) + \ > + (DISPLAY_VERx100(__i915) >= (from) && \ > + DISPLAY_VERx100(__i915) <= (until))) > > /* > * Check if a device has a specific IP version as well as a stepping within the > @@ -182,22 +182,22 @@ enum intel_display_subplatform { > * hardware fix is present and the software workaround is no longer > necessary. > * E.g., > * > - * IS_DISPLAY_VER_STEP(i915, IP_VER(14, 0), STEP_A0, STEP_B2) > - * IS_DISPLAY_VER_STEP(i915, IP_VER(14, 0), STEP_C0, STEP_FOREVER) > + * IS_DISPLAY_VERx100_STEP(i915, 1400, STEP_A0, STEP_B2) > + * IS_DISPLAY_VERx100_STEP(i915, 1400, STEP_C0, STEP_FOREVER) > * > * "STEP_FOREVER" can be passed as "until" for workarounds that have no > upper > * stepping bound for the specified IP version. > */ > -#define IS_DISPLAY_VER_STEP(__i915, ipver, from, until) \ > - (IS_DISPLAY_VER_FULL((__i915), (ipver), (ipver)) && \ > +#define IS_DISPLAY_VERx100_STEP(__i915, ipver, from, until) \ > + (IS_DISPLAY_VERx100((__i915), (ipver), (ipver)) && \ > IS_DISPLAY_STEP((__i915), (from), (until))) > > #define DISPLAY_INFO(i915) (__to_intel_display(i915)- > >info.__device_info) > #define DISPLAY_RUNTIME_INFO(i915) (&__to_intel_display(i915)- > >info.__runtime_info) > > #define DISPLAY_VER(i915) (DISPLAY_RUNTIME_INFO(i915)->ip.ver) > -#define DISPLAY_VER_FULL(i915) > IP_VER(DISPLAY_RUNTIME_INFO(i915)->ip.ver, \ > - DISPLAY_RUNTIME_INFO(i915)->ip.rel) > +#define DISPLAY_VERx100(i915) (DISPLAY_RUNTIME_INFO(i915)- > >ip.ver * 100 + \ > + DISPLAY_RUNTIME_INFO(i915)->ip.rel) > #define IS_DISPLAY_VER(i915, from, until) \ > (DISPLAY_VER(i915) >= (from) && DISPLAY_VER(i915) <= (until)) > > diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c > b/drivers/gpu/drm/i915/display/intel_display_power.c > index d0c21c89c471..2766fd9208b0 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_power.c > +++ b/drivers/gpu/drm/i915/display/intel_display_power.c > @@ -1684,14 +1684,14 @@ static void icl_display_core_init(struct > drm_i915_private *dev_priv, > intel_snps_phy_wait_for_calibration(dev_priv); > > /* 9. XE2_HPD: Program CHICKEN_MISC_2 before any cursor or > planes are enabled */ > - if (DISPLAY_VER_FULL(dev_priv) == IP_VER(14, 1)) > + if (DISPLAY_VERx100(dev_priv) == 1401) > intel_de_rmw(dev_priv, CHICKEN_MISC_2, > BMG_DARB_HALF_BLK_END_BURST, 1); > > if (resume) > intel_dmc_load_program(display); > > /* Wa_14011508470:tgl,dg1,rkl,adl-s,adl-p,dg2 */ > - if (IS_DISPLAY_VER_FULL(dev_priv, IP_VER(12, 0), IP_VER(13, 0))) > + if (IS_DISPLAY_VERx100(dev_priv, 1200, 1300)) > intel_de_rmw(dev_priv, GEN11_CHICKEN_DCPR_2, 0, > DCPR_CLEAR_MEMSTAT_DIS | > DCPR_SEND_RESP_IMM | > DCPR_MASK_LPMODE | > DCPR_MASK_MAXLATENCY_MEMUP_CLR); diff --git > a/drivers/gpu/drm/i915/display/intel_dmc.c > b/drivers/gpu/drm/i915/display/intel_dmc.c > index 5392b68627ae..87bdacfd9edf 100644 > --- a/drivers/gpu/drm/i915/display/intel_dmc.c > +++ b/drivers/gpu/drm/i915/display/intel_dmc.c > @@ -171,16 +171,16 @@ static const char *dmc_firmware_default(struct > intel_display *display, u32 *size > const char *fw_path = NULL; > u32 max_fw_size = 0; > > - if (DISPLAY_VER_FULL(display) == IP_VER(30, 0)) { > + if (DISPLAY_VERx100(display) == 3000) { > fw_path = XE3LPD_DMC_PATH; > max_fw_size = XE2LPD_DMC_MAX_FW_SIZE; > - } else if (DISPLAY_VER_FULL(display) == IP_VER(20, 0)) { > + } else if (DISPLAY_VERx100(display) == 2000) { > fw_path = XE2LPD_DMC_PATH; > max_fw_size = XE2LPD_DMC_MAX_FW_SIZE; > - } else if (DISPLAY_VER_FULL(display) == IP_VER(14, 1)) { > + } else if (DISPLAY_VERx100(display) == 1401) { > fw_path = BMG_DMC_PATH; > max_fw_size = XELPDP_DMC_MAX_FW_SIZE; > - } else if (DISPLAY_VER_FULL(display) == IP_VER(14, 0)) { > + } else if (DISPLAY_VERx100(display) == 1400) { > fw_path = MTL_DMC_PATH; > max_fw_size = XELPDP_DMC_MAX_FW_SIZE; > } else if (IS_DG2(i915)) { > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c > b/drivers/gpu/drm/i915/display/intel_dp.c > index 694491a4c408..0780448d0cb4 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp.c > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > @@ -497,7 +497,7 @@ static int mtl_max_source_rate(struct intel_dp > *intel_dp) > if (intel_encoder_is_c10phy(encoder)) > return 810000; > > - if (DISPLAY_VER_FULL(to_i915(encoder->base.dev)) == IP_VER(14, 1)) > + if (DISPLAY_VERx100(to_i915(encoder->base.dev)) == 1401) > return 1350000; > > return 2000000; > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c > b/drivers/gpu/drm/i915/display/intel_fbc.c > index 2e0863093cff..df05904bac8a 100644 > --- a/drivers/gpu/drm/i915/display/intel_fbc.c > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c > @@ -1347,7 +1347,7 @@ static int intel_fbc_check_plane(struct > intel_atomic_state *state, > > /* Wa_14016291713 */ > if ((IS_DISPLAY_VER(display, 12, 13) || > - IS_DISPLAY_VER_STEP(i915, IP_VER(14, 0), STEP_A0, STEP_C0)) && > + IS_DISPLAY_VERx100_STEP(i915, 1400, STEP_A0, STEP_C0)) && > crtc_state->has_psr && !crtc_state->has_panel_replay) { > plane_state->no_fbc_reason = "PSR1 enabled > (Wa_14016291713)"; > return 0; > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c > b/drivers/gpu/drm/i915/display/intel_hdcp.c > index ed6aa87403e2..268deddc5281 100644 > --- a/drivers/gpu/drm/i915/display/intel_hdcp.c > +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c > @@ -43,11 +43,11 @@ intel_hdcp_disable_hdcp_line_rekeying(struct > intel_encoder *encoder, > return; > > if (DISPLAY_VER(display) >= 14) { > - if (IS_DISPLAY_VER_STEP(display, IP_VER(14, 0), STEP_D0, > STEP_FOREVER)) > + if (IS_DISPLAY_VERx100_STEP(display, 1400, STEP_D0, > STEP_FOREVER)) > intel_de_rmw(display, MTL_CHICKEN_TRANS(hdcp- > >cpu_transcoder), > 0, HDCP_LINE_REKEY_DISABLE); > - else if (IS_DISPLAY_VER_STEP(display, IP_VER(14, 1), STEP_B0, > STEP_FOREVER) || > - IS_DISPLAY_VER_STEP(display, IP_VER(20, 0), > STEP_B0, STEP_FOREVER)) > + else if (IS_DISPLAY_VERx100_STEP(display, 1401, STEP_B0, > STEP_FOREVER) || > + IS_DISPLAY_VERx100_STEP(display, 2000, STEP_B0, > STEP_FOREVER)) > intel_de_rmw(display, > TRANS_DDI_FUNC_CTL(display, hdcp- > >cpu_transcoder), > 0, > TRANS_DDI_HDCP_LINE_REKEY_DISABLE); > diff --git a/drivers/gpu/drm/i915/display/intel_pmdemand.c > b/drivers/gpu/drm/i915/display/intel_pmdemand.c > index 92190ff25136..cdd314956a31 100644 > --- a/drivers/gpu/drm/i915/display/intel_pmdemand.c > +++ b/drivers/gpu/drm/i915/display/intel_pmdemand.c > @@ -92,7 +92,7 @@ int intel_pmdemand_init(struct drm_i915_private *i915) > &pmdemand_state->base, > &intel_pmdemand_funcs); > > - if (IS_DISPLAY_VER_STEP(i915, IP_VER(14, 0), STEP_A0, STEP_C0)) > + if (IS_DISPLAY_VERx100_STEP(i915, 1400, STEP_A0, STEP_C0)) > /* Wa_14016740474 */ > intel_de_rmw(i915, XELPD_CHICKEN_DCPR_3, 0, > DMD_RSP_TIMEOUT_DISABLE); > > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c > b/drivers/gpu/drm/i915/display/intel_psr.c > index 880ea845207f..0c8da1701c3a 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.c > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > @@ -1918,14 +1918,14 @@ static void intel_psr_enable_source(struct > intel_dp *intel_dp, > * cause issues if non-supported panels are used. > */ > if (!intel_dp->psr.panel_replay_enabled && > - (IS_DISPLAY_VER_STEP(display, IP_VER(14, 0), STEP_A0, > STEP_B0) || > + (IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, > STEP_B0) || > IS_ALDERLAKE_P(dev_priv))) > intel_de_rmw(display, > hsw_chicken_trans_reg(dev_priv, cpu_transcoder), > 0, ADLP_1_BASED_X_GRANULARITY); > > /* Wa_16012604467:adlp,mtl[a0,b0] */ > if (!intel_dp->psr.panel_replay_enabled && > - IS_DISPLAY_VER_STEP(display, IP_VER(14, 0), STEP_A0, > STEP_B0)) > + IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, > STEP_B0)) > intel_de_rmw(display, > MTL_CLKGATE_DIS_TRANS(display, > cpu_transcoder), > 0, > @@ -2110,7 +2110,7 @@ static void intel_psr_disable_locked(struct intel_dp > *intel_dp) > if (intel_dp->psr.sel_update_enabled) { > /* Wa_16012604467:adlp,mtl[a0,b0] */ > if (!intel_dp->psr.panel_replay_enabled && > - IS_DISPLAY_VER_STEP(display, IP_VER(14, 0), STEP_A0, > STEP_B0)) > + IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, > STEP_B0)) > intel_de_rmw(display, > MTL_CLKGATE_DIS_TRANS(display, > cpu_transcoder), > > MTL_CLKGATE_DIS_TRANS_DMASC_GATING_DIS, 0); @@ -2565,7 +2565,7 > @@ intel_psr_apply_su_area_workarounds(struct intel_crtc_state > *crtc_state) > > /* Wa_14014971492 */ > if (!crtc_state->has_panel_replay && > - ((IS_DISPLAY_VER_STEP(display, IP_VER(14, 0), STEP_A0, STEP_B0) > || > + ((IS_DISPLAY_VERx100_STEP(display, 1400, STEP_A0, STEP_B0) || > IS_ALDERLAKE_P(i915) || IS_TIGERLAKE(i915))) && > crtc_state->splitter.enable) > crtc_state->psr2_su_area.y1 = 0; > diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c > b/drivers/gpu/drm/i915/display/skl_watermark.c > index 31de33e868df..3b0e87edbacf 100644 > --- a/drivers/gpu/drm/i915/display/skl_watermark.c > +++ b/drivers/gpu/drm/i915/display/skl_watermark.c > @@ -3533,7 +3533,7 @@ static void intel_mbus_dbox_update(struct > intel_atomic_state *state) > for_each_intel_crtc_in_pipe_mask(&i915->drm, crtc, > new_dbuf_state->active_pipes) { > u32 pipe_val = val; > > - if (DISPLAY_VER_FULL(i915) == IP_VER(14, 0)) { > + if (DISPLAY_VERx100(i915) == 1400) { > if (xelpdp_is_only_pipe_per_dbuf_bank(crtc->pipe, > new_dbuf_state- > >active_pipes)) > pipe_val |= > MBUS_DBOX_BW_8CREDITS_MTL; diff --git a/drivers/gpu/drm/xe/compat- > i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915- > headers/i915_drv.h > index bd8c3de57dcd..84b0991b35b3 100644 > --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h > +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h > @@ -73,8 +73,6 @@ static inline struct drm_i915_private *to_i915(const > struct drm_device *dev) #define IS_BROADWELL_ULT(dev_priv) (dev_priv > && 0) #define IS_BROADWELL_ULX(dev_priv) (dev_priv && 0) > > -#define IP_VER(ver, rel) ((ver) << 8 | (rel)) > - > #define IS_MOBILE(xe) (xe && 0) > > #define IS_TIGERLAKE_UY(xe) (xe && 0) > -- > 2.39.5 ^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH v3] drm/i915/display: use x100 version for full version and release 2024-10-30 11:58 ` [PATCH v3] drm/i915/display: use x100 version for full version and release Kandpal, Suraj @ 2024-10-30 12:25 ` Jani Nikula 0 siblings, 0 replies; 5+ messages in thread From: Jani Nikula @ 2024-10-30 12:25 UTC (permalink / raw) To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: ville.syrjala@linux.intel.com, Roper, Matthew D, De Marchi, Lucas On Wed, 30 Oct 2024, "Kandpal, Suraj" <suraj.kandpal@intel.com> wrote: >> -----Original Message----- >> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Jani >> Nikula >> Sent: Tuesday, October 29, 2024 9:26 PM >> To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org >> Cc: Nikula, Jani <jani.nikula@intel.com>; ville.syrjala@linux.intel.com; Roper, >> Matthew D <matthew.d.roper@intel.com>; De Marchi, Lucas >> <lucas.demarchi@intel.com> >> Subject: [PATCH v3] drm/i915/display: use x100 version for full version and >> release >> >> Use x100, or ver * 100 + rel, versions for full IP version checks, similar to what >> xe driver does: >> >> - Replace IP_VER(14, 1) inline with 1401, etc. >> >> - Convert DISPLAY_VER_FULL() to DISPLAY_VERx100() >> >> - Convert IS_DISPLAY_VER_FULL() to IS_DISPLAY_VERx100() >> >> - Convert IS_DISPLAY_VER_STEP() to IS_DISPLAY_VERx100_STEP() >> >> This makes ver.rel versions easier to use, follows the xe driver pattern, and >> drops the dependency on the IP_VER() macro. >> >> v2: Rebase, drop IP_VER() from xe compat headers >> >> v3: Rebase >> >> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> >> Acked-by: Matt Roper <matthew.d.roper@intel.com> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > LGTM, > Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com> Thanks for the review, pushed to din. BR, Jani. -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Fi.CI.IGT: success for drm/i915/display: use x100 version for full version and release (rev4) 2024-10-29 15:55 [PATCH v3] drm/i915/display: use x100 version for full version and release Jani Nikula 2024-10-29 22:31 ` ✓ Fi.CI.BAT: success for drm/i915/display: use x100 version for full version and release (rev4) Patchwork 2024-10-30 11:58 ` [PATCH v3] drm/i915/display: use x100 version for full version and release Kandpal, Suraj @ 2024-10-30 17:19 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-10-30 17:19 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100297 bytes --] == Series Details == Series: drm/i915/display: use x100 version for full version and release (rev4) URL : https://patchwork.freedesktop.org/series/140454/ State : success == Summary == CI Bug Log - changes from CI_DRM_15606_full -> Patchwork_140454v4_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in Patchwork_140454v4_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][1] ([i915#6230]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-13/igt@api_intel_bb@object-reloc-keep-cache.html * igt@drm_fdinfo@virtual-busy: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8414]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@drm_fdinfo@virtual-busy.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@drm_fdinfo@virtual-busy-all.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][5] ([i915#7697]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#7697]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8555]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#280]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-13/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#280]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][11] -> [ABORT][12] ([i915#7975] / [i915#8213]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-17/igt@gem_eio@hibernate.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#4771]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_fair@basic-deadline: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3539] / [i915#4852]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share: - shard-rkl: [PASS][16] -> [FAIL][17] ([i915#2842]) +2 other tests fail [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-3/igt@gem_exec_fair@basic-none-share.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html - shard-tglu-1: NOTRUN -> [FAIL][18] ([i915#2842]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-vip: - shard-tglu: NOTRUN -> [FAIL][19] ([i915#2842]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4473] / [i915#4771]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#3539]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@gem_exec_fence@submit3.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-19/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][25] +6 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3281]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3281]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3281]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@pi-ringfull@rcs0: - shard-dg1: NOTRUN -> [FAIL][29] ([i915#12296]) +5 other tests fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@gem_exec_schedule@pi-ringfull@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4537] / [i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4860]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4860]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_gtt_cpu_tlb: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4077]) +8 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-19/igt@gem_gtt_cpu_tlb.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4077]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@gem_gtt_cpu_tlb.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4613]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#4613]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#12193]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4565]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4077]) +7 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-6/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@close: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4083]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@gem_mmap_wc@close.html * igt@gem_pread@display: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3282]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@gem_pread@display.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3282]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gem_pread@snoop.html * igt@gem_pread@uncached: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3282]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@gem_pread@uncached.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4270]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4270]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4270]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4270]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#8428]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#5190] / [i915#8428]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4079]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@gem_render_tiled_blits@basic.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4885]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-4/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3297]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3297]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-14/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#3297]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3297] / [i915#4880]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281] / [i915#3297]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gem_userptr_blits@relocations.html * igt@gen7_exec_parse@load-register-reg: - shard-tglu: NOTRUN -> [SKIP][58] +18 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#2856]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-chained: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#2527] / [i915#2856]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#2856]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#2527]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-19/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#2527]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][64] -> [ABORT][65] ([i915#9820]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#8399]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][67] -> [INCOMPLETE][68] ([i915#12455]) +1 other test incomplete [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [PASS][69] -> [FAIL][70] ([i915#3591]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][71] -> [FAIL][72] ([i915#12548] / [i915#3591]) +1 other test fail [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#11681]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8437]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#6245]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-13/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#5723]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@live: - shard-mtlp: [PASS][77] -> [ABORT][78] ([i915#12133] / [i915#12216]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-4/igt@i915_selftest@live.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-4/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][79] -> [ABORT][80] ([i915#12216]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-4/igt@i915_selftest@live@workarounds.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-4/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4212]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_addfb_basic@clobberred-modifier.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4212]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-19/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#12454]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#8709]) +11 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic_interruptible@atomic-setmode: - shard-dg2: [PASS][85] -> [SKIP][86] ([i915#9197]) +27 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_atomic_interruptible@atomic-setmode.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_atomic_interruptible@atomic-setmode.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#1769] / [i915#3555]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-snb: NOTRUN -> [SKIP][88] ([i915#1769]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-mtlp: [PASS][89] -> [FAIL][90] ([i915#11808] / [i915#5956]) +1 other test fail [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][91] -> [FAIL][92] ([i915#11808]) +1 other test fail [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4: - shard-dg1: [PASS][93] -> [FAIL][94] ([i915#5956]) +2 other tests fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][95] ([i915#5956]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-12/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5286]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-19/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][97] +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#5286]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#5286]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#5286]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#3638]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6187]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#5190]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5190]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#10307] / [i915#6095]) +190 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-11/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#6095]) +14 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#6095]) +24 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#6095]) +52 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#12313]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#12313]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6095]) +19 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#6095]) +46 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#3742]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#11616] / [i915#7213]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html * igt@kms_chamelium_color@ctm-0-75: - shard-snb: NOTRUN -> [SKIP][117] +22 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-snb7/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#7828]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@vga-edid-read: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#7828]) +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#7828]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#7828]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#7828]) +5 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#7828]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_color@ctm-blue-to-red: - shard-dg2: [PASS][124] -> [SKIP][125] ([i915#12655]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_color@ctm-blue-to-red.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_color@ctm-blue-to-red.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-3: - shard-dg2: NOTRUN -> [TIMEOUT][128] ([i915#7173]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_content_protection@atomic-dpms@pipe-a-dp-3.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7118] / [i915#9424]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#9424]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#11453] / [i915#3359]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#3555]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3555] / [i915#8814]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#11453] / [i915#3359]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#11453] / [i915#3359]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#9809]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#4103]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#4103]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4103] / [i915#4213]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#9067]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4103] / [i915#4213]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-19/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#4213]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#9723]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555] / [i915#3804]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#3804]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#12402]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#3840]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#3840]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#3840]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#3469]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#1839]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-12/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#9337]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#3637]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-rkl: NOTRUN -> [SKIP][154] +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#9934]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#3637]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@modeset-vs-vblank-race: - shard-dg2: [PASS][157] -> [SKIP][158] ([i915#5354]) +8 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_flip@modeset-vs-vblank-race.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-dg2: [PASS][159] -> [FAIL][160] ([i915#10826] / [i915#2122]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-7/igt@kms_flip@wf_vblank-ts-check-interruptible.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_flip@wf_vblank-ts-check-interruptible.html - shard-dg1: [PASS][161] -> [FAIL][162] ([i915#12517] / [i915#2122]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-16/igt@kms_flip@wf_vblank-ts-check-interruptible.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp3: - shard-dg2: NOTRUN -> [FAIL][163] ([i915#10826]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp3.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][164] ([i915#10826]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1: - shard-mtlp: [PASS][165] -> [FAIL][166] ([i915#2122]) +3 other tests fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-3/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][167] ([i915#11961]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a4: - shard-dg1: [PASS][168] -> [FAIL][169] ([i915#2122]) +1 other test fail [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-16/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a4.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a4.html * igt@kms_flip@wf_vblank-ts-check-interruptible@c-dp3: - shard-dg2: NOTRUN -> [FAIL][170] ([i915#2122]) +2 other tests fail [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_flip@wf_vblank-ts-check-interruptible@c-dp3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#2672] / [i915#8813]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#2672] / [i915#3555]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#2587] / [i915#2672]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#2587] / [i915#2672] / [i915#3555]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#2672]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][179] ([i915#6880]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#1825]) +5 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#1825]) +10 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3458]) +9 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#8708]) +12 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#10433] / [i915#3458]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#8708]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][186] +18 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][187] +18 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3458]) +10 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#5354]) +25 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8708]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3023]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch: - shard-dg2: [PASS][192] -> [SKIP][193] ([i915#3555] / [i915#8228]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_hdr@bpc-switch.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-7/igt@kms_hdr@bpc-switch.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#10656]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#12388]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#6301]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-dg2: [PASS][200] -> [SKIP][201] ([i915#7294]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-6/igt@kms_plane_alpha_blend@constant-alpha-max.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8821]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#3555]) +4 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-dg2: [PASS][204] -> [SKIP][205] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_plane_scaling@invalid-num-scalers.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#12247]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#12247] / [i915#6953] / [i915#9423]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#12247]) +11 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-dg2: [PASS][209] -> [SKIP][210] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-5.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a: - shard-dg2: [PASS][211] -> [SKIP][212] ([i915#12247]) +8 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-dg2: [PASS][213] -> [SKIP][214] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: [PASS][215] -> [SKIP][216] ([i915#3555] / [i915#8152] / [i915#9423]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d: - shard-dg2: [PASS][217] -> [SKIP][218] ([i915#12247] / [i915#8152]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#12247] / [i915#12504] / [i915#3555]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#12247] / [i915#12504]) +6 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#12247] / [i915#3555] / [i915#6953]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#12247]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#5354]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-12/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3361]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][225] -> [FAIL][226] ([i915#9295]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#8430]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#9519]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][229] -> [SKIP][230] ([i915#9519]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#9519]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#6524]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#11520]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#11520]) +5 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#9808]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#12316]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#11520]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][238] ([i915#11520]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-snb7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][239] ([i915#11520]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-glk1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#11520]) +6 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][241] +29 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-glk8/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][242] ([i915#9683]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#9683]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#9688]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#1072] / [i915#9732]) +12 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@pr-sprite-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#9732]) +4 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-6/igt@kms_psr@pr-sprite-mmap-cpu.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#1072] / [i915#9732]) +8 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#1072] / [i915#9732]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr2-cursor-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#9732]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-cpu.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#4077] / [i915#9688]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#4235]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#5289]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#11131] / [i915#4235]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#5289]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#5289]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-none: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#5030] / [i915#9041]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#5030]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#5030] / [i915#9041]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_selftest@drm_framebuffer: - shard-dg1: NOTRUN -> [ABORT][259] ([i915#12231]) +1 other test abort [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#3555]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#9906]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#9906]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#9906]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][264] ([i915#9100]) +1 other test fail [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@most-busy-idle-check-all: - shard-mtlp: NOTRUN -> [FAIL][265] ([i915#11943] / [i915#12515]) +1 other test fail [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3291] / [i915#3708]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#3708]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-19/igt@prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#3708]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#9917]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#9917]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][271] ([i915#12564] / [i915#9781]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][272] ([i915#2842]) -> [PASS][273] +1 other test pass [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][274] ([i915#2842]) -> [PASS][275] +1 other test pass [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg1: [ABORT][276] ([i915#7975] / [i915#8213]) -> [PASS][277] +1 other test pass [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [INCOMPLETE][278] -> [PASS][279] +1 other test pass [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_offset@clear: - shard-mtlp: [ABORT][280] ([i915#10729]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-2/igt@gem_mmap_offset@clear.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@gem_mmap_offset@clear.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [ABORT][282] ([i915#10029] / [i915#10729]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-2/igt@gem_mmap_offset@clear@smem0.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-5/igt@gem_mmap_offset@clear@smem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][284] ([i915#9820]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-glk: [FAIL][286] ([i915#10991]) -> [PASS][287] +1 other test pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - {shard-dg2-9}: [SKIP][288] ([i915#12659] / [i915#9197]) -> [PASS][289] +2 other tests pass [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [FAIL][290] ([i915#5956]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-rkl: [ABORT][292] ([i915#10354]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-0.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_color@degamma: - {shard-dg2-9}: [SKIP][294] ([i915#12655]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-9/igt@kms_color@degamma.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-9/igt@kms_color@degamma.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][296] ([i915#2346]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip@blocking-wf_vblank: - {shard-dg2-9}: [SKIP][298] ([i915#5354]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-9/igt@kms_flip@blocking-wf_vblank.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-9/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-mtlp: [FAIL][300] ([i915#11989] / [i915#2122]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-1/igt@kms_flip@flip-vs-blocking-wf-vblank.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [FAIL][302] ([i915#2122]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-1/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: - shard-mtlp: [FAIL][304] ([i915#11989]) -> [PASS][305] +1 other test pass [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-1/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1: - shard-snb: [FAIL][306] ([i915#2122]) -> [PASS][307] +3 other tests pass [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-snb6/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-snb4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1: - shard-tglu-1: [FAIL][308] ([i915#2122]) -> [PASS][309] +2 other tests pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: [SKIP][310] ([i915#3555]) -> [PASS][311] +2 other tests pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][312] ([i915#5354]) -> [PASS][313] +11 other tests pass [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [FAIL][314] ([i915#6880]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_pipe_crc_basic@read-crc: - {shard-dg2-9}: [SKIP][316] ([i915#9197]) -> [PASS][317] +7 other tests pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-9/igt@kms_pipe_crc_basic@read-crc.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-9/igt@kms_pipe_crc_basic@read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2: [SKIP][318] ([i915#9197]) -> [PASS][319] +33 other tests pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read-crc.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane@plane-panning-bottom-right: - shard-dg2: [SKIP][320] ([i915#8825]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_plane@plane-panning-bottom-right.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-dg2: [SKIP][322] ([i915#7294]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-7efc.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg2: [SKIP][324] ([i915#8152] / [i915#9423]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d: - shard-dg2: [SKIP][326] ([i915#8152]) -> [PASS][327] +1 other test pass [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - {shard-dg2-9}: [SKIP][328] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c: - {shard-dg2-9}: [SKIP][330] ([i915#12247]) -> [PASS][331] +2 other tests pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d: - {shard-dg2-9}: [SKIP][332] ([i915#12247] / [i915#8152]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-dg2: [SKIP][334] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-20x20: - shard-dg2: [SKIP][336] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-dg2: [SKIP][338] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: - shard-dg2: [SKIP][340] ([i915#12247]) -> [PASS][341] +11 other tests pass [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d: - shard-dg2: [SKIP][342] ([i915#12247] / [i915#8152]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][344] ([i915#9519]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [SKIP][346] ([i915#9519]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2: [SKIP][348] ([i915#3547]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@kms_pm_rpm@system-suspend-modeset.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][350] ([i915#9697]) -> [ABORT][351] ([i915#9820]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][352] ([i915#10131] / [i915#9820]) -> [ABORT][353] ([i915#10131] / [i915#10887] / [i915#9820]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: [SKIP][354] ([i915#9197]) -> [SKIP][355] ([i915#1769] / [i915#3555]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: [SKIP][356] ([i915#9197]) -> [SKIP][357] +3 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: [SKIP][358] -> [SKIP][359] ([i915#9197]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: [SKIP][360] ([i915#5190] / [i915#9197]) -> [SKIP][361] ([i915#4538] / [i915#5190]) +2 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: [SKIP][362] ([i915#4538] / [i915#5190]) -> [SKIP][363] ([i915#5190] / [i915#9197]) +5 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][364] ([i915#9197]) -> [SKIP][365] ([i915#10307] / [i915#6095]) +7 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: [SKIP][366] ([i915#10307] / [i915#6095]) -> [SKIP][367] ([i915#9197]) +5 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: [SKIP][368] ([i915#12313]) -> [SKIP][369] ([i915#9197]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2: [SKIP][370] ([i915#9197]) -> [SKIP][371] ([i915#12313]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-dg2: [SKIP][372] ([i915#9197]) -> [SKIP][373] ([i915#11616] / [i915#7213]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_cdclk@mode-transition.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling: - shard-dg2: [SKIP][374] ([i915#4087]) -> [SKIP][375] ([i915#9197]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_cdclk@plane-scaling.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_cdclk@plane-scaling.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [SKIP][376] ([i915#9197]) -> [TIMEOUT][377] ([i915#7173]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: [SKIP][378] ([i915#3299]) -> [SKIP][379] ([i915#9197]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [TIMEOUT][380] ([i915#7173]) -> [SKIP][381] ([i915#9424]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_content_protection@lic-type-0.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: [SKIP][382] ([i915#11453] / [i915#3359]) -> [SKIP][383] ([i915#9197]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: [SKIP][384] ([i915#3555]) -> [SKIP][385] ([i915#9197]) +2 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: [SKIP][386] ([i915#9197]) -> [SKIP][387] ([i915#5354]) +4 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: [SKIP][388] ([i915#5354]) -> [SKIP][389] ([i915#9197]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: [SKIP][390] ([i915#4103] / [i915#4213]) -> [SKIP][391] ([i915#9197]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: [SKIP][392] ([i915#8812]) -> [SKIP][393] ([i915#9197]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-gtt.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: [SKIP][394] ([i915#9197]) -> [SKIP][395] ([i915#3555] / [i915#3840]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_dsc@dsc-with-bpc.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_dsc@dsc-with-bpc.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-rkl: [FAIL][396] ([i915#2122]) -> [FAIL][397] ([i915#10826] / [i915#2122]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check-interruptible.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2: [SKIP][398] ([i915#3555]) -> [SKIP][399] ([i915#2672] / [i915#3555]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: [SKIP][400] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][401] ([i915#3555] / [i915#5190]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: [SKIP][402] ([i915#2672] / [i915#3555]) -> [SKIP][403] ([i915#3555]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: [SKIP][404] ([i915#5354]) -> [SKIP][405] ([i915#8708]) +10 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: [SKIP][406] ([i915#8708]) -> [SKIP][407] ([i915#5354]) +8 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: [SKIP][408] ([i915#5354]) -> [SKIP][409] ([i915#3458]) +9 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][410] ([i915#10433] / [i915#3458]) -> [SKIP][411] ([i915#3458]) +3 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: [SKIP][412] ([i915#9766]) -> [SKIP][413] ([i915#4342] / [i915#5354]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg2: [SKIP][414] ([i915#3458]) -> [SKIP][415] ([i915#10433] / [i915#3458]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][416] ([i915#3458]) -> [SKIP][417] ([i915#5354]) +8 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: [SKIP][418] ([i915#3555] / [i915#8228]) -> [SKIP][419] ([i915#9197]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: [SKIP][420] ([i915#9197]) -> [SKIP][421] ([i915#8821]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-3/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: [SKIP][422] ([i915#12247] / [i915#8152] / [i915#9423]) -> [SKIP][423] ([i915#12247] / [i915#9423]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg2: [SKIP][424] ([i915#12247] / [i915#8152]) -> [SKIP][425] ([i915#12247]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-mtlp: [FAIL][426] -> [SKIP][427] ([i915#12316]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr-primary-mmap-cpu: - shard-dg1: [SKIP][428] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][429] ([i915#1072] / [i915#9732]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-dg1-17/igt@kms_psr@fbc-psr-primary-mmap-cpu.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/shard-dg1-14/igt@kms_psr@fbc-psr-primary-mmap-cpu.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-mtlp: [FAIL][430] -> [SKIP][431] ([i915#4077] / [i915#9688]) +1 other test skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15606/shard-mtlp-7/igt@kms_psr@psr2-sprite-mmap-gtt.html [431]: https://intel-gfx-ci.01.org/tre == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140454v4/index.html [-- Attachment #2: Type: text/html, Size: 109187 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-10-30 17:19 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-29 15:55 [PATCH v3] drm/i915/display: use x100 version for full version and release Jani Nikula 2024-10-29 22:31 ` ✓ Fi.CI.BAT: success for drm/i915/display: use x100 version for full version and release (rev4) Patchwork 2024-10-30 11:58 ` [PATCH v3] drm/i915/display: use x100 version for full version and release Kandpal, Suraj 2024-10-30 12:25 ` Jani Nikula 2024-10-30 17:19 ` ✓ Fi.CI.IGT: success for drm/i915/display: use x100 version for full version and release (rev4) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox