* [Intel-gfx] [RFC 1/3] drm/i915: Define and compute Transcoder CMRR registers
2023-11-15 15:49 [Intel-gfx] [RFC 0/3] Implement CMRR Support Mitul Golani
@ 2023-11-15 15:49 ` Mitul Golani
2023-11-15 15:49 ` [Intel-gfx] [RFC 2/3] drm/i915: Add Enable/Disable for CMRR based on VRR state Mitul Golani
` (5 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Mitul Golani @ 2023-11-15 15:49 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula, ville.syrjala
Add register definitions for Transcoder Fixed Average
Vtotal mode/CMRR function, with the necessary bitfields.
Compute these registers when CMRR is enabled, extending
Adaptive refresh rate capabilities.
--v2:
- Use intel_de_read64_2x32 in intel_vrr_get_config. [Jani]
- Fix indent and order based on register offset. [Jani]
Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 23 ++++++++++++++++++-
.../drm/i915/display/intel_display_types.h | 6 +++++
drivers/gpu/drm/i915/display/intel_vrr.c | 22 ++++++++++++++++++
drivers/gpu/drm/i915/i915_reg.h | 10 ++++++++
4 files changed, 60 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 125903007a29..f99d2de840bc 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -921,6 +921,13 @@ static bool vrr_params_changed(const struct intel_crtc_state *old_crtc_state,
old_crtc_state->vrr.pipeline_full != new_crtc_state->vrr.pipeline_full;
}
+static bool cmrr_params_changed(const struct intel_crtc_state *old_crtc_state,
+ const struct intel_crtc_state *new_crtc_state)
+{
+ return old_crtc_state->cmrr.cmrr_m != new_crtc_state->cmrr.cmrr_m ||
+ old_crtc_state->cmrr.cmrr_n != new_crtc_state->cmrr.cmrr_n;
+}
+
static bool vrr_enabling(const struct intel_crtc_state *old_crtc_state,
const struct intel_crtc_state *new_crtc_state)
{
@@ -5067,6 +5074,16 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
} \
} while (0)
+#define PIPE_CONF_CHECK_LLI(name) do { \
+ if (current_config->name != pipe_config->name) { \
+ pipe_config_mismatch(fastset, crtc, __stringify(name), \
+ "(expected %lli, found %lli)", \
+ current_config->name, \
+ pipe_config->name); \
+ ret = false; \
+ } \
+} while (0)
+
#define PIPE_CONF_CHECK_BOOL(name) do { \
if (current_config->name != pipe_config->name) { \
pipe_config_mismatch(fastset, crtc, __stringify(name), \
@@ -5447,10 +5464,13 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
PIPE_CONF_CHECK_I(vrr.flipline);
PIPE_CONF_CHECK_I(vrr.pipeline_full);
PIPE_CONF_CHECK_I(vrr.guardband);
+ PIPE_CONF_CHECK_LLI(cmrr.cmrr_m);
+ PIPE_CONF_CHECK_LLI(cmrr.cmrr_n);
}
#undef PIPE_CONF_CHECK_X
#undef PIPE_CONF_CHECK_I
+#undef PIPE_CONF_CHECK_LLI
#undef PIPE_CONF_CHECK_BOOL
#undef PIPE_CONF_CHECK_BOOL_INCOMPLETE
#undef PIPE_CONF_CHECK_P
@@ -6790,7 +6810,8 @@ static void intel_pre_update_crtc(struct intel_atomic_state *state,
intel_crtc_needs_fastset(new_crtc_state))
icl_set_pipe_chicken(new_crtc_state);
- if (vrr_params_changed(old_crtc_state, new_crtc_state))
+ if (vrr_params_changed(old_crtc_state, new_crtc_state) ||
+ cmrr_params_changed(old_crtc_state, new_crtc_state))
intel_vrr_set_transcoder_timings(new_crtc_state);
}
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 9a44350ba05d..e42a0807227b 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1406,6 +1406,12 @@ struct intel_crtc_state {
u16 flipline, vmin, vmax, guardband;
} vrr;
+ /* Content Match Refresh Rate state */
+ struct {
+ bool enable;
+ u64 cmrr_n, cmrr_m;
+ } cmrr;
+
/* Stream Splitter for eDP MSO */
struct {
bool enable;
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index 5d905f932cb4..c889b0aa69a4 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -199,6 +199,19 @@ void intel_vrr_set_transcoder_timings(const struct intel_crtc_state *crtc_state)
return;
}
+ if (crtc_state->cmrr.enable) {
+ intel_de_write(dev_priv, TRANS_VRR_CTL(cpu_transcoder),
+ VRR_CTL_CMRR_ENABLE | trans_vrr_ctl(crtc_state));
+ intel_de_write(dev_priv, TRANS_CMRR_M_HI(cpu_transcoder),
+ upper_32_bits(crtc_state->cmrr.cmrr_m));
+ intel_de_write(dev_priv, TRANS_CMRR_M_LO(cpu_transcoder),
+ lower_32_bits(crtc_state->cmrr.cmrr_m));
+ intel_de_write(dev_priv, TRANS_CMRR_N_HI(cpu_transcoder),
+ upper_32_bits(crtc_state->cmrr.cmrr_n));
+ intel_de_write(dev_priv, TRANS_CMRR_N_LO(cpu_transcoder),
+ lower_32_bits(crtc_state->cmrr.cmrr_n));
+ }
+
intel_de_write(dev_priv, TRANS_VRR_VMIN(cpu_transcoder), crtc_state->vrr.vmin - 1);
intel_de_write(dev_priv, TRANS_VRR_VMAX(cpu_transcoder), crtc_state->vrr.vmax - 1);
intel_de_write(dev_priv, TRANS_VRR_CTL(cpu_transcoder), trans_vrr_ctl(crtc_state));
@@ -269,6 +282,15 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
crtc_state->vrr.enable = trans_vrr_ctl & VRR_CTL_VRR_ENABLE;
+ if (crtc_state->cmrr.enable) {
+ crtc_state->cmrr.cmrr_n =
+ intel_de_read64_2x32(dev_priv, TRANS_CMRR_N_LO(cpu_transcoder),
+ TRANS_CMRR_N_HI(cpu_transcoder));
+ crtc_state->cmrr.cmrr_m =
+ intel_de_read64_2x32(dev_priv, TRANS_CMRR_M_LO(cpu_transcoder),
+ TRANS_CMRR_M_HI(cpu_transcoder));
+ }
+
if (DISPLAY_VER(dev_priv) >= 13)
crtc_state->vrr.guardband =
REG_FIELD_GET(XELPD_VRR_CTL_VRR_GUARDBAND_MASK, trans_vrr_ctl);
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 135e8d8dbdf0..2254fd12a8c0 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -2013,6 +2013,7 @@
#define VRR_CTL_VRR_ENABLE REG_BIT(31)
#define VRR_CTL_IGN_MAX_SHIFT REG_BIT(30)
#define VRR_CTL_FLIP_LINE_EN REG_BIT(29)
+#define VRR_CTL_CMRR_ENABLE REG_BIT(27)
#define VRR_CTL_PIPELINE_FULL_MASK REG_GENMASK(10, 3)
#define VRR_CTL_PIPELINE_FULL(x) REG_FIELD_PREP(VRR_CTL_PIPELINE_FULL_MASK, (x))
#define VRR_CTL_PIPELINE_FULL_OVERRIDE REG_BIT(0)
@@ -2089,6 +2090,15 @@
#define TRANS_VRR_STATUS2(trans) _MMIO_TRANS2(trans, _TRANS_VRR_STATUS2_A)
#define VRR_STATUS2_VERT_LN_CNT_MASK REG_GENMASK(19, 0)
+#define _TRANS_CMRR_M_LO_A 0x604F0
+#define TRANS_CMRR_M_LO(trans) _MMIO_TRANS2(trans, _TRANS_CMRR_M_LO_A)
+#define _TRANS_CMRR_M_HI_A 0x604F4
+#define TRANS_CMRR_M_HI(trans) _MMIO_TRANS2(trans, _TRANS_CMRR_M_HI_A)
+#define _TRANS_CMRR_N_LO_A 0x604F8
+#define TRANS_CMRR_N_LO(trans) _MMIO_TRANS2(trans, _TRANS_CMRR_N_LO_A)
+#define _TRANS_CMRR_N_HI_A 0x604FC
+#define TRANS_CMRR_N_HI(trans) _MMIO_TRANS2(trans, _TRANS_CMRR_N_HI_A)
+
#define _TRANS_PUSH_A 0x60A70
#define _TRANS_PUSH_B 0x61A70
#define _TRANS_PUSH_C 0x62A70
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [Intel-gfx] [RFC 2/3] drm/i915: Add Enable/Disable for CMRR based on VRR state
2023-11-15 15:49 [Intel-gfx] [RFC 0/3] Implement CMRR Support Mitul Golani
2023-11-15 15:49 ` [Intel-gfx] [RFC 1/3] drm/i915: Define and compute Transcoder CMRR registers Mitul Golani
@ 2023-11-15 15:49 ` Mitul Golani
2023-11-15 15:49 ` [Intel-gfx] [RFC 3/3] drm/i915: Compute CMRR and calculate vtotal Mitul Golani
` (4 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Mitul Golani @ 2023-11-15 15:49 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula, ville.syrjala
Add CMRR/Fixed Average Vtotal mode enable and disable
functions based on change in VRR mode of operation.
When Adaptive Sync Vtotal is enabled, Fixed Average Vtotal
mode is disabled and vice versa. With this commit setting
the stage for subsequent CMRR enablement.
--v2:
- Check pipe active state in cmrr enabling. [Jani]
- Remove usage of bitwise OR on booleans. [Jani]
- Revert unrelated changes. [Jani]
- Update intel_vrr_enable, vrr and cmrr enable conditions. [Jani]
- Simplify whole if-ladder in intel_vrr_enable. [Jani]
- Revert patch restructuring mistakes in intel_vrr_get_config. [Jani]
--v3:
- Check pipe active state in cmrr disabling. (Similar to enable case).[Jani]
- Correct messed up condition in intel_vrr_enable while fixing rev2. [Jani]
Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
.../drm/i915/display/intel_crtc_state_dump.c | 4 ++-
drivers/gpu/drm/i915/display/intel_display.c | 30 ++++++++++++++++---
drivers/gpu/drm/i915/display/intel_vrr.c | 28 ++++++++++++-----
3 files changed, 49 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
index 2d15e82c0b3d..908a4c4ccb00 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
@@ -299,7 +299,9 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
intel_dump_buffer(i915, "ELD: ", pipe_config->eld,
drm_eld_size(pipe_config->eld));
- drm_dbg_kms(&i915->drm, "vrr: %s, vmin: %d, vmax: %d, pipeline full: %d, guardband: %d flipline: %d, vmin vblank: %d, vmax vblank: %d\n",
+ drm_dbg_kms(&i915->drm,
+ "cmrr: %s, vrr: %s, vmin: %d, vmax: %d, pipeline full: %d, guardband: %d, flipline: %d, vmin vblank: %d, vmax vblank: %d\n",
+ str_yes_no(pipe_config->cmrr.enable),
str_yes_no(pipe_config->vrr.enable),
pipe_config->vrr.vmin, pipe_config->vrr.vmax,
pipe_config->vrr.pipeline_full, pipe_config->vrr.guardband,
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index f99d2de840bc..31ee7984a5fd 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -937,6 +937,15 @@ static bool vrr_enabling(const struct intel_crtc_state *old_crtc_state,
vrr_params_changed(old_crtc_state, new_crtc_state)));
}
+static bool cmrr_enabling(const struct intel_crtc_state *old_crtc_state,
+ const struct intel_crtc_state *new_crtc_state)
+{
+ if (!new_crtc_state->hw.active)
+ return false;
+
+ return is_enabling(cmrr.enable, old_crtc_state, new_crtc_state);
+}
+
static bool vrr_disabling(const struct intel_crtc_state *old_crtc_state,
const struct intel_crtc_state *new_crtc_state)
{
@@ -946,6 +955,15 @@ static bool vrr_disabling(const struct intel_crtc_state *old_crtc_state,
vrr_params_changed(old_crtc_state, new_crtc_state)));
}
+static bool cmrr_disabling(const struct intel_crtc_state *old_crtc_state,
+ const struct intel_crtc_state *new_crtc_state)
+{
+ if (!old_crtc_state->hw.active)
+ return false;
+
+ return is_disabling(cmrr.enable, old_crtc_state, new_crtc_state);
+}
+
#undef is_disabling
#undef is_enabling
@@ -1064,7 +1082,8 @@ static void intel_pre_plane_update(struct intel_atomic_state *state,
intel_atomic_get_new_crtc_state(state, crtc);
enum pipe pipe = crtc->pipe;
- if (vrr_disabling(old_crtc_state, new_crtc_state)) {
+ if (vrr_disabling(old_crtc_state, new_crtc_state) ||
+ cmrr_disabling(old_crtc_state, new_crtc_state)) {
intel_vrr_disable(old_crtc_state);
intel_crtc_update_active_timings(old_crtc_state, false);
}
@@ -6754,7 +6773,8 @@ static void commit_pipe_post_planes(struct intel_atomic_state *state,
!intel_crtc_needs_modeset(new_crtc_state))
skl_detach_scalers(new_crtc_state);
- if (vrr_enabling(old_crtc_state, new_crtc_state))
+ if (vrr_enabling(old_crtc_state, new_crtc_state) ||
+ cmrr_enabling(old_crtc_state, new_crtc_state))
intel_vrr_enable(new_crtc_state);
}
@@ -6851,9 +6871,11 @@ static void intel_update_crtc(struct intel_atomic_state *state,
* FIXME Should be synchronized with the start of vblank somehow...
*/
if (vrr_enabling(old_crtc_state, new_crtc_state) ||
- new_crtc_state->update_m_n || new_crtc_state->update_lrr)
+ new_crtc_state->update_m_n || new_crtc_state->update_lrr ||
+ cmrr_enabling(old_crtc_state, new_crtc_state))
intel_crtc_update_active_timings(new_crtc_state,
- new_crtc_state->vrr.enable);
+ new_crtc_state->vrr.enable ||
+ new_crtc_state->cmrr.enable);
/*
* We usually enable FIFO underrun interrupts as part of the
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index c889b0aa69a4..8f1d241e1f79 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -224,7 +224,7 @@ void intel_vrr_send_push(const struct intel_crtc_state *crtc_state)
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;
- if (!crtc_state->vrr.enable)
+ if (!(crtc_state->vrr.enable || crtc_state->cmrr.enable))
return;
intel_de_write(dev_priv, TRANS_PUSH(cpu_transcoder),
@@ -237,7 +237,7 @@ bool intel_vrr_is_push_sent(const struct intel_crtc_state *crtc_state)
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;
- if (!crtc_state->vrr.enable)
+ if (!(crtc_state->vrr.enable || crtc_state->cmrr.enable))
return false;
return intel_de_read(dev_priv, TRANS_PUSH(cpu_transcoder)) & TRANS_PUSH_SEND;
@@ -248,12 +248,24 @@ void intel_vrr_enable(const struct intel_crtc_state *crtc_state)
struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;
- if (!crtc_state->vrr.enable)
+ if (drm_WARN_ON(&dev_priv->drm, crtc_state->vrr.enable &&
+ crtc_state->cmrr.enable))
return;
- intel_de_write(dev_priv, TRANS_PUSH(cpu_transcoder), TRANS_PUSH_EN);
- intel_de_write(dev_priv, TRANS_VRR_CTL(cpu_transcoder),
- VRR_CTL_VRR_ENABLE | trans_vrr_ctl(crtc_state));
+ if (crtc_state->vrr.enable) {
+ intel_de_write(dev_priv,
+ TRANS_PUSH(cpu_transcoder), TRANS_PUSH_EN);
+ intel_de_write(dev_priv, TRANS_VRR_CTL(cpu_transcoder),
+ VRR_CTL_VRR_ENABLE | trans_vrr_ctl(crtc_state));
+ }
+
+ if (crtc_state->cmrr.enable) {
+ intel_de_write(dev_priv,
+ TRANS_PUSH(cpu_transcoder), TRANS_PUSH_EN);
+ intel_de_write(dev_priv, TRANS_VRR_CTL(cpu_transcoder),
+ VRR_CTL_VRR_ENABLE | VRR_CTL_CMRR_ENABLE |
+ trans_vrr_ctl(crtc_state));
+ }
}
void intel_vrr_disable(const struct intel_crtc_state *old_crtc_state)
@@ -262,7 +274,7 @@ void intel_vrr_disable(const struct intel_crtc_state *old_crtc_state)
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
enum transcoder cpu_transcoder = old_crtc_state->cpu_transcoder;
- if (!old_crtc_state->vrr.enable)
+ if (!(old_crtc_state->vrr.enable || old_crtc_state->cmrr.enable))
return;
intel_de_write(dev_priv, TRANS_VRR_CTL(cpu_transcoder),
@@ -305,6 +317,6 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
crtc_state->vrr.vmin = intel_de_read(dev_priv, TRANS_VRR_VMIN(cpu_transcoder)) + 1;
}
- if (crtc_state->vrr.enable)
+ if (crtc_state->vrr.enable || crtc_state->cmrr.enable)
crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
}
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [Intel-gfx] [RFC 3/3] drm/i915: Compute CMRR and calculate vtotal
2023-11-15 15:49 [Intel-gfx] [RFC 0/3] Implement CMRR Support Mitul Golani
2023-11-15 15:49 ` [Intel-gfx] [RFC 1/3] drm/i915: Define and compute Transcoder CMRR registers Mitul Golani
2023-11-15 15:49 ` [Intel-gfx] [RFC 2/3] drm/i915: Add Enable/Disable for CMRR based on VRR state Mitul Golani
@ 2023-11-15 15:49 ` Mitul Golani
2023-11-16 0:54 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Implement CMRR Support (rev3) Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Mitul Golani @ 2023-11-15 15:49 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula, ville.syrjala
Compute Fixed Average Vtotal/CMRR with resepect to
userspace VRR enablement. Also calculate required
parameters in case of CMRR is enabled. During
intel_vrr_compute_config, CMRR is getting enabled
based on userspace has enabled Adaptive Sync Vtotal
mode (Legacy VRR) or not.
--v2:
- Update is_cmrr_frac_required function return as bool, not int. [Jani]
- Use signed int math instead of unsigned in cmrr_get_vtotal2. [Jani]
- Fix typo and usage of camel case in cmrr_get_vtotal. [Jani]
- Use do_div in cmrr_get_vtotalwhile calculating cmrr_m. [ Jani]
- Simplify cmrr and vrr compute config in intel_vrr_compute_config. [Jani]
- Correct valiable name usage in is_cmrr_frac_required. [Ville]
Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 1 +
.../drm/i915/display/intel_display_device.h | 1 +
drivers/gpu/drm/i915/display/intel_vrr.c | 76 +++++++++++++++++--
3 files changed, 72 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 31ee7984a5fd..84990fffe90a 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -5485,6 +5485,7 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
PIPE_CONF_CHECK_I(vrr.guardband);
PIPE_CONF_CHECK_LLI(cmrr.cmrr_m);
PIPE_CONF_CHECK_LLI(cmrr.cmrr_n);
+ PIPE_CONF_CHECK_BOOL(cmrr.enable);
}
#undef PIPE_CONF_CHECK_X
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 4299cc452e05..66cbc3a6bbe8 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -68,6 +68,7 @@ struct drm_printer;
#define HAS_TRANSCODER(i915, trans) ((DISPLAY_RUNTIME_INFO(i915)->cpu_transcoder_mask & \
BIT(trans)) != 0)
#define HAS_VRR(i915) (DISPLAY_VER(i915) >= 11)
+#define HAS_CMRR(i915) (DISPLAY_VER(i915) >= 20)
#define INTEL_NUM_PIPES(i915) (hweight8(DISPLAY_RUNTIME_INFO(i915)->pipe_mask))
#define I915_HAS_HOTPLUG(i915) (DISPLAY_INFO(i915)->has_hotplug)
#define OVERLAY_NEEDS_PHYSICAL(i915) (DISPLAY_INFO(i915)->overlay_needs_physical)
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index 8f1d241e1f79..554e39bb4d94 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -105,6 +105,52 @@ int intel_vrr_vmax_vblank_start(const struct intel_crtc_state *crtc_state)
return crtc_state->vrr.vmax - intel_vrr_vblank_exit_length(crtc_state);
}
+static bool
+is_cmrr_frac_required(struct intel_crtc_state *crtc_state)
+{
+ int calculated_refresh_k, actual_refresh_k;
+ struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
+
+ actual_refresh_k = drm_mode_vrefresh(adjusted_mode) * 1000;
+ calculated_refresh_k = DIV_ROUND_UP(adjusted_mode->crtc_clock * 1000,
+ adjusted_mode->crtc_htotal) * 1000;
+ calculated_refresh_k /= adjusted_mode->crtc_vtotal;
+
+ if (calculated_refresh_k == actual_refresh_k)
+ return false;
+
+ return true;
+}
+
+static unsigned int
+cmrr_get_vtotal(struct intel_crtc_state *crtc_state)
+{
+ int multiplier_m = 1, multiplier_n = 1, vtotal;
+ int actual_refresh_rate, desired_refresh_rate;
+ long long actual_pixel_rate, adjusted_pixel_rate;
+ struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
+
+ actual_refresh_rate = DIV_ROUND_UP(adjusted_mode->crtc_clock * 1000,
+ adjusted_mode->crtc_htotal) * 1000;
+ actual_refresh_rate /= adjusted_mode->crtc_vtotal;
+ desired_refresh_rate = drm_mode_vrefresh(adjusted_mode);
+ actual_pixel_rate = actual_refresh_rate * adjusted_mode->crtc_vtotal;
+ actual_pixel_rate = (actual_pixel_rate * adjusted_mode->crtc_htotal) / 1000;
+
+ if (is_cmrr_frac_required(crtc_state)) {
+ multiplier_m = 1001;
+ multiplier_n = 1000;
+ }
+
+ crtc_state->cmrr.cmrr_n = DIV_ROUND_UP(desired_refresh_rate *
+ adjusted_mode->crtc_htotal * multiplier_n, multiplier_m) * multiplier_n;
+ vtotal = DIV_ROUND_UP(actual_pixel_rate * multiplier_n, crtc_state->cmrr.cmrr_n);
+ adjusted_pixel_rate = actual_pixel_rate * multiplier_m;
+ crtc_state->cmrr.cmrr_m = do_div(adjusted_pixel_rate, crtc_state->cmrr.cmrr_n);
+
+ return vtotal;
+}
+
void
intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
struct drm_connector_state *conn_state)
@@ -149,6 +195,22 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
crtc_state->vrr.flipline = crtc_state->vrr.vmin + 1;
+ /*
+ * When panel is VRR capable and userspace has
+ * not enabled adaptive sync mode then Fixed Average
+ * Vtotal mode should be enabled.
+ */
+ if (crtc_state->uapi.vrr_enabled) {
+ crtc_state->vrr.enable = true;
+ crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
+ } else if (HAS_CMRR(i915)) {
+ crtc_state->cmrr.enable = true;
+ crtc_state->vrr.vmax = cmrr_get_vtotal(crtc_state);
+ crtc_state->vrr.vmin = crtc_state->vrr.vmax;
+ crtc_state->vrr.flipline = crtc_state->vrr.vmin;
+ crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
+ }
+
/*
* For XE_LPD+, we use guardband and pipeline override
* is deprecated.
@@ -161,11 +223,6 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
min(255, crtc_state->vrr.vmin - adjusted_mode->crtc_vblank_start -
crtc_state->framestart_delay - 1);
}
-
- if (crtc_state->uapi.vrr_enabled) {
- crtc_state->vrr.enable = true;
- crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
- }
}
static u32 trans_vrr_ctl(const struct intel_crtc_state *crtc_state)
@@ -292,7 +349,14 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
trans_vrr_ctl = intel_de_read(dev_priv, TRANS_VRR_CTL(cpu_transcoder));
- crtc_state->vrr.enable = trans_vrr_ctl & VRR_CTL_VRR_ENABLE;
+ if (HAS_CMRR(dev_priv)) {
+ crtc_state->cmrr.enable = (trans_vrr_ctl & VRR_CTL_CMRR_ENABLE) &&
+ (trans_vrr_ctl & VRR_CTL_VRR_ENABLE);
+ crtc_state->vrr.enable = trans_vrr_ctl & VRR_CTL_VRR_ENABLE &&
+ !(trans_vrr_ctl & VRR_CTL_CMRR_ENABLE);
+ } else {
+ crtc_state->vrr.enable = trans_vrr_ctl & VRR_CTL_VRR_ENABLE;
+ }
if (crtc_state->cmrr.enable) {
crtc_state->cmrr.cmrr_n =
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [Intel-gfx] ✗ Fi.CI.IGT: failure for Implement CMRR Support (rev3)
2023-11-15 15:49 [Intel-gfx] [RFC 0/3] Implement CMRR Support Mitul Golani
` (5 preceding siblings ...)
2023-11-16 1:07 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-11-17 5:31 ` Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-11-17 5:31 UTC (permalink / raw)
To: Mitul Golani; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100256 bytes --]
== Series Details ==
Series: Implement CMRR Support (rev3)
URL : https://patchwork.freedesktop.org/series/126443/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13881_full -> Patchwork_126443v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_126443v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_126443v3_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_126443v3_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@gem-pread:
- shard-rkl: [PASS][3] -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@i915_pm_rpm@gem-pread.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@i915_pm_rpm@gem-pread.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-tglu-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-tglu-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-11/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr@psr2_primary_render:
- shard-dg1: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_psr@psr2_primary_render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][9] +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
#### Warnings ####
* igt@gem_lmem_swapping@smem-oom:
- shard-rkl: [SKIP][10] ([i915#4613]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_lmem_swapping@smem-oom.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_lmem_swapping@smem-oom.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pathological}:
- shard-mtlp: [PASS][12] -> [TIMEOUT][13] +1 other test timeout
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-mtlp-6/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pathological.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-1/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pathological.html
* {igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pessimistic}:
- shard-rkl: [PASS][14] -> [TIMEOUT][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-6/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pessimistic.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pessimistic.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0}:
- shard-rkl: [PASS][16] -> [WARN][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* {igt@kms_dsc@dsc-fractional-bpp-with-bpc}:
- shard-mtlp: NOTRUN -> [SKIP][18]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* {igt@kms_psr@psr_no_drrs}:
- shard-rkl: NOTRUN -> [SKIP][19] +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_psr@psr_no_drrs.html
* {igt@kms_psr@psr_sprite_render}:
- shard-dg1: NOTRUN -> [SKIP][20]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_psr@psr_sprite_render.html
* {igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_invalid}:
- shard-glk: [PASS][21] -> [TIMEOUT][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk5/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_invalid.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk8/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_invalid.html
* {igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options}:
- shard-apl: NOTRUN -> [TIMEOUT][23]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-apl2/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options.html
- shard-dg2: NOTRUN -> [TIMEOUT][24]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options.html
* {igt@kms_selftest@drm_format@drm_test_format_block_width_tiled}:
- shard-snb: [PASS][25] -> [TIMEOUT][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-snb2/igt@kms_selftest@drm_format@drm_test_format_block_width_tiled.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-snb1/igt@kms_selftest@drm_format@drm_test_format_block_width_tiled.html
* {igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state}:
- shard-dg2: [PASS][27] -> [TIMEOUT][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-dg2-11/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-1/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html
- shard-tglu: [PASS][29] -> [TIMEOUT][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-tglu-10/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-tglu-9/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html
Known issues
------------
Here are the changes found in Patchwork_126443v3_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-glk: ([PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55]) -> ([PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [FAIL][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80]) ([i915#8293])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk9/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk9/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk9/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk8/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk8/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk8/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk8/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk6/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk6/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk6/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk6/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk5/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk5/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk5/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk5/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk4/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk4/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk4/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk3/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk3/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk3/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk2/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk2/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk2/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk2/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk9/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk9/boot.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk9/boot.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk9/boot.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk8/boot.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk8/boot.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk8/boot.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk8/boot.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk6/boot.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk6/boot.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk6/boot.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk5/boot.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk5/boot.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk4/boot.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk4/boot.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk4/boot.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk4/boot.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk3/boot.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk3/boot.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk3/boot.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk3/boot.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk2/boot.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk2/boot.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk2/boot.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk2/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#8411]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-rkl: [PASS][82] -> [SKIP][83] ([i915#8411])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8411])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@core_auth@getclient-simple:
- shard-rkl: [PASS][85] -> [SKIP][86] ([i915#2575]) +8 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@core_auth@getclient-simple.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@core_auth@getclient-simple.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#7701])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-1/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-rkl: [PASS][88] -> [FAIL][89] ([i915#4778])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@device_reset@unbind-reset-rebind.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#8414]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#8414]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#8414]) +19 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][93] -> [FAIL][94] ([i915#7742])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@virtual-busy:
- shard-rkl: [PASS][95] -> [SKIP][96] ([i915#5608]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@drm_fdinfo@virtual-busy.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@drm_fdinfo@virtual-busy.html
* igt@gem_basic@multigpu-create-close:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#7697])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#3936])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-uncompressed:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#7957])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_ccs@block-copy-uncompressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#9323])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#9323])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6335])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@file:
- shard-rkl: [PASS][103] -> [SKIP][104] ([fdo#109315]) +16 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_ctx_persistence@file.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#8555])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#280])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][107] ([i915#7975] / [i915#8213])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-mtlp: [PASS][108] -> [ABORT][109] ([i915#9262])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-mtlp-2/igt@gem_eio@unwedge-stress.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-4/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4771])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4812])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@hog:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4812]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#4525])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@many-4k-zero:
- shard-mtlp: NOTRUN -> [FAIL][114] ([i915#9606])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_capture@pi@rcs0:
- shard-dg1: [PASS][115] -> [FAIL][116] ([i915#4475])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-dg1-19/igt@gem_exec_capture@pi@rcs0.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-18/igt@gem_exec_capture@pi@rcs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: [PASS][117] -> [FAIL][118] ([i915#2842])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#3539])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][120] -> [FAIL][121] ([i915#2842]) +1 other test fail
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#3539] / [i915#4852]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_params@secure-non-master:
- shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#112283])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: [PASS][124] -> [SKIP][125] ([i915#3281]) +11 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3281]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#3281]) +10 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#3281]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#3281]) +8 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4537] / [i915#4812])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#4860]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#4860]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-apl: NOTRUN -> [SKIP][133] ([fdo#109271] / [i915#4613]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-apl2/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#4613] / [i915#7582])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#4613]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#4613]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#284])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#4077]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@coherency:
- shard-rkl: NOTRUN -> [SKIP][139] ([fdo#111656])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#4077]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#4077]) +12 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@write:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#4083]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@gem_mmap_wc@write.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#4083]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4083]) +7 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#3282]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-11/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3282]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#3282]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3282]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#4270]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4270]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#8428]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#768]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#8411]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4885])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@resubmit:
- shard-rkl: NOTRUN -> [SKIP][155] ([fdo#109315]) +15 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_spin_batch@resubmit.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][156] ([i915#5889])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#4079]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: [PASS][158] -> [SKIP][159] ([i915#3282]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#3297] / [i915#4880]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3297])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#3297] / [i915#4958])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3297]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#3297])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@vma-merge:
- shard-rkl: NOTRUN -> [FAIL][165] ([i915#3318])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@basic-offset:
- shard-dg1: NOTRUN -> [SKIP][166] ([fdo#109289])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][167] ([fdo#109289]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@gen7_exec_parse@bitmasks.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][168] ([fdo#109289]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#2856]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-1/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-secure:
- shard-rkl: [PASS][170] -> [SKIP][171] ([i915#2527]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@gen9_exec_parse@bb-secure.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-4/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#2527])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#2856]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#2527]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#7091])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#6590]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-rkl: NOTRUN -> [SKIP][177] ([fdo#109293] / [fdo#109506])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][178] ([i915#8346])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@i915_pm_rps@reset.html
* igt@i915_power@sanity:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#7984])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@i915_power@sanity.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: NOTRUN -> [SKIP][180] ([fdo#109303])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_selftest@mock@memory_region:
- shard-apl: NOTRUN -> [DMESG-WARN][181] ([i915#9311])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-apl2/igt@i915_selftest@mock@memory_region.html
- shard-dg2: NOTRUN -> [DMESG-WARN][182] ([i915#9311])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@forcewake:
- shard-tglu: [PASS][183] -> [INCOMPLETE][184] ([i915#8797])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-tglu-9/igt@i915_suspend@forcewake.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-tglu-4/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#4212])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-apl: NOTRUN -> [SKIP][186] ([fdo#109271] / [i915#1769])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-apl2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#1769] / [i915#3555])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-transition:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#2575]) +7 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_atomic_transition@plane-all-transition.html
* igt@kms_atomic_transition@plane-use-after-nonblocking-unbind:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#1845] / [i915#4098]) +19 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#5286]) +3 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][191] ([fdo#111614])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][192] -> [FAIL][193] ([i915#5138])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#4538] / [i915#5286])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][195] ([fdo#111614]) +7 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][196] ([fdo#111614] / [i915#3638])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][197] -> [FAIL][198] ([i915#3743])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#5190]) +14 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#4538])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#4538] / [i915#5190]) +7 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111615])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][203] ([fdo#111615]) +4 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][204] ([fdo#110723]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_joiner@2x-modeset:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#2705])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_big_joiner@2x-modeset.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#2705])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#4087]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#7828]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2: NOTRUN -> [SKIP][209] ([fdo#111827])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][210] ([fdo#111827]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#7828]) +10 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#7828]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#7828]) +4 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color@pipe-a-hdmi-a-2-gamma:
- shard-rkl: NOTRUN -> [FAIL][214] ([i915#6892]) +1 other test fail
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-4/igt@kms_color@deep-color@pipe-a-hdmi-a-2-gamma.html
* igt@kms_color@legacy-gamma@pipe-a:
- shard-rkl: [PASS][215] -> [SKIP][216] ([i915#4098]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_color@legacy-gamma@pipe-a.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_color@legacy-gamma@pipe-a.html
* igt@kms_content_protection@atomic:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#7118])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#3299]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#7118]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-1:
- shard-apl: NOTRUN -> [TIMEOUT][220] ([i915#7173])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-apl2/igt@kms_content_protection@srm@pipe-a-dp-1.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][221] ([i915#7173])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#6944])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8814])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3359])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3359])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3359]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][227] ([fdo#111767] / [fdo#111825])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3546]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#4103])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- shard-rkl: [PASS][230] -> [SKIP][231] ([i915#1845] / [i915#4098]) +22 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: NOTRUN -> [SKIP][232] ([fdo#111825]) +11 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-apl: NOTRUN -> [SKIP][233] ([fdo#109271]) +122 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-apl2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-dg1: NOTRUN -> [SKIP][234] ([fdo#111825]) +9 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][235] ([fdo#109274] / [i915#5354]) +3 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][236] ([fdo#109274] / [fdo#111767] / [i915#5354])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#4213])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#9226] / [i915#9261]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#9227])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#3555]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#4098]) +13 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8812])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#3840] / [i915#9159])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-6/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#3840])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#3840]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#3469])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][247] ([fdo#109274]) +7 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3637]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-snb: NOTRUN -> [SKIP][249] ([fdo#109271]) +12 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-snb6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#3637] / [i915#4098]) +6 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#8810])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#3555]) +11 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8810])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#2672]) +4 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#2672]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-dg2: NOTRUN -> [SKIP][257] ([fdo#109285])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#5354]) +29 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#8708])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-rkl: [PASS][260] -> [SKIP][261] ([i915#1849] / [i915#4098]) +11 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#5460])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#8708]) +17 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#3458]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#8708]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][266] ([fdo#111825] / [i915#1825]) +23 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#1825]) +18 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#3023]) +14 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#3458]) +18 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8228]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_hdr@static-toggle.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#9457]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_invalid_mode@int-max-clock:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#4098]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_invalid_mode@int-max-clock.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#1839])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#6301])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#6301])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- shard-apl: [PASS][277] -> [INCOMPLETE][278] ([i915#180] / [i915#9392])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
* igt@kms_plane@plane-panning-top-left:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#4098] / [i915#8825]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][280] ([i915#8292])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#5176] / [i915#9423]) +3 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#4098] / [i915#6953] / [i915#8152]) +2 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#8152])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#5235]) +11 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#5235]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#5235]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#6953] / [i915#8152])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#5235]) +11 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-18/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#5235]) +23 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#6524])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#6524] / [i915#6805])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@kms_prime@d3hot.html
* igt@kms_properties@plane-properties-legacy:
- shard-rkl: [PASS][293] -> [SKIP][294] ([i915#1849])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_properties@plane-properties-legacy.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_properties@plane-properties-legacy.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][295] ([fdo#111068])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#4348])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg1: NOTRUN -> [SKIP][297] ([fdo#111068])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#9681]) +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@kms_psr@psr2_dpms.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#4235]) +2 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#4235])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#5289])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-rkl: [PASS][302] -> [INCOMPLETE][303] ([i915#8875] / [i915#9569])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#4235] / [i915#5190]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][305] -> [FAIL][306] ([IGT#2])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-dg2-11/igt@kms_sysfs_edid_timing.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-1/igt@kms_sysfs_edid_timing.html
* igt@kms_tv_load_detect@load-detect:
- shard-mtlp: NOTRUN -> [SKIP][307] ([fdo#109309])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
- shard-snb: [PASS][308] -> [FAIL][309] ([i915#9196])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [PASS][310] -> [FAIL][311] ([i915#9196])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-mtlp: [PASS][312] -> [FAIL][313] ([i915#9196])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vrr@negative-basic:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#3555]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#2437])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@kms_writeback@writeback-check-output.html
* igt@perf@gen12-group-exclusive-stream-ctx-handle:
- shard-rkl: [PASS][316] -> [SKIP][317] ([fdo#109289])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@perf@gen12-group-exclusive-stream-ctx-handle.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@perf@gen12-group-exclusive-stream-ctx-handle.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][318] ([fdo#109289]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#7387])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: NOTRUN -> [FAIL][320] ([i915#4349])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][321] ([i915#5793])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#8516])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#3708])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#3291] / [i915#3708])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-mtlp: NOTRUN -> [SKIP][325] ([i915#3708])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-8/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#3708] / [i915#4077])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][327] ([fdo#109295] / [i915#3708])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#3708])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@prime_vgem@fence-write-hang.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#2575]) +13 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-6/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_submit_cl@bad-in-sync:
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#2575]) +3 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@v3d/v3d_submit_cl@bad-in-sync.html
* igt@v3d/v3d_submit_cl@valid-submission:
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#2575]) +7 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@v3d/v3d_submit_cl@valid-submission.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#7711]) +2 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#7711]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-16/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_wait_bo@unused-bo-1ns:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#7711]) +8 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-2/igt@vc4/vc4_wait_bo@unused-bo-1ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#7711]) +7 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [FAIL][336] ([i915#7742]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
* {igt@drm_mm@drm_mm@drm_test_mm_align32}:
- shard-tglu: [TIMEOUT][338] -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-tglu-2/igt@drm_mm@drm_mm@drm_test_mm_align32.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-tglu-7/igt@drm_mm@drm_mm@drm_test_mm_align32.html
* igt@fbdev@eof:
- shard-rkl: [SKIP][340] ([i915#2582]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@fbdev@eof.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@fbdev@eof.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-mtlp: [ABORT][342] ([i915#9414]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-mtlp-7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@engines-hang@bcs0:
- shard-rkl: [SKIP][344] ([i915#6252]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@gem_ctx_persistence@engines-hang@bcs0.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-1/igt@gem_ctx_persistence@engines-hang@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][346] ([i915#2842]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-rkl: [SKIP][348] ([fdo#109313]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][350] ([i915#3281]) -> [PASS][351] +6 other tests pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [INCOMPLETE][352] ([i915#8797] / [i915#9275]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-11/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: [SKIP][354] ([i915#3282]) -> [PASS][355] +4 other tests pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: [SKIP][356] ([i915#2527]) -> [PASS][357] +4 other tests pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gen9_exec_parse@secure-batches.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0}:
- shard-dg1: [FAIL][358] -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][360] ([i915#3743]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][362] ([i915#1845] / [i915#4098]) -> [PASS][363] +18 other tests pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_color@degamma@pipe-a:
- shard-rkl: [SKIP][364] ([i915#4098]) -> [PASS][365] +9 other tests pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_color@degamma@pipe-a.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-1/igt@kms_color@degamma@pipe-a.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: [FAIL][366] ([i915#6880]) -> [PASS][367] +2 other tests pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][368] ([i915#1849] / [i915#4098]) -> [PASS][369] +14 other tests pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* {igt@kms_pm_dc@dc5-dpms-negative}:
- shard-rkl: [SKIP][370] ([i915#9293]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_pm_dc@dc5-dpms-negative.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_pm_dc@dc5-dpms-negative.html
* {igt@kms_pm_rpm@dpms-non-lpsp}:
- shard-rkl: [SKIP][372] ([i915#9519]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-dg1: [SKIP][374] ([i915#9519]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-dg1-19/igt@kms_pm_rpm@dpms-non-lpsp.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-18/igt@kms_pm_rpm@dpms-non-lpsp.html
* {igt@kms_pm_rpm@i2c}:
- shard-rkl: [SKIP][376] ([fdo#109308]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_pm_rpm@i2c.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-4/igt@kms_pm_rpm@i2c.html
* igt@kms_properties@plane-properties-atomic:
- shard-rkl: [SKIP][378] ([i915#1849]) -> [PASS][379]
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_properties@plane-properties-atomic.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_properties@plane-properties-atomic.html
* {igt@kms_selftest@drm_dp_mst_helper@drm_test_dp_mst_sideband_msg_req_decode}:
- shard-dg2: [TIMEOUT][380] -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-dg2-6/igt@kms_selftest@drm_dp_mst_helper@drm_test_dp_mst_sideband_msg_req_decode.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg2-11/igt@kms_selftest@drm_dp_mst_helper@drm_test_dp_mst_sideband_msg_req_decode.html
* {igt@kms_selftest@drm_format@drm_test_format_block_width_tiled}:
- shard-mtlp: [TIMEOUT][382] -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-mtlp-2/igt@kms_selftest@drm_format@drm_test_format_block_width_tiled.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-4/igt@kms_selftest@drm_format@drm_test_format_block_width_tiled.html
* {igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_16bpp}:
- shard-rkl: [TIMEOUT][384] -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_16bpp.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_selftest@drm_format@drm_test_format_min_pitch_one_plane_16bpp.html
* {igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state}:
- shard-snb: [TIMEOUT][386] -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-snb7/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-snb2/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][388] ([i915#9196]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@prime_vgem@basic-fence-flip:
- shard-rkl: [SKIP][390] ([fdo#109295] / [i915#3708] / [i915#4098]) -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@prime_vgem@basic-fence-flip.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- shard-rkl: [SKIP][392] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@prime_vgem@basic-write.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@prime_vgem@basic-write.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [INCOMPLETE][394] ([i915#9408]) -> [ABORT][395] ([i915#9618])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: [SKIP][396] ([i915#9323]) -> [SKIP][397] ([i915#7957])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_ccs@block-multicopy-compressed.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][398] ([i915#3555]) -> [SKIP][399] ([fdo#109315])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [SKIP][400] ([i915#9591]) -> [FAIL][401] ([i915#2842])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][402] ([i915#2842]) -> [FAIL][403] ([i915#2876])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-rkl: [SKIP][404] ([i915#3281]) -> [SKIP][405] ([fdo#109315])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][406] ([i915#3282]) -> [SKIP][407] ([fdo#109315]) +2 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: [SKIP][408] ([i915#3282]) -> [WARN][409] ([i915#2658])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@gem_pwrite@basic-exhaustion.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [INCOMPLETE][410] -> [INCOMPLETE][411] ([i915#4528])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-snb6/igt@i915_module_load@reload-no-display.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-snb2/igt@i915_module_load@reload-no-display.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][412] ([i915#1845] / [i915#4098]) -> [SKIP][413] ([i915#1769] / [i915#3555])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: [SKIP][414] ([i915#5286]) -> [SKIP][415] ([fdo#109315])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][416] ([i915#1845] / [i915#4098]) -> [SKIP][417] ([i915#5286]) +4 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][418] ([i915#5286]) -> [SKIP][419] ([i915#1845] / [i915#4098]) +4 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][420] ([fdo#111614] / [i915#3638]) -> [SKIP][421] ([i915#1845] / [i915#4098]) +4 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][422] ([i915#1845] / [i915#4098]) -> [SKIP][423] ([fdo#111614] / [i915#3638]) +4 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][424] ([i915#1845] / [i915#4098]) -> [SKIP][425] ([fdo#110723]) +4 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][426] ([fdo#110723]) -> [SKIP][427] ([i915#1845] / [i915#4098]) +4 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: [SKIP][428] ([fdo#110723]) -> [SKIP][429] ([fdo#109315]) +1 other test skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: [SKIP][430] ([i915#7828]) -> [SKIP][431] ([i915#2575]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_content_protection@atomic:
- shard-rkl: [SKIP][432] ([i915#7118]) -> [SKIP][433] ([i915#1845] / [i915#4098])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_content_protection@atomic.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][434] ([i915#1845] / [i915#4098]) -> [SKIP][435] ([i915#7118])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_content_protection@type1.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][436] ([fdo#109279] / [i915#3359]) -> [SKIP][437] ([i915#1845] / [i915#4098])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][438] ([i915#1845] / [i915#4098]) -> [SKIP][439] ([i915#3359]) +1 other test skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: [SKIP][440] ([i915#3359]) -> [SKIP][441] ([i915#2575])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-rkl: [SKIP][442] ([i915#3555]) -> [SKIP][443] ([i915#2575])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_cursor_crc@cursor-random-max-size.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][444] ([i915#1845] / [i915#4098]) -> [SKIP][445] ([i915#3555]) +6 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-rkl: [SKIP][446] ([fdo#111825]) -> [SKIP][447] ([i915#2575])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][448] ([fdo#111825]) -> [SKIP][449] ([i915#1845] / [i915#4098]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][450] ([i915#4103]) -> [SKIP][451] ([i915#1845] / [i915#4098])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-rkl: [SKIP][452] ([i915#1845] / [i915#4098]) -> [SKIP][453] ([fdo#111825]) +2 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-rkl: [SKIP][454] ([fdo#111767] / [fdo#111825]) -> [SKIP][455] ([i915#1845] / [i915#4098]) +1 other test skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][456] ([i915#1845] / [i915#4098]) -> [SKIP][457] ([i915#4103])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][458] -> [SKIP][459] ([i915#4098])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: [SKIP][460] ([i915#3555] / [i915#3840]) -> [SKIP][461] ([i915#1845] / [i915#4098])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][462] ([i915#4098]) -> [SKIP][463] ([i915#3555] / [i915#3840])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: [SKIP][464] ([fdo#111767] / [fdo#111825]) -> [SKIP][465] ([i915#2575])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][466] ([fdo#109285] / [i915#4098]) -> [SKIP][467] ([fdo#109285])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][468] ([fdo#111825]) -> [SKIP][469] ([i915#1849] / [i915#4098])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13881/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rk
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_126443v3/index.html
[-- Attachment #2: Type: text/html, Size: 111013 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread