* [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst
@ 2025-02-17 6:42 Kunal Joshi
2025-02-17 6:42 ` [PATCH i-g-t 1/4] tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform Kunal Joshi
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Kunal Joshi @ 2025-02-17 6:42 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Add new test kms_dp_link_training to validate both
UHBR and non-UHBR link rates over SST and MST configurations.
Add four new subtests (uhbr-sst, uhbr-mst, non-uhbr-sst, non-uhbr-mst)
to check if the link rates match the expected UHBR or NON-UHBR capability
and whether the outputs are MST or SST.
Kunal Joshi (4):
tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform
tests/intel/kms_joiner_helper: add helper for joiner-related functions
lib/igt_kms: add function to set link params
tests/intel/kms_dp_link_training: add tests for UHBR/NON-UHBR over
SST/MST
lib/igt_kms.c | 33 +++
lib/igt_kms.h | 2 +
tests/intel/kms_dp_link_training.c | 378 +++++++++++++++++++++++++++++
tests/intel/kms_joiner.c | 15 +-
tests/intel/kms_joiner_helper.c | 181 ++++++++++++++
tests/intel/kms_joiner_helper.h | 20 ++
tests/meson.build | 5 +
7 files changed, 621 insertions(+), 13 deletions(-)
create mode 100644 tests/intel/kms_dp_link_training.c
create mode 100644 tests/intel/kms_joiner_helper.c
create mode 100644 tests/intel/kms_joiner_helper.h
--
2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t 1/4] tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform
2025-02-17 6:42 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
@ 2025-02-17 6:42 ` Kunal Joshi
2025-02-18 7:51 ` B, Jeevan
2025-02-17 6:42 ` [PATCH i-g-t 2/4] tests/intel/kms_joiner_helper: add helper for joiner-related functions Kunal Joshi
` (6 subsequent siblings)
7 siblings, 1 reply; 11+ messages in thread
From: Kunal Joshi @ 2025-02-17 6:42 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
refactor set_all_master_pipes_for_platform for readable code
movement.
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/intel/kms_joiner.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 062a0e49d..080e8ff52 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -106,13 +106,13 @@ typedef struct {
static int max_dotclock;
-static void set_all_master_pipes_for_platform(data_t *data)
+static void set_all_master_pipes_for_platform(igt_display_t *display, uint32_t *master_pipes)
{
enum pipe pipe;
for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) {
- if (data->display.pipes[pipe].enabled && data->display.pipes[pipe + 1].enabled) {
- data->master_pipes |= BIT(pipe);
+ if (display->pipes[pipe].enabled && display->pipes[pipe + 1].enabled) {
+ *master_pipes |= BIT(pipe);
igt_info("Found master pipe %s\n", kmstest_pipe_name(pipe));
}
}
@@ -561,7 +561,7 @@ igt_main
data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
kmstest_set_vt_graphics_mode();
igt_display_require(&data.display, data.drm_fd);
- set_all_master_pipes_for_platform(&data);
+ set_all_master_pipes_for_platform(&data.display, &data.master_pipes);
igt_require(data.display.is_atomic);
max_dotclock = igt_get_max_dotclock(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t 2/4] tests/intel/kms_joiner_helper: add helper for joiner-related functions
2025-02-17 6:42 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
2025-02-17 6:42 ` [PATCH i-g-t 1/4] tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform Kunal Joshi
@ 2025-02-17 6:42 ` Kunal Joshi
2025-02-17 6:42 ` [PATCH i-g-t 3/4] lib/igt_kms: add function to set link params Kunal Joshi
` (5 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Kunal Joshi @ 2025-02-17 6:42 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Jeevan B
Add helper to handle Big Joiner and Ultra Joiner
logic in a centralized manner. Add utility functions
to set and manage master pipes, as well as to assign
consecutive pipes for multi-pipe configurations.
v2: fix commit and subject (Swati)
split patch (Swati)
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_joiner.c | 15 +--
tests/intel/kms_joiner_helper.c | 181 ++++++++++++++++++++++++++++++++
tests/intel/kms_joiner_helper.h | 20 ++++
tests/meson.build | 1 +
4 files changed, 204 insertions(+), 13 deletions(-)
create mode 100644 tests/intel/kms_joiner_helper.c
create mode 100644 tests/intel/kms_joiner_helper.h
diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 080e8ff52..771c9b8b3 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -37,6 +37,7 @@
#include "igt.h"
#include "xe/xe_query.h"
#include "kms_dsc_helper.c"
+#include "kms_joiner_helper.h"
/**
* SUBTEST: invalid-modeset-big-joiner
@@ -106,18 +107,6 @@ typedef struct {
static int max_dotclock;
-static void set_all_master_pipes_for_platform(igt_display_t *display, uint32_t *master_pipes)
-{
- enum pipe pipe;
-
- for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) {
- if (display->pipes[pipe].enabled && display->pipes[pipe + 1].enabled) {
- *master_pipes |= BIT(pipe);
- igt_info("Found master pipe %s\n", kmstest_pipe_name(pipe));
- }
- }
-}
-
static void enable_force_joiner_on_all_non_big_joiner_outputs(data_t *data)
{
bool status;
@@ -561,7 +550,7 @@ igt_main
data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
kmstest_set_vt_graphics_mode();
igt_display_require(&data.display, data.drm_fd);
- set_all_master_pipes_for_platform(&data.display, &data.master_pipes);
+ igt_set_all_master_pipes_for_platform(&data.display, &data.master_pipes);
igt_require(data.display.is_atomic);
max_dotclock = igt_get_max_dotclock(data.drm_fd);
diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c
new file mode 100644
index 000000000..17a22d34a
--- /dev/null
+++ b/tests/intel/kms_joiner_helper.c
@@ -0,0 +1,181 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include "kms_joiner_helper.h"
+#include "igt.h"
+#include "igt_kms.h"
+#include "intel_chipset.h"
+
+/*
+ * Detect if the output needs 1, 2, or 4 pipes (non-joiner, big joiner, ultra).
+ */
+static int get_required_pipes(int drm_fd, igt_output_t *output)
+{
+ bool is_big = false, is_ultra = false;
+ int max_dotclock;
+ drmModeModeInfo mode;
+
+ if (!is_intel_device(drm_fd))
+ return -1;
+
+ max_dotclock = igt_get_max_dotclock(drm_fd);
+
+ is_ultra = ultrajoiner_mode_found(drm_fd,
+ output->config.connector,
+ max_dotclock,
+ &mode);
+ is_big = bigjoiner_mode_found(drm_fd,
+ output->config.connector,
+ max_dotclock,
+ &mode);
+
+ if (is_ultra)
+ return 4;
+ if (is_big)
+ return 2;
+
+ return 1;
+}
+
+/*
+ * Internal helper to find a block of consecutive free pipes
+ * in available_pipes_mask. If count > 1, the first pipe must also
+ * be in master_pipes_mask.
+ *
+ * Returns the starting pipe index or -1 if not found.
+ */
+static int find_consecutive_pipes(int n_pipes,
+ uint32_t available_pipes_mask,
+ uint32_t master_pipes_mask,
+ int count)
+{
+ int i = 0, pipe_idx = 0;
+ bool can_use;
+
+ for (int start = 0; start < n_pipes; start++) {
+ if (((start + count) - 1) >= n_pipes)
+ break;
+
+ if ((count > 1) && (!(BIT(start) & master_pipes_mask)))
+ continue;
+
+ can_use = true;
+ for (i = 0; i < count; i++) {
+ pipe_idx = start + i;
+ if (!(BIT(pipe_idx) & available_pipes_mask)) {
+ can_use = false;
+ break;
+ }
+ }
+ if (can_use)
+ return start;
+ }
+ return -1;
+}
+
+static enum pipe get_next_master_pipe(uint32_t pipe_mask)
+{
+ int i;
+
+ if (!pipe_mask)
+ return PIPE_NONE;
+
+ i = ffs(pipe_mask) - 1;
+
+ if (i < 0)
+ return PIPE_NONE;
+
+ return i;
+}
+
+/**
+ * igt_set_all_master_pipes_for_platform:
+ * @master_pipes: Pointer to the variable to store the master pipes bitmask.
+ * @display: The display structure containing pipe information.
+ *
+ * This function sets the master pipes for the platform by checking if consecutive
+ * pipes are enabled. If both pipe and the next pipe are enabled, the pipe is
+ * considered a master pipe.
+ */
+void igt_set_all_master_pipes_for_platform(igt_display_t *display, uint32_t *master_pipes)
+{
+ enum pipe pipe;
+
+ *master_pipes = 0;
+ for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) {
+ if (display->pipes[pipe].enabled && display->pipes[pipe + 1].enabled) {
+ *master_pipes |= BIT(pipe);
+ igt_info("Found master pipe %s\n", kmstest_pipe_name(pipe));
+ }
+ }
+}
+
+/*
+ * @drm_fd: DRM file descriptor
+ * @outputs: array of pointers to igt_output_t
+ * @num_outputs: how many outputs in the array
+ * @n_pipes: total number of pipes available
+ * @used_pipes_mask: pointer to a bitmask (in/out) of already-used pipes
+ * @master_pipes_mask: bitmask of valid "master" pipes
+ * @valid_pipes_mask: bitmask of valid (non-fused) pipes
+ *
+ * Assign pipes to outputs based on the number of required pipes.
+ * This function will assign 1, 2, or 4 consecutive pipes to each output.
+ * It will also mark the used pipes in the bitmask.
+ *
+ * Returns: true if all outputs can be assigned successfully; false otherwise.
+ */
+bool igt_assign_pipes_for_outputs(int drm_fd,
+ igt_output_t **outputs,
+ int num_outputs,
+ int n_pipes,
+ uint32_t *used_pipes_mask,
+ uint32_t master_pipes_mask,
+ uint32_t valid_pipes_mask)
+{
+ int i = 0, idx = 0, needed = 0, start = 0;
+ uint32_t available_pipes_mask = 0;
+ enum pipe mp = PIPE_NONE;
+ igt_output_t *out;
+
+ for (idx = 0; idx < num_outputs; idx++) {
+ out = outputs[idx];
+ needed = get_required_pipes(drm_fd, out);
+ if (needed < 0)
+ return false;
+
+ available_pipes_mask = (~(*used_pipes_mask)) & valid_pipes_mask;
+ start = find_consecutive_pipes(n_pipes, available_pipes_mask,
+ master_pipes_mask, needed);
+
+ if (start < 0) {
+ igt_debug("Cannot allocate %d consecutive pipes for output %s\n",
+ needed, out->name);
+ return false;
+ }
+
+ igt_info("Assigning %d pipes [start=%s..%s] to output %s\n",
+ needed, kmstest_pipe_name(start),
+ kmstest_pipe_name(start + needed - 1), out->name);
+
+ if (needed > 1) {
+ mp = get_next_master_pipe(BIT(start));
+
+ if (mp == PIPE_NONE) {
+ igt_debug("Failed to confirm master pipe for %s\n",
+ out->name);
+ return false;
+ }
+ igt_output_set_pipe(out, start);
+ igt_debug("Using pipe %s as master.\n",
+ kmstest_pipe_name(start));
+ } else
+ igt_output_set_pipe(out, start);
+
+ for (i = 0; i < needed; i++)
+ *used_pipes_mask |= BIT(start + i);
+ }
+ return true;
+}
diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h
new file mode 100644
index 000000000..8a6f8e5ad
--- /dev/null
+++ b/tests/intel/kms_joiner_helper.h
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef KMS_JOINER_HELPER_H
+#define KMS_JOINER_HELPER_H
+
+#include "igt_kms.h"
+
+void igt_set_all_master_pipes_for_platform(igt_display_t *display,
+ uint32_t *master_pipes);
+bool igt_assign_pipes_for_outputs(int drm_fd,
+ igt_output_t **outputs,
+ int num_outputs,
+ int n_pipes,
+ uint32_t *used_pipes_mask,
+ uint32_t master_pipes_mask,
+ uint32_t valid_pipes_mask);
+#endif
diff --git a/tests/meson.build b/tests/meson.build
index 1a731fc73..dea2cb02b 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -370,6 +370,7 @@ extra_sources = {
join_paths ('intel', 'kms_mst_helper.c'),
join_paths ('intel', 'kms_dsc_helper.c') ],
'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
+ 'kms_joiner': [ join_paths ('intel', 'kms_joiner_helper.c') ],
'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
}
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t 3/4] lib/igt_kms: add function to set link params
2025-02-17 6:42 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
2025-02-17 6:42 ` [PATCH i-g-t 1/4] tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform Kunal Joshi
2025-02-17 6:42 ` [PATCH i-g-t 2/4] tests/intel/kms_joiner_helper: add helper for joiner-related functions Kunal Joshi
@ 2025-02-17 6:42 ` Kunal Joshi
2025-02-17 6:42 ` [PATCH i-g-t 4/4] tests/intel/kms_dp_link_training: add tests for UHBR/NON-UHBR over SST/MST Kunal Joshi
` (4 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Kunal Joshi @ 2025-02-17 6:42 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Arun R Murthy
add function to force link rate and lane count
for given output, install exit handle to set auto
at exit
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com>
---
lib/igt_kms.c | 33 +++++++++++++++++++++++++++++++++
lib/igt_kms.h | 2 ++
2 files changed, 35 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 0ba1afb08..bc46487c5 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -7269,6 +7269,39 @@ void igt_reset_link_params(int drm_fd, igt_output_t *output)
drmModeFreeConnector(temp);
}
+/**
+ * igt_set_link_params:
+ * @drm_fd: A drm file descriptor
+ * @output: Target output
+ *
+ * set link rate and lane count to given value, also installs exit handler
+ * to set link rate and lane count to auto on exit
+ */
+void igt_set_link_params(int drm_fd, igt_output_t *output,
+ char *link_rate, char *lane_count)
+{
+ bool valid;
+ drmModeConnector *temp;
+
+ valid = true;
+ valid = valid && connector_attr_set_debugfs(drm_fd, output->config.connector,
+ "i915_dp_force_link_rate",
+ link_rate, "auto", true);
+ valid = valid && connector_attr_set_debugfs(drm_fd, output->config.connector,
+ "i915_dp_force_lane_count",
+ lane_count, "auto", true);
+ igt_assert_f(valid, "Unable to set attr or install exit handler\n");
+ dump_connector_attrs();
+ igt_install_exit_handler(reset_connectors_at_exit);
+
+ /*
+ * To allow callers to always use GetConnectorCurrent we need to force a
+ * redetection here.
+ */
+ temp = drmModeGetConnector(drm_fd, output->config.connector->connector_id);
+ drmModeFreeConnector(temp);
+}
+
/**
* igt_backlight_read:
* @result: Pointer to store the result
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 7227f0b0e..31b9820cb 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1271,6 +1271,8 @@ bool igt_has_force_link_training_failure_debugfs(int drmfd, igt_output_t *output
int igt_get_dp_pending_lt_failures(int drm_fd, igt_output_t *output);
int igt_get_dp_pending_retrain(int drm_fd, igt_output_t *output);
void igt_reset_link_params(int drm_fd, igt_output_t *output);
+void igt_set_link_params(int drm_fd, igt_output_t *output,
+ char *link_rate, char *lane_count);
int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context);
int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context);
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t 4/4] tests/intel/kms_dp_link_training: add tests for UHBR/NON-UHBR over SST/MST
2025-02-17 6:42 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
` (2 preceding siblings ...)
2025-02-17 6:42 ` [PATCH i-g-t 3/4] lib/igt_kms: add function to set link params Kunal Joshi
@ 2025-02-17 6:42 ` Kunal Joshi
2025-02-17 10:08 ` ✓ i915.CI.BAT: success for add test to validate uhbr/non-uhbr over sst/mst (rev4) Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Kunal Joshi @ 2025-02-17 6:42 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Arun R Murthy
Add new test kms_dp_linktraining
to validate both UHBR and non-UHBR link rates over SST
and MST configurations.
Add four new subtests (uhbr-sst, uhbr-mst, non-uhbr-sst, non-uhbr-mst)
to check if the link rates match the expected UHBR or NON-UHBR capability
and whether the outputs are MST or SST.
v2: add definition for UHBR_LINK_RATE
v3: add failure criteria (Jani Nikula)
v4: fix indentation (Swati)
fix typo in subject (Swati)
fix docs (Swati)
add display version check (Swati)
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com>
---
tests/intel/kms_dp_link_training.c | 378 +++++++++++++++++++++++++++++
tests/meson.build | 4 +
2 files changed, 382 insertions(+)
create mode 100644 tests/intel/kms_dp_link_training.c
diff --git a/tests/intel/kms_dp_link_training.c b/tests/intel/kms_dp_link_training.c
new file mode 100644
index 000000000..7f3d3b332
--- /dev/null
+++ b/tests/intel/kms_dp_link_training.c
@@ -0,0 +1,378 @@
+// SPDX-License-Identifier: MIT
+/**
+ * TEST: kms dp link training
+ * Category: Display
+ * Description: Test to validate link training on SST/MST with UHBR/NON_UHBR rates
+ * Driver requirement: i915, xe
+ * Functionality: link_training
+ * Mega feature: General Display Features
+ * Test category: functionality test
+ */
+
+/**
+ * SUBTEST: uhbr-sst
+ * Description: Test we can drive UHBR rates over SST.
+ * Functionality: link_training, uhbr, sst
+ * Test category: functionality test
+ *
+ * SUBTEST: uhbr-mst
+ * Description: Test we can drive UHBR rates over MST.
+ * Functionality: link_training, uhbr, mst
+ * Test category: functionality test
+ *
+ * SUBTEST: non-uhbr-sst
+ * Description: Test we can drive non-UHBR rates over SST.
+ * Functionality: link_training, sst
+ * Test category: functionality test
+ *
+ * SUBTEST: non-uhbr-mst
+ * Description: Test we can drive non-UHBR rates over MST.
+ * Functionality: feature_discovery, mst
+ * Test category: functionality test
+ */
+
+#include "igt.h"
+#include "igt_kms.h"
+#include "intel/kms_joiner_helper.h"
+#include "intel/kms_mst_helper.h"
+
+/*
+ * DP Spec defines 10, 13.5, and 20 Gbps as UHBR.
+ * Anything below that is considered NON-UHBR.
+ */
+#define UHBR_LINK_RATE 1000000
+#define RETRAIN_COUNT 1
+
+typedef struct {
+ int drm_fd;
+ uint32_t devid;
+ igt_display_t display;
+ igt_output_t *output;
+} data_t;
+
+/*
+ * check_condition_with_timeout - Polls check_fn until it returns 0
+ * or until 'timeout' seconds elapse.
+ */
+static int check_condition_with_timeout(int drm_fd, igt_output_t *output,
+ int (*check_fn)(int, igt_output_t *),
+ double interval, double timeout)
+{
+ struct timespec start_time, current_time;
+ double elapsed_time;
+ int ret;
+
+ clock_gettime(CLOCK_MONOTONIC, &start_time);
+
+ while (true) {
+ ret = check_fn(drm_fd, output);
+ if (ret == 0)
+ return 0;
+
+ clock_gettime(CLOCK_MONOTONIC, ¤t_time);
+ elapsed_time = (current_time.tv_sec - start_time.tv_sec) +
+ (current_time.tv_nsec - start_time.tv_nsec) / 1e9;
+ if (elapsed_time >= timeout)
+ return -1;
+
+ usleep((useconds_t)(interval * 1e6));
+ }
+}
+
+/*
+ * assert_link_status_good - Verifies link-status == GOOD
+ * for either a single SST output or all MST outputs in the topology.
+ */
+static void assert_link_status_good(data_t *data, bool mst)
+{
+ igt_output_t *outputs[IGT_MAX_PIPES];
+ uint32_t link_status_prop_id;
+ uint64_t link_status_value;
+ drmModePropertyPtr link_status_prop;
+ int count = 0;
+ int i;
+
+ if (mst) {
+ igt_assert_f(igt_find_all_mst_output_in_topology(data->drm_fd,
+ &data->display, data->output,
+ outputs, &count),
+ "Unable to find MST outputs\n");
+
+ for (i = 0; i < count; i++) {
+ kmstest_get_property(data->drm_fd,
+ outputs[i]->config.connector->connector_id,
+ DRM_MODE_OBJECT_CONNECTOR,
+ "link-status",
+ &link_status_prop_id,
+ &link_status_value,
+ &link_status_prop);
+
+ igt_assert_eq(link_status_value,
+ DRM_MODE_LINK_STATUS_GOOD);
+ }
+ } else {
+ kmstest_get_property(data->drm_fd,
+ data->output->config.connector->connector_id,
+ DRM_MODE_OBJECT_CONNECTOR,
+ "link-status",
+ &link_status_prop_id,
+ &link_status_value,
+ &link_status_prop);
+
+ igt_assert_eq(link_status_value, DRM_MODE_LINK_STATUS_GOOD);
+ }
+}
+
+/*
+ * setup_planes_fbs - Create solid-color FBs and attach them to the primary plane.
+ */
+static void setup_planes_fbs(data_t *data, igt_output_t *outs[],
+ int count, drmModeModeInfo *modes[],
+ struct igt_fb fbs[], struct igt_plane *planes[])
+{
+ int i;
+
+ for (i = 0; i < count; i++) {
+ modes[i] = igt_output_get_mode(outs[i]);
+ igt_info("Mode %dx%d@%d on output %s\n",
+ modes[i]->hdisplay, modes[i]->vdisplay,
+ modes[i]->vrefresh, igt_output_name(outs[i]));
+
+ planes[i] = igt_output_get_plane_type(outs[i],
+ DRM_PLANE_TYPE_PRIMARY);
+
+ igt_create_color_fb(data->drm_fd, modes[i]->hdisplay,
+ modes[i]->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR,
+ 0.0, 1.0, 0.0, &fbs[i]);
+
+ igt_plane_set_fb(planes[i], &fbs[i]);
+ }
+}
+
+/*
+ * fit_modes_in_bw - Tries atomic TEST_ONLY commit; if it fails, overrides
+ * output modes to fit bandwidth.
+ */
+static bool fit_modes_in_bw(data_t *data)
+{
+ int ret;
+
+ ret = igt_display_try_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_TEST_ONLY |
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL);
+ if (ret != 0) {
+ bool found;
+
+ found = igt_override_all_active_output_modes_to_fit_bw(&data->display);
+ igt_require_f(found, "No valid mode combo found for modeset\n");
+ }
+
+ return true;
+}
+
+static void do_modeset(data_t *data, bool mst)
+{
+ uint32_t master_pipes_mask = 0;
+ uint32_t valid_pipes_mask = 0;
+ uint32_t used_pipes_mask = 0;
+ igt_output_t *outs[IGT_MAX_PIPES];
+ drmModeModeInfo *modes[IGT_MAX_PIPES];
+ struct igt_fb fbs[IGT_MAX_PIPES];
+ struct igt_plane *planes[IGT_MAX_PIPES];
+ int n_pipes = 0;
+ int out_count = 0;
+ int i;
+
+ for_each_pipe(&data->display, i) {
+ valid_pipes_mask |= BIT(i);
+ n_pipes++;
+ }
+
+ if (mst) {
+ igt_assert_f(igt_find_all_mst_output_in_topology(data->drm_fd,
+ &data->display,
+ data->output, outs,
+ &out_count),
+ "Unable to find MST outputs\n");
+ } else {
+ outs[0] = data->output;
+ out_count = 1;
+ }
+
+ igt_assert_f(out_count > 0, "Require at least one output\n");
+
+ igt_set_all_master_pipes_for_platform(&data->display, &master_pipes_mask);
+
+ igt_assert_f(igt_assign_pipes_for_outputs(data->drm_fd,
+ outs,
+ out_count,
+ n_pipes,
+ &used_pipes_mask,
+ master_pipes_mask,
+ valid_pipes_mask),
+ "Unable to assign pipes for outputs\n");
+
+ setup_planes_fbs(data, outs, out_count, modes, fbs, planes);
+ fit_modes_in_bw(data);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+/*
+ * run_link_rate_test - Main link training routine. Expects the MST vs. SST check
+ * to be done beforehand. Returns true if tested at the correct rate.
+ */
+static bool run_link_rate_test(data_t *data, bool mst, bool uhbr)
+{
+ int max_link_rate;
+ int max_lane_count;
+ int current_link_rate;
+ bool is_uhbr_output;
+ char rate_str[32];
+ char lane_str[32];
+
+ igt_display_reset(&data->display);
+ igt_reset_link_params(data->drm_fd, data->output);
+
+ /* Retrain at default/driver parameters */
+ igt_force_link_retrain(data->drm_fd, data->output, RETRAIN_COUNT);
+ igt_assert_eq(check_condition_with_timeout(data->drm_fd, data->output,
+ igt_get_dp_pending_retrain, 1.0, 20.0), 0);
+ assert_link_status_good(data, mst);
+ do_modeset(data, mst);
+
+ /* FIXME : Driver may lie max link rate or max lane count */
+ /* Read max_link_rate and max_lane_count */
+ max_link_rate = igt_get_max_link_rate(data->drm_fd, data->output);
+ max_lane_count = igt_get_max_lane_count(data->drm_fd, data->output);
+
+ /* Check sink supports uhbr or not */
+ is_uhbr_output = (max_link_rate >= UHBR_LINK_RATE);
+ if ((uhbr && !is_uhbr_output) || (!uhbr && is_uhbr_output)) {
+ igt_info("Test expects %s, but output %s is %s.\n",
+ uhbr ? "UHBR" : "NON-UHBR",
+ data->output->name,
+ is_uhbr_output ? "UHBR" : "NON-UHBR");
+ igt_info("----------------------------------------------------\n");
+ return false;
+ }
+
+ snprintf(rate_str, sizeof(rate_str), "%d", max_link_rate);
+ snprintf(lane_str, sizeof(lane_str), "%d", max_lane_count);
+ igt_info("Max link rate for %s is %s, lane count = %d\n",
+ data->output->name, rate_str, max_lane_count);
+
+ /* Force retrain at max link params */
+ igt_set_link_params(data->drm_fd, data->output, rate_str, lane_str);
+ igt_force_link_retrain(data->drm_fd, data->output, RETRAIN_COUNT);
+ igt_assert_eq(check_condition_with_timeout(data->drm_fd, data->output,
+ igt_get_dp_pending_retrain, 1.0, 20.0), 0);
+ assert_link_status_good(data, mst);
+
+ current_link_rate = igt_get_current_link_rate(data->drm_fd, data->output);
+ igt_info("Current link rate is %d\n", current_link_rate);
+ igt_assert_f(current_link_rate == max_link_rate,
+ "Link training did not succeed at max link rate.\n");
+ igt_assert_f(is_uhbr_output ?
+ current_link_rate >= UHBR_LINK_RATE :
+ current_link_rate < UHBR_LINK_RATE,
+ is_uhbr_output ? "Link training didn't happen at uhbr rates" :
+ "Link training didn't happen at non-uhbr rates");
+ igt_info("----------------------------------------------------\n");
+ return true;
+}
+
+/*
+ * test_link_rate - Iterates over connected DP outputs. Checks MST vs. SST
+ * early, then calls run_link_rate_test(). Returns true if it ran on at
+ * least one matching output.
+ */
+static bool test_link_rate(data_t *data, bool mst, bool uhbr)
+{
+ bool ran_any_output = false, is_mst = false;
+ igt_output_t *tmp_output;
+
+ igt_skip_on_f(!is_intel_device(data->drm_fd),
+ "Test supported only on Intel platforms.\n");
+
+ for_each_connected_output(&data->display, tmp_output) {
+ if (tmp_output->config.connector->connector_type !=
+ DRM_MODE_CONNECTOR_DisplayPort) {
+ igt_info("Skipping non-DisplayPort output %s\n",
+ tmp_output->name);
+ igt_info("----------------------------------------------------\n");
+ continue;
+ }
+
+ /* Early skip if MST vs. SST does not match. */
+ is_mst = igt_check_output_is_dp_mst(tmp_output);
+ if (mst && !is_mst) {
+ igt_info("Skipping %s: MST requested but it's SST.\n",
+ tmp_output->name);
+ igt_info("----------------------------------------------------\n");
+ continue;
+ } else if (!mst && is_mst) {
+ igt_info("Skipping %s: SST requested but it's MST.\n",
+ tmp_output->name);
+ igt_info("----------------------------------------------------\n");
+ continue;
+ }
+ data->output = tmp_output;
+ igt_info("Running link training test for %s\n",
+ data->output->name);
+ ran_any_output = ran_any_output | run_link_rate_test(data, mst, uhbr);
+ }
+ return ran_any_output;
+}
+
+IGT_TEST_DESCRIPTION("Test to validate link training on SST/MST with "
+ "UHBR/NON_UHBR rates");
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+ data.devid = intel_get_drm_devid(data.drm_fd);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+ }
+
+ igt_describe("Test we can drive UHBR rates over SST");
+ igt_subtest("uhbr-sst") {
+ igt_require_f(intel_display_ver(data.devid) >= 13,
+ "UHBR not supported on platform\n");
+ igt_require_f(test_link_rate(&data, false, true),
+ "Didn't find any SST output with UHBR rates.\n");
+ }
+
+ igt_describe("Test we can drive UHBR rates over MST");
+ igt_subtest("uhbr-mst") {
+ igt_require_f(intel_display_ver(data.devid) >= 13,
+ "UHBR not supported on platform\n");
+ igt_require_f(test_link_rate(&data, true, true),
+ "Didn't find any MST output with UHBR rates.\n");
+ }
+
+ igt_describe("Test we can drive NON-UHBR rates over SST");
+ igt_subtest("non-uhbr-sst") {
+ igt_require_f(test_link_rate(&data, false, false),
+ "Didn't find any SST output with NON-UHBR rates.\n");
+ }
+
+ igt_describe("Test we can drive NON-UHBR rates over MST");
+ igt_subtest("non-uhbr-mst") {
+ igt_require_f(test_link_rate(&data, true, false),
+ "Didn't find any MST output with NON-UHBR rates.\n");
+ }
+
+ igt_fixture {
+ igt_reset_connectors();
+ igt_display_fini(&data.display);
+ close(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index dea2cb02b..896e8a832 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -245,6 +245,7 @@ intel_kms_progs = [
'kms_ccs',
'kms_cdclk',
'kms_dirtyfb',
+ 'kms_dp_link_training',
'kms_dp_linktrain_fallback',
'kms_draw_crc',
'kms_dsc',
@@ -369,6 +370,9 @@ extra_sources = {
'kms_dp_linktrain_fallback': [
join_paths ('intel', 'kms_mst_helper.c'),
join_paths ('intel', 'kms_dsc_helper.c') ],
+ 'kms_dp_link_training': [
+ join_paths ('intel', 'kms_mst_helper.c'),
+ join_paths ('intel', 'kms_joiner_helper.c') ],
'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
'kms_joiner': [ join_paths ('intel', 'kms_joiner_helper.c') ],
'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for add test to validate uhbr/non-uhbr over sst/mst (rev4)
2025-02-17 6:42 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
` (3 preceding siblings ...)
2025-02-17 6:42 ` [PATCH i-g-t 4/4] tests/intel/kms_dp_link_training: add tests for UHBR/NON-UHBR over SST/MST Kunal Joshi
@ 2025-02-17 10:08 ` Patchwork
2025-02-17 10:42 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-17 10:08 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2388 bytes --]
== Series Details ==
Series: add test to validate uhbr/non-uhbr over sst/mst (rev4)
URL : https://patchwork.freedesktop.org/series/143039/
State : success
== Summary ==
CI Bug Log - changes from IGT_8232 -> IGTPW_12610
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/index.html
Participating hosts (41 -> 39)
------------------------------
Missing (2): fi-snb-2520m fi-pnv-d510
Known issues
------------
Here are the changes found in IGTPW_12610 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][1] ([i915#12919] / [i915#13503])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-1: [PASS][2] -> [ABORT][3] ([i915#12919])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8232/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][4] ([i915#12061]) -> [PASS][5] +1 other test pass
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8232/bat-arls-5/igt@i915_selftest@live@workarounds.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/bat-arls-5/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8232 -> IGTPW_12610
* Linux: CI_DRM_16142 -> CI_DRM_16143
CI-20190529: 20190529
CI_DRM_16142: 6a9d2dbb5b88b9e6bf74aa2934f5280ca4a6f934 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16143: 297dc497ff4e957b8a82d4d9f67631e322bdd2a5 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12610: 7b1e4a024a748973cbc330f1d86abbd899fcb60e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8232: 8232
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/index.html
[-- Attachment #2: Type: text/html, Size: 3123 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for add test to validate uhbr/non-uhbr over sst/mst (rev4)
2025-02-17 6:42 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
` (4 preceding siblings ...)
2025-02-17 10:08 ` ✓ i915.CI.BAT: success for add test to validate uhbr/non-uhbr over sst/mst (rev4) Patchwork
@ 2025-02-17 10:42 ` Patchwork
2025-02-17 12:47 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-17 16:02 ` ✗ Xe.CI.Full: " Patchwork
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-17 10:42 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1077 bytes --]
== Series Details ==
Series: add test to validate uhbr/non-uhbr over sst/mst (rev4)
URL : https://patchwork.freedesktop.org/series/143039/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8232_BAT -> XEIGTPW_12610_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8232 -> IGTPW_12610
* Linux: xe-2673-6a9d2dbb5b88b9e6bf74aa2934f5280ca4a6f934 -> xe-2674-297dc497ff4e957b8a82d4d9f67631e322bdd2a5
IGTPW_12610: 7b1e4a024a748973cbc330f1d86abbd899fcb60e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8232: 8232
xe-2673-6a9d2dbb5b88b9e6bf74aa2934f5280ca4a6f934: 6a9d2dbb5b88b9e6bf74aa2934f5280ca4a6f934
xe-2674-297dc497ff4e957b8a82d4d9f67631e322bdd2a5: 297dc497ff4e957b8a82d4d9f67631e322bdd2a5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/index.html
[-- Attachment #2: Type: text/html, Size: 1636 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for add test to validate uhbr/non-uhbr over sst/mst (rev4)
2025-02-17 6:42 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
` (5 preceding siblings ...)
2025-02-17 10:42 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-02-17 12:47 ` Patchwork
2025-02-17 16:02 ` ✗ Xe.CI.Full: " Patchwork
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-17 12:47 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 130793 bytes --]
== Series Details ==
Series: add test to validate uhbr/non-uhbr over sst/mst (rev4)
URL : https://patchwork.freedesktop.org/series/143039/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16143_full -> IGTPW_12610_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12610_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12610_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12610_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk6/igt@gem_softpin@noreloc-s3.html
* {igt@kms_dp_link_training@non-uhbr-mst} (NEW):
- shard-tglu: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-3/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-dg2: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@kms_dp_link_training@non-uhbr-mst.html
* {igt@kms_dp_link_training@non-uhbr-sst} (NEW):
- shard-mtlp: NOTRUN -> [SKIP][5] +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-17/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [PASS][7] -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][9] -> [INCOMPLETE][10] +1 other test incomplete
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@absolute-wf_vblank:
- shard-dg1: [PASS][11] -> [INCOMPLETE][12] +1 other test incomplete
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-19/igt@kms_flip@absolute-wf_vblank.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@kms_flip@absolute-wf_vblank.html
* igt@perf_pmu@module-unload:
- shard-mtlp: [PASS][13] -> [INCOMPLETE][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-mtlp-6/igt@perf_pmu@module-unload.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-1/igt@perf_pmu@module-unload.html
New tests
---------
New tests have been introduced between CI_DRM_16143_full and IGTPW_12610_full:
### New IGT tests (5) ###
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 10.10] s
* igt@kms_dp_link_training@non-uhbr-mst:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_dp_link_training@non-uhbr-sst:
- Statuses : 1 pass(s) 4 skip(s)
- Exec time: [0.0, 2.20] s
* igt@kms_dp_link_training@uhbr-mst:
- Statuses :
- Exec time: [None] s
* igt@kms_dp_link_training@uhbr-sst:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12610_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#8411])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#8411])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8411])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8411])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#9318])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@debugfs_test@basic-hwmon.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8414]) +16 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-4/igt@drm_fdinfo@busy@rcs0.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg2-9: NOTRUN -> [SKIP][21] ([i915#8414])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@drm_fdinfo@virtual-busy-hang.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8414])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-7/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_ccs@block-copy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#9323])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#9323])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-5/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][29] -> [INCOMPLETE][30] ([i915#13356])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][31] -> [INCOMPLETE][32] ([i915#12392] / [i915#13356])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#6335])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#6335])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#6335])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [PASS][36] -> [DMESG-FAIL][37] ([i915#12964]) +1 other test dmesg-fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@process:
- shard-snb: NOTRUN -> [SKIP][38] ([i915#1099]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-snb5/igt@gem_ctx_persistence@process.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#5882]) +6 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html
* igt@gem_eio@hibernate:
- shard-glk: NOTRUN -> [ABORT][40] ([i915#13661])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk1/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][41] ([i915#13197] / [i915#13390])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk6/igt@gem_eio@in-flight-suspend.html
- shard-mtlp: [PASS][42] -> [ABORT][43] ([i915#13193])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-mtlp-3/igt@gem_eio@in-flight-suspend.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-7/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][44] -> [DMESG-WARN][45] ([i915#13363])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-tglu-3/igt@gem_eio@kms.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-9/igt@gem_eio@kms.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4036])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#8555])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4525])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#4525]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4525])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#6334]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][52] ([i915#6334]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4812]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-12/igt@gem_exec_fence@submit.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4812])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-7/igt@gem_exec_fence@submit3.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4812])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg2-9: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3539] / [i915#4852]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#5107])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3281]) +9 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3281]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][61] ([i915#3281]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3281]) +10 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3281]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-16/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4537])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-7/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4537] / [i915#4812]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4537] / [i915#4812]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-4/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4860]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][68] ([i915#2190])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#4613] / [i915#7582])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#4613]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#12193])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0 (NEW):
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4565])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][73] ([i915#4613]) +7 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk1/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@random-engines:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4613]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-3/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#4613]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-9/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: NOTRUN -> [TIMEOUT][76] ([i915#5493]) +1 other test timeout
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: NOTRUN -> [TIMEOUT][77] ([i915#5493]) +1 other test timeout
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#4613])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#284])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-4/igt@gem_media_vme.html
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#284])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@gem_media_vme.html
* igt@gem_mmap@big-bo:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4083]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg2-9: NOTRUN -> [SKIP][82] ([i915#4077])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4077]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-14/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_wc@close:
- shard-dg2-9: NOTRUN -> [SKIP][84] ([i915#4083])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@read-write:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4083]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-16/igt@gem_mmap_wc@read-write.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4083]) +7 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-8/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3282]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-5/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pread@snoop:
- shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#3282])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gem_pread@snoop.html
* igt@gem_pread@uncached:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3282])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-16/igt@gem_pread@uncached.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4270])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-18/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2-9: NOTRUN -> [SKIP][92] ([i915#4270])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#13398]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#13398]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [TIMEOUT][95] ([i915#12917] / [i915#12964])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: [PASS][96] -> [TIMEOUT][97] ([i915#12917] / [i915#12964]) +1 other test timeout
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4270]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-3/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3282]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-1/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][100] ([i915#5190] / [i915#8428]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#5190] / [i915#8428]) +5 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8428]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4079])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-16/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#4079]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-dg2-9: NOTRUN -> [SKIP][105] ([i915#4079])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4077]) +13 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4077]) +5 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#3297] / [i915#3323])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-8/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#3297]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2-9: NOTRUN -> [SKIP][110] ([i915#3282] / [i915#3297])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#3297]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@gem_userptr_blits@readonly-unsync.html
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#3297])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-8/igt@gem_userptr_blits@readonly-unsync.html
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#3297])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-2/igt@gem_userptr_blits@readonly-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3297])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#3281] / [i915#3297])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@gem_userptr_blits@relocations.html
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#3281] / [i915#3297])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#3281] / [i915#3297])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: NOTRUN -> [ABORT][118] ([i915#5566])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk8/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#2527])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-dg2-9: NOTRUN -> [SKIP][120] ([i915#2856])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#2856]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#2527])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-17/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#2527] / [i915#2856]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#2856]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#2527] / [i915#2856]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][126] -> [ABORT][127] ([i915#9820])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#6412])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#8399]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-2/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][130] ([i915#12797]) +1 other test incomplete
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk4/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#11681] / [i915#6621])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#11681] / [i915#6621])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-17/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#11681])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-5/igt@i915_pm_rps@thresholds.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#4387])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-7/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#4387])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#4387])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-18/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#4387])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-10/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#8437])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock:
- shard-glk: NOTRUN -> [DMESG-WARN][139] ([i915#1982] / [i915#9311])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk8/igt@i915_selftest@mock.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][140] ([i915#9311]) +1 other test dmesg-warn
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-3/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][141] ([i915#9311]) +1 other test dmesg-warn
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@i915_selftest@mock@memory_region.html
- shard-rkl: NOTRUN -> [DMESG-WARN][142] ([i915#9311]) +1 other test dmesg-warn
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@i915_selftest@mock@memory_region.html
- shard-tglu-1: NOTRUN -> [DMESG-WARN][143] ([i915#9311]) +1 other test dmesg-warn
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@i915_selftest@mock@memory_region.html
- shard-dg1: NOTRUN -> [DMESG-WARN][144] ([i915#9311]) +1 other test dmesg-warn
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-13/igt@i915_selftest@mock@memory_region.html
- shard-glk: NOTRUN -> [DMESG-WARN][145] ([i915#9311])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk8/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@forcewake:
- shard-rkl: NOTRUN -> [DMESG-FAIL][146] ([i915#12964])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-3/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#7707])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-8/igt@intel_hwmon@hwmon-read.html
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#7707])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-4/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#7707]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4212]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][151] ([i915#8709]) +7 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#12967])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip-atomic.html
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#12967])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-3/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#10333])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-4/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][155] ([i915#1769])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#1769] / [i915#3555])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][157] -> [FAIL][158] ([i915#11808]) +1 other test fail
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#5286])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#5286]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5286]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#4423] / [i915#4538] / [i915#5286])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][164] +12 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][165] +16 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#3638]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-19/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3638])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-9: NOTRUN -> [SKIP][168] ([i915#5190]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#4538] / [i915#5190]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg1: [PASS][170] -> [DMESG-WARN][171] ([i915#4423]) +2 other tests dmesg-warn
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-14/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#4538] / [i915#5190]) +12 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#4538]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#6095]) +130 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][175] ([i915#10307] / [i915#6095]) +14 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#6095]) +54 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-10/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#6095]) +75 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#6095]) +24 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][179] ([i915#12805])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][180] ([i915#12796]) +1 other test incomplete
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][181] ([i915#6095]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#6095]) +21 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#12313])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#12313])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#6095]) +19 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#10307] / [i915#6095]) +166 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][187] ([i915#12313])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#12313]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#7213] / [i915#9010]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@kms_cdclk@mode-transition.html
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#11616] / [i915#7213])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@kms_cdclk@mode-transition.html
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3742])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-8/igt@kms_cdclk@mode-transition.html
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3742])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-12/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#3742])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#7213]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#4087]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2-9: NOTRUN -> [SKIP][197] ([i915#11151] / [i915#7828]) +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#11151] / [i915#7828]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#11151] / [i915#7828]) +5 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-6/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#11151] / [i915#7828]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-19/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-3/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#11151] / [i915#7828]) +7 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555]) +5 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-5/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-4/igt@kms_content_protection@atomic.html
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#7118] / [i915#9424])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][207] ([i915#7118] / [i915#9424])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#6944] / [i915#9424])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-9: NOTRUN -> [SKIP][209] ([i915#3299])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#3299])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3299]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#3116])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#3116] / [i915#3299])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3299])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#9424])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@type1:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#6944] / [i915#9424])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][217] ([i915#1339] / [i915#7173])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-3.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#13049])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#13049])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][220] -> [FAIL][221] ([i915#13566]) +1 other test fail
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][222] -> [FAIL][223] ([i915#13566]) +3 other tests fail
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#13049])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#13049])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][226] ([i915#13566]) +3 other tests fail
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-4/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#8814])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2-9: NOTRUN -> [SKIP][228] ([i915#3555]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][229] ([i915#12358] / [i915#7882])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk9/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][230] ([i915#12358])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk9/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_edge_walk@64x64-left-edge:
- shard-rkl: [PASS][231] -> [DMESG-WARN][232] ([i915#12964]) +28 other tests dmesg-warn
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-8/igt@kms_cursor_edge_walk@64x64-left-edge.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-2/igt@kms_cursor_edge_walk@64x64-left-edge.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#4213])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#4103]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][235] +9 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-dg2-9: NOTRUN -> [SKIP][236] ([i915#13046] / [i915#5354])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#13046] / [i915#5354]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#9809])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#4103] / [i915#4213])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#9833])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#9723])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#9833])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#8588])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#8588])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#8588])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-13/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#8588])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-5/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#8588])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-8/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dp_aux_dev:
- shard-dg2-9: NOTRUN -> [SKIP][248] ([i915#1257])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_dp_aux_dev.html
* {igt@kms_dp_link_training@uhbr-sst} (NEW):
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#3828])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#3828])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-16/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#3828])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-7/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#8812]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-9: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#3840])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#3840])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#3840])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#3840] / [i915#9053])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#3469])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-3/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#3469])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#4854])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-9: NOTRUN -> [SKIP][260] ([i915#1839])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#1839])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-18/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#658])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-5/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#4881])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][264] -> [FAIL][265] ([i915#11989]) +5 other tests fail
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-snb6/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#3637]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2-9: NOTRUN -> [SKIP][267] ([i915#9934]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#9934]) +5 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-18/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3637]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#9934]) +8 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#9934]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#3637]) +4 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@blocking-absolute-wf_vblank@a-hdmi-a1:
- shard-rkl: NOTRUN -> [DMESG-WARN][273] ([i915#12964]) +7 other tests dmesg-warn
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@kms_flip@blocking-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@blocking-absolute-wf_vblank@b-hdmi-a1:
- shard-glk: NOTRUN -> [DMESG-WARN][274] ([i915#118]) +2 other tests dmesg-warn
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk8/igt@kms_flip@blocking-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu: [PASS][275] -> [FAIL][276] ([i915#11989]) +1 other test fail
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-tglu-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#8381])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-16/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#8381]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-dg2: [PASS][279] -> [FAIL][280] ([i915#11989]) +3 other tests fail
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-3/igt@kms_flip@wf_vblank-ts-check.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-3/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][281] ([i915#2672] / [i915#3555])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#2672]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#2672] / [i915#3555]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#2672] / [i915#3555]) +4 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#2672] / [i915#3555]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][286] ([i915#2672]) +3 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#2672]) +4 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#2587] / [i915#2672]) +4 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#2672] / [i915#3555])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#2587] / [i915#2672])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#2672] / [i915#8813]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][294] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: [PASS][295] -> [FAIL][296] ([i915#6880]) +2 other tests fail
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#5354]) +35 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][298] ([i915#8708]) +9 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][299] +21 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][300] ([i915#5354]) +7 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#8708]) +9 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#8708]) +11 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#3458]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#3458]) +13 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][305] +164 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#10433] / [i915#3458]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#1825]) +21 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#8708]) +3 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][309] ([i915#3458]) +7 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#9766])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][311] +69 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#1825]) +14 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][313] +21 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#3023]) +8 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8228])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#12713])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#12713])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#8228])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#3555] / [i915#8228]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-17/igt@kms_hdr@static-swap.html
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#8228])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-8/igt@kms_hdr@static-swap.html
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8228]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-4/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#3555] / [i915#8228]) +2 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#3555] / [i915#8228]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][324] ([i915#10656])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-8/igt@kms_joiner@basic-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][325] ([i915#10656])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-1/igt@kms_joiner@basic-big-joiner.html
- shard-dg2-9: NOTRUN -> [SKIP][326] ([i915#10656])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][327] ([i915#12388])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][328] ([i915#12339])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#12388])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#13522])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#6301])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-11/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-glk: [PASS][332] -> [INCOMPLETE][333] ([i915#13026])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#3555])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-2/igt@kms_plane_multiple@tiling-4.html
- shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#3555]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#13046] / [i915#5354] / [i915#9423])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#6953] / [i915#9423])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2-9: NOTRUN -> [SKIP][338] ([i915#12247]) +7 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#12247] / [i915#9423])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- shard-dg2-9: NOTRUN -> [SKIP][340] ([i915#12247] / [i915#9423]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#12247] / [i915#6953] / [i915#9423])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#12247] / [i915#6953])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#12247]) +7 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#12247]) +3 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][345] ([i915#12247] / [i915#6953])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#12247]) +12 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#5354])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-8/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#9812])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-2/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#12343])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-8/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2-9: NOTRUN -> [SKIP][350] ([i915#12343])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: [PASS][351] -> [FAIL][352] ([i915#12913])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-mtlp-7/igt@kms_pm_dc@dc6-dpms.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#9340])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][354] ([i915#9519])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][355] ([i915#9519]) +1 other test skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-8/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-dg2: [PASS][356] -> [SKIP][357] ([i915#9519])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#9519])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][359] -> [SKIP][360] ([i915#9519]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#9519])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@pc8-residency:
- shard-dg2-9: NOTRUN -> [SKIP][362] +2 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][363] ([i915#11520]) +8 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-9: NOTRUN -> [SKIP][364] ([i915#11520]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#11520]) +5 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-16/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#11520]) +9 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#9808])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][368] ([i915#11520]) +4 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-snb6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][369] ([i915#12316]) +4 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][370] ([i915#11520]) +2 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][371] ([i915#11520]) +18 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#11520]) +2 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#9683])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-9: NOTRUN -> [SKIP][374] ([i915#9683])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#1072] / [i915#9732]) +7 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-1/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-dg2-9: NOTRUN -> [SKIP][376] ([i915#1072] / [i915#9732]) +8 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#1072] / [i915#9732]) +6 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-12/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@pr-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#9688]) +9 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@kms_psr@pr-primary-render.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#9732]) +17 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-8/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr2-basic:
- shard-mtlp: NOTRUN -> [FAIL][380] ([i915#13509]) +1 other test fail
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-7/igt@kms_psr@psr2-basic.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#1072] / [i915#9732]) +18 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-11/igt@kms_psr@psr2-primary-blt.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9732]) +4 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][383] +583 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][384] ([i915#9685])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-14/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#9685])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#12755]) +2 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][387] ([i915#5190]) +2 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
- shard-mtlp: NOTRUN -> [SKIP][388] ([i915#5289])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-mtlp: NOTRUN -> [SKIP][389] ([i915#12755])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#5289])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-9: NOTRUN -> [SKIP][391] ([i915#12755])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][392] ([i915#3555]) +2 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][393] ([i915#13179]) +1 other test abort
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-8/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][394] ([i915#13179]) +1 other test abort
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][395] ([i915#13179]) +1 other test abort
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-2/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][396] ([i915#5465]) +2 other tests fail
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-snb2/igt@kms_setmode@basic.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][397] ([i915#3555] / [i915#8809] / [i915#8823])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#8623])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][399] ([i915#8623])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][400] ([i915#9906])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][401] ([i915#11920])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-5/igt@kms_vrr@lobf.html
- shard-rkl: NOTRUN -> [SKIP][402] ([i915#11920])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-2/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][403] ([i915#11920])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@kms_vrr@lobf.html
- shard-tglu: NOTRUN -> [SKIP][404] ([i915#11920])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-5/igt@kms_vrr@lobf.html
- shard-mtlp: NOTRUN -> [SKIP][405] ([i915#11920])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2-9: NOTRUN -> [SKIP][406] ([i915#3555] / [i915#9906])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][407] ([i915#9906])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][408] ([i915#2437] / [i915#9412])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-mtlp: NOTRUN -> [SKIP][409] ([i915#2437])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][410] ([i915#2437] / [i915#9412])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-14/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][411] ([i915#2437]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][412] ([i915#2437] / [i915#9412])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-6/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-mtlp: [PASS][413] -> [FAIL][414] ([i915#10538])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-mtlp-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-2/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][415] ([i915#7387])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-8/igt@perf@global-sseu-config-invalid.html
* igt@perf@non-zero-reason:
- shard-dg2: NOTRUN -> [FAIL][416] ([i915#9100]) +1 other test fail
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@perf@non-zero-reason.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2-9: NOTRUN -> [FAIL][417] ([i915#12549] / [i915#6806]) +1 other test fail
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@invalid-init:
- shard-tglu-1: NOTRUN -> [FAIL][418] ([i915#13663])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-1/igt@perf_pmu@invalid-init.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][419] -> [FAIL][420] ([i915#4349]) +1 other test fail
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-5/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2-9: NOTRUN -> [SKIP][421] ([i915#3708] / [i915#4077])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][422] ([i915#3708]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@prime_vgem@fence-read-hang.html
- shard-dg2-9: NOTRUN -> [SKIP][423] ([i915#3708])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-9/igt@prime_vgem@fence-read-hang.html
- shard-rkl: NOTRUN -> [SKIP][424] ([i915#3708])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-8/igt@prime_vgem@fence-read-hang.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][425] ([i915#4818])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][426] ([i915#13427]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_eio@in-flight-internal-10ms:
- shard-mtlp: [ABORT][428] ([i915#13193]) -> [PASS][429] +1 other test pass
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-mtlp-7/igt@gem_eio@in-flight-internal-10ms.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-8/igt@gem_eio@in-flight-internal-10ms.html
* igt@gem_eio@kms:
- shard-dg2: [FAIL][430] ([i915#5784]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-6/igt@gem_eio@kms.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-8/igt@gem_eio@kms.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [INCOMPLETE][432] ([i915#11441] / [i915#13304]) -> [PASS][433] +1 other test pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][434] ([i915#9820]) -> [PASS][435]
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [ABORT][436] ([i915#9820]) -> [PASS][437]
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][438] ([i915#12455]) -> [PASS][439] +1 other test pass
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][440] ([i915#7984]) -> [PASS][441]
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-mtlp-4/igt@i915_power@sanity.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-4/igt@i915_power@sanity.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk: [INCOMPLETE][442] ([i915#4817]) -> [PASS][443]
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-glk3/igt@i915_suspend@basic-s3-without-i915.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [FAIL][444] ([i915#5956]) -> [PASS][445]
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-rkl: [DMESG-WARN][446] ([i915#12964]) -> [PASS][447] +24 other tests pass
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [FAIL][448] ([i915#13566]) -> [PASS][449] +1 other test pass
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-tglu: [FAIL][450] ([i915#11989]) -> [PASS][451] +4 other tests pass
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-tglu-5/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2: [FAIL][452] ([i915#6880]) -> [PASS][453] +2 other tests pass
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite:
- shard-snb: [SKIP][454] -> [PASS][455]
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][456] ([i915#3555] / [i915#8228]) -> [PASS][457]
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][458] ([i915#4281]) -> [PASS][459]
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][460] ([i915#9519]) -> [PASS][461]
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_rotation_crc@cursor-rotation-180:
- shard-dg1: [DMESG-WARN][462] ([i915#4423]) -> [PASS][463]
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-13/igt@kms_rotation_crc@cursor-rotation-180.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-12/igt@kms_rotation_crc@cursor-rotation-180.html
* igt@kms_setmode@basic:
- shard-tglu: [FAIL][464] ([i915#5465]) -> [PASS][465] +2 other tests pass
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-tglu-8/igt@kms_setmode@basic.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-4/igt@kms_setmode@basic.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][466] ([i915#10393]) -> [PASS][467] +1 other test pass
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-mtlp-5/igt@kms_vrr@negative-basic.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-6/igt@kms_vrr@negative-basic.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-tglu: [FAIL][468] ([i915#10538]) -> [PASS][469]
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-tglu-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-tglu-6/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg1: [FAIL][470] ([i915#11943]) -> [PASS][471]
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-14/igt@perf_pmu@all-busy-idle-check-all.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-dg2: [FAIL][472] ([i915#4349]) -> [PASS][473]
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-5/igt@perf_pmu@busy-double-start@ccs0.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-1/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-mtlp: [FAIL][474] ([i915#4349]) -> [PASS][475]
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-mtlp-6/igt@perf_pmu@busy-double-start@vecs0.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-5/igt@perf_pmu@busy-double-start@vecs0.html
* igt@perf_pmu@module-unload:
- shard-dg1: [INCOMPLETE][476] -> [PASS][477]
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-17/igt@perf_pmu@module-unload.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-14/igt@perf_pmu@module-unload.html
#### Warnings ####
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: [TIMEOUT][478] ([i915#12917] / [i915#12964]) -> [SKIP][479] ([i915#4270]) +1 other test skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-rkl: [SKIP][480] ([i915#4270]) -> [TIMEOUT][481] ([i915#12917] / [i915#12964])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: [SKIP][482] ([i915#6095]) -> [SKIP][483] ([i915#4423] / [i915#6095]) +1 other test skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-15/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg1: [SKIP][484] ([i915#11151] / [i915#7828]) -> [SKIP][485] ([i915#11151] / [i915#4423] / [i915#7828])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-13/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][486] ([i915#9424]) -> [SKIP][487] ([i915#9433])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-14/igt@kms_content_protection@mei-interface.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][488] ([i915#7118] / [i915#9424]) -> [FAIL][489] ([i915#1339] / [i915#7173])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-3/igt@kms_content_protection@uevent.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-11/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][490] ([i915#3458]) -> [SKIP][491] ([i915#10433] / [i915#3458]) +2 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg1: [SKIP][492] -> [SKIP][493] ([i915#4423])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][494] ([i915#10433] / [i915#3458]) -> [SKIP][495] ([i915#3458])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
- shard-dg1: [SKIP][496] ([i915#3458]) -> [SKIP][497] ([i915#3458] / [i915#4423])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg1: [SKIP][498] ([i915#8708]) -> [SKIP][499] ([i915#4423] / [i915#8708])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][500] ([i915#1187] / [i915#12713]) -> [SKIP][501] ([i915#12713])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-mtlp-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg1: [SKIP][502] ([i915#11520] / [i915#4423]) -> [SKIP][503] ([i915#11520])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-17/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@psr-sprite-mmap-gtt:
- shard-dg1: [SKIP][504] ([i915#1072] / [i915#9732]) -> [SKIP][505] ([i915#1072] / [i915#4423] / [i915#9732])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16143/shard-dg1-13/igt@kms_psr@psr-sprite-mmap-gtt.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/shard-dg1-15/igt@kms_psr@psr-sprite-mmap-gtt.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12913
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13197
[i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13509]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13509
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13661]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13661
[i915#13663]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#9010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9010
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8232 -> IGTPW_12610
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_16143: 297dc497ff4e957b8a82d4d9f67631e322bdd2a5 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12610: 7b1e4a024a748973cbc330f1d86abbd899fcb60e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8232: 8232
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12610/index.html
[-- Attachment #2: Type: text/html, Size: 167734 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for add test to validate uhbr/non-uhbr over sst/mst (rev4)
2025-02-17 6:42 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
` (6 preceding siblings ...)
2025-02-17 12:47 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-02-17 16:02 ` Patchwork
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-17 16:02 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 78088 bytes --]
== Series Details ==
Series: add test to validate uhbr/non-uhbr over sst/mst (rev4)
URL : https://patchwork.freedesktop.org/series/143039/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8232_full -> XEIGTPW_12610_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12610_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12610_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12610_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_dp_link_training@non-uhbr-mst} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][1] +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_dp_link_training@non-uhbr-mst.html
* {igt@kms_dp_link_training@uhbr-mst} (NEW):
- shard-lnl: NOTRUN -> [SKIP][2] +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-2/igt@kms_dp_link_training@uhbr-mst.html
* {igt@kms_dp_link_training@uhbr-sst} (NEW):
- shard-bmg: NOTRUN -> [SKIP][3] +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_plane@plane-position-hole-dpms:
- shard-lnl: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-lnl-7/igt@kms_plane@plane-position-hole-dpms.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-5/igt@kms_plane@plane-position-hole-dpms.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_pipe_stress@stress-xrgb8888-ytiled}:
- shard-dg2-set2: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
New tests
---------
New tests have been introduced between XEIGT_8232_full and XEIGTPW_12610_full:
### New IGT tests (4) ###
* igt@kms_dp_link_training@non-uhbr-mst:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_dp_link_training@non-uhbr-sst:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.0, 2.25] s
* igt@kms_dp_link_training@uhbr-mst:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_dp_link_training@uhbr-sst:
- Statuses : 2 skip(s)
- Exec time: [0.0, 1.12] s
Known issues
------------
Here are the changes found in XEIGTPW_12610_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: NOTRUN -> [INCOMPLETE][7] ([Intel XE#2613]) +1 other test incomplete
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#3279]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#316]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#619])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2191]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +7 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +8 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2669]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#787]) +76 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#3442]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3432])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][24] ([Intel XE#3124] / [Intel XE#4010])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][25] ([Intel XE#4010]) +1 other test incomplete
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2907]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2652] / [Intel XE#787]) +18 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +26 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#306]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#306])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-2/igt@kms_chamelium_color@ctm-negative.html
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2325])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +13 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2252]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#373]) +9 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2341])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#307]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#307]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-8/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2390]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][39] ([Intel XE#1178]) +1 other test fail
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_content_protection@legacy.html
- shard-dg2-set2: NOTRUN -> [FAIL][40] ([Intel XE#1178]) +2 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@kms_content_protection@legacy.html
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#3278]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-8/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1188])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-463/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#308]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2320]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1424]) +6 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#309]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-463/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2291]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#309]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#309]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2291])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-dg2-set2: [PASS][53] -> [DMESG-WARN][54] ([Intel XE#1033]) +4 other tests dmesg-warn
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-463/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [PASS][55] -> [SKIP][56] ([Intel XE#3009])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-433/igt@kms_dp_aux_dev.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#4294])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2244])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2372])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_feature_discovery@chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#701])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#701])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1138])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_feature_discovery@display-4x.html
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1138])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1138])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-8/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-dg2-set2: [PASS][65] -> [SKIP][66] ([Intel XE#310]) +6 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-463/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1421]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][68] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#310])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2316])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2316]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-7/igt@kms_flip@2x-wf_vblank-ts-check.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#886]) +2 other tests fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][75] ([Intel XE#301]) +2 other tests fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp2:
- shard-bmg: [PASS][76] -> [FAIL][77] ([Intel XE#3321]) +3 other tests fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1401]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#455]) +13 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2293]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#352]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#651]) +13 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2311]) +21 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#651]) +30 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#656]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4141]) +6 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#658])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#656]) +11 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#653]) +32 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#656]) +28 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2313]) +14 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-rte:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2312]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-rte.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1503]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-8/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#346])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2925])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2486])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2393])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#599])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][102] ([Intel XE#2705] / [Intel XE#4212])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#3307])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][104] ([Intel XE#4212])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#870]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-463/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#870]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2391])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1122])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#736])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][113] -> [FAIL][114] ([Intel XE#718])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1439] / [Intel XE#3141])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-4:
- shard-bmg: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#4172]) +12 other tests dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-7/igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-4.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-4.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1489]) +7 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2893])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-sprite-blt:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1406]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-2/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2939])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#3414] / [Intel XE#3904])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-270.html
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-7/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#3414]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#1127])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#2883]) +2 other tests fail
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][131] -> [SKIP][132] ([Intel XE#1435]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2-set2: [PASS][133] -> [SKIP][134] ([Intel XE#455]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-466/igt@kms_setmode@invalid-clone-single-crtc.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][135] -> [FAIL][136] ([Intel XE#899])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][137] ([Intel XE#1033]) +2 other tests dmesg-warn
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-4.html
* igt@kms_vrr@flipline:
- shard-lnl: NOTRUN -> [FAIL][138] ([Intel XE#1522]) +1 other test fail
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-5/igt@kms_vrr@flipline.html
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#1499]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#756])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#756]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_writeback@writeback-pixel-formats.html
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#756])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-6/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1447])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-7/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1123])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#1126])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#3889])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#3889])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-5/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#3889])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug_online@interrupt-other:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2905]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@xe_eudebug_online@interrupt-other.html
* igt@xe_eudebug_online@reset-with-attention:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#2905]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-2/igt@xe_eudebug_online@reset-with-attention.html
* igt@xe_evict@evict-beng-small-multi-vm:
- shard-bmg: NOTRUN -> [DMESG-WARN][151] ([Intel XE#4172])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@xe_evict@evict-beng-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#688]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1392]) +5 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-6/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2322]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#288]) +27 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2360])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2905]) +12 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2459] / [Intel XE#2596])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@xe_media_fill@media-fill.html
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#560])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-463/igt@xe_media_fill@media-fill.html
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#560])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-5/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@pci-membarrier-bad-pagesize:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#4045])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-3/igt@xe_mmap@pci-membarrier-bad-pagesize.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#1337])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#977])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#979])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-7/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2284]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-basic:
- shard-bmg: [PASS][169] -> [DMESG-WARN][170] ([Intel XE#4172] / [Intel XE#569])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-4/igt@xe_pm@s3-basic.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@xe_pm@s3-basic.html
- shard-dg2-set2: [PASS][171] -> [DMESG-WARN][172] ([Intel XE#1033] / [Intel XE#569])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-434/igt@xe_pm@s3-basic.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#584])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-6/igt@xe_pm@s3-mocs.html
- shard-bmg: NOTRUN -> [DMESG-WARN][174] ([Intel XE#4172] / [Intel XE#569])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: NOTRUN -> [ABORT][175] ([Intel XE#4268])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#944]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@xe_query@multigpu-query-invalid-query.html
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#944]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@xe_query@multigpu-query-invalid-query.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#944]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-2/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#4130]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#3342])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@xe_sriov_flr@flr-each-isolation.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][181] ([Intel XE#911]) -> [PASS][182] +3 other tests pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][183] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-bmg: [SKIP][185] ([Intel XE#2291]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2-set2: [SKIP][187] ([Intel XE#309]) -> [PASS][188] +2 other tests pass
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic@pipe-a-dp-4-pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][189] -> [PASS][190] +1 other test pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-466/igt@kms_display_modes@extended-mode-basic@pipe-a-dp-4-pipe-b-hdmi-a-6.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_display_modes@extended-mode-basic@pipe-a-dp-4-pipe-b-hdmi-a-6.html
* igt@kms_flip@2x-plain-flip:
- shard-dg2-set2: [SKIP][191] ([Intel XE#310]) -> [PASS][192] +4 other tests pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_flip@2x-plain-flip.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][193] ([Intel XE#2316]) -> [PASS][194] +3 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@blocking-absolute-wf_vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [INCOMPLETE][195] ([Intel XE#2049]) -> [PASS][196] +1 other test pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-463/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@b-hdmi-a6.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][197] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-lnl-2/igt@kms_flip@blocking-wf_vblank.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-3/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@c-edp1:
- shard-lnl: [FAIL][199] ([Intel XE#886]) -> [PASS][200] +2 other tests pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-lnl-2/igt@kms_flip@blocking-wf_vblank@c-edp1.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-3/igt@kms_flip@blocking-wf_vblank@c-edp1.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible:
- shard-bmg: [DMESG-WARN][201] ([Intel XE#2955]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-5/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
- shard-dg2-set2: [DMESG-WARN][203] ([Intel XE#2955]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][205] ([Intel XE#1033]) -> [PASS][206] +30 other tests pass
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a6.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: [FAIL][207] ([Intel XE#3321]) -> [PASS][208] +2 other tests pass
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [FAIL][209] ([Intel XE#301]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][211] ([Intel XE#656]) -> [PASS][212] +3 other tests pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][213] ([Intel XE#1503]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: [DMESG-WARN][215] ([Intel XE#4091]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-7/igt@kms_plane_lowres@tiling-none.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_plane_lowres@tiling-none.html
- shard-dg2-set2: [DMESG-WARN][217] -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_plane_lowres@tiling-none.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_plane_lowres@tiling-none.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [SKIP][219] ([Intel XE#836]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr@psr2-primary-page-flip@edp-1:
- shard-lnl: [FAIL][221] ([Intel XE#3924]) -> [PASS][222] +1 other test pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-lnl-3/igt@kms_psr@psr2-primary-page-flip@edp-1.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-lnl-8/igt@kms_psr@psr2-primary-page-flip@edp-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-a-hdmi-a-6-dp-4:
- shard-dg2-set2: [DMESG-WARN][223] ([Intel XE#4212]) -> [PASS][224] +2 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-463/igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-a-hdmi-a-6-dp-4.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-a-hdmi-a-6-dp-4.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-bmg: [DMESG-WARN][225] ([Intel XE#4172]) -> [PASS][226] +53 other tests pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-1/igt@kms_vblank@ts-continuation-suspend.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_vblank@ts-continuation-suspend.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-bmg: [INCOMPLETE][227] ([Intel XE#3592]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-7/igt@xe_exec_reset@cm-gt-reset.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][229] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-433/igt@xe_pm@s3-vm-bind-unbind-all.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html
- shard-bmg: [DMESG-WARN][231] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-7/igt@xe_pm@s3-vm-bind-unbind-all.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-dg2-set2: [DMESG-WARN][233] ([Intel XE#1033] / [Intel XE#3088]) -> [PASS][234] +1 other test pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@xe_pm_residency@gt-c6-freeze.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-bmg: [DMESG-WARN][235] ([Intel XE#3088] / [Intel XE#4172]) -> [PASS][236] +1 other test pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@xe_pm_residency@gt-c6-freeze@gt0.html
#### Warnings ####
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][237] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][238] ([Intel XE#787]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][239] ([Intel XE#787]) -> [SKIP][240] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-6.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][241] ([Intel XE#1727] / [Intel XE#4010]) -> [INCOMPLETE][242] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][243] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4010]) -> [DMESG-WARN][244] ([Intel XE#1727] / [Intel XE#3113])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: [SKIP][245] ([Intel XE#455]) -> [FAIL][246] ([Intel XE#1178])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_content_protection@atomic.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][247] ([Intel XE#455]) -> [FAIL][248] ([Intel XE#1188])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_content_protection@uevent.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-463/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2-set2: [DMESG-WARN][249] ([Intel XE#1033]) -> [SKIP][250] ([Intel XE#309])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-433/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [DMESG-WARN][251] ([Intel XE#2955]) -> [INCOMPLETE][252] ([Intel XE#2049] / [Intel XE#2597])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][253] ([Intel XE#4172]) -> [INCOMPLETE][254] ([Intel XE#2049] / [Intel XE#2597])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [DMESG-FAIL][255] ([Intel XE#4172]) -> [FAIL][256] ([Intel XE#3321]) +1 other test fail
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6:
- shard-dg2-set2: [DMESG-FAIL][257] ([Intel XE#1033]) -> [FAIL][258] ([Intel XE#301]) +1 other test fail
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][259] ([Intel XE#2312]) -> [SKIP][260] ([Intel XE#2311]) +7 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][261] ([Intel XE#2311]) -> [SKIP][262] ([Intel XE#2312]) +11 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][263] ([Intel XE#2312]) -> [SKIP][264] ([Intel XE#4141]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][265] ([Intel XE#4141]) -> [SKIP][266] ([Intel XE#2312]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][267] ([Intel XE#656]) -> [SKIP][268] ([Intel XE#651]) +7 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][269] ([Intel XE#651]) -> [SKIP][270] ([Intel XE#656]) +10 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][271] ([Intel XE#2313]) -> [SKIP][272] ([Intel XE#2312]) +8 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][273] ([Intel XE#656]) -> [SKIP][274] ([Intel XE#653]) +7 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][275] ([Intel XE#2312]) -> [SKIP][276] ([Intel XE#2313]) +7 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][277] ([Intel XE#653]) -> [SKIP][278] ([Intel XE#656]) +8 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][279] ([Intel XE#3544]) -> [SKIP][280] ([Intel XE#3374] / [Intel XE#3544])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][281] ([Intel XE#1729]) -> [SKIP][282] ([Intel XE#2426])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@testdisplay:
- shard-dg2-set2: [DMESG-WARN][283] ([Intel XE#2705] / [Intel XE#4212]) -> [DMESG-WARN][284] ([Intel XE#1033] / [Intel XE#2705] / [Intel XE#4212])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-433/igt@testdisplay.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-434/igt@testdisplay.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [ABORT][285] ([Intel XE#4268]) -> [ABORT][286] ([Intel XE#1033] / [Intel XE#4268])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-463/igt@xe_pm@s4-basic.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-433/igt@xe_pm@s4-basic.html
- shard-bmg: [ABORT][287] ([Intel XE#4268]) -> [ABORT][288] ([Intel XE#4172] / [Intel XE#4268])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-7/igt@xe_pm@s4-basic.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-5/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-basic-exec:
- shard-bmg: [ABORT][289] ([Intel XE#4172] / [Intel XE#4268]) -> [ABORT][290] ([Intel XE#4268]) +1 other test abort
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-bmg-5/igt@xe_pm@s4-basic-exec.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-bmg-4/igt@xe_pm@s4-basic-exec.html
- shard-dg2-set2: [ABORT][291] ([Intel XE#1033] / [Intel XE#4268]) -> [ABORT][292] ([Intel XE#4268])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8232/shard-dg2-466/igt@xe_pm@s4-basic-exec.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/shard-dg2-463/igt@xe_pm@s4-basic-exec.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3592
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
[Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8232 -> IGTPW_12610
* Linux: xe-2673-6a9d2dbb5b88b9e6bf74aa2934f5280ca4a6f934 -> xe-2674-297dc497ff4e957b8a82d4d9f67631e322bdd2a5
IGTPW_12610: 7b1e4a024a748973cbc330f1d86abbd899fcb60e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8232: 8232
xe-2673-6a9d2dbb5b88b9e6bf74aa2934f5280ca4a6f934: 6a9d2dbb5b88b9e6bf74aa2934f5280ca4a6f934
xe-2674-297dc497ff4e957b8a82d4d9f67631e322bdd2a5: 297dc497ff4e957b8a82d4d9f67631e322bdd2a5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12610/index.html
[-- Attachment #2: Type: text/html, Size: 92863 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t 1/4] tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform
2025-02-17 6:42 ` [PATCH i-g-t 1/4] tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform Kunal Joshi
@ 2025-02-18 7:51 ` B, Jeevan
0 siblings, 0 replies; 11+ messages in thread
From: B, Jeevan @ 2025-02-18 7:51 UTC (permalink / raw)
To: Joshi, Kunal1, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1
LGTM.
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Kunal
> Joshi
> Sent: Monday, February 17, 2025 12:13 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Joshi, Kunal1 <kunal1.joshi@intel.com>
> Subject: [PATCH i-g-t 1/4] tests/intel/kms_joiner: refactor
> set_all_master_pipes_for_platform
>
> refactor set_all_master_pipes_for_platform for readable code movement.
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> tests/intel/kms_joiner.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index
> 062a0e49d..080e8ff52 100644
> --- a/tests/intel/kms_joiner.c
> +++ b/tests/intel/kms_joiner.c
> @@ -106,13 +106,13 @@ typedef struct {
>
> static int max_dotclock;
>
> -static void set_all_master_pipes_for_platform(data_t *data)
> +static void set_all_master_pipes_for_platform(igt_display_t *display,
> +uint32_t *master_pipes)
> {
> enum pipe pipe;
>
> for (pipe = PIPE_A; pipe < IGT_MAX_PIPES - 1; pipe++) {
> - if (data->display.pipes[pipe].enabled && data-
> >display.pipes[pipe + 1].enabled) {
> - data->master_pipes |= BIT(pipe);
> + if (display->pipes[pipe].enabled && display->pipes[pipe +
> 1].enabled) {
> + *master_pipes |= BIT(pipe);
> igt_info("Found master pipe %s\n",
> kmstest_pipe_name(pipe));
> }
> }
> @@ -561,7 +561,7 @@ igt_main
> data.drm_fd = drm_open_driver_master(DRIVER_INTEL |
> DRIVER_XE);
> kmstest_set_vt_graphics_mode();
> igt_display_require(&data.display, data.drm_fd);
> - set_all_master_pipes_for_platform(&data);
> + set_all_master_pipes_for_platform(&data.display,
> &data.master_pipes);
> igt_require(data.display.is_atomic);
> max_dotclock = igt_get_max_dotclock(data.drm_fd);
>
> --
> 2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t 4/4] tests/intel/kms_dp_link_training: add tests for UHBR/NON-UHBR over SST/MST
2025-02-18 15:01 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
@ 2025-02-18 15:01 ` Kunal Joshi
0 siblings, 0 replies; 11+ messages in thread
From: Kunal Joshi @ 2025-02-18 15:01 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Arun R Murthy
Add new test kms_dp_linktraining
to validate both UHBR and non-UHBR link rates over SST
and MST configurations.
Add four new subtests (uhbr-sst, uhbr-mst, non-uhbr-sst, non-uhbr-mst)
to check if the link rates match the expected UHBR or NON-UHBR capability
and whether the outputs are MST or SST.
v2: add definition for UHBR_LINK_RATE
v3: add failure criteria (Jani Nikula)
v4: fix indentation (Swati)
fix typo in subject (Swati)
fix docs (Swati)
add display version check (Swati)
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com>
---
tests/intel/kms_dp_link_training.c | 384 +++++++++++++++++++++++++++++
tests/meson.build | 4 +
2 files changed, 388 insertions(+)
create mode 100644 tests/intel/kms_dp_link_training.c
diff --git a/tests/intel/kms_dp_link_training.c b/tests/intel/kms_dp_link_training.c
new file mode 100644
index 000000000..f00376614
--- /dev/null
+++ b/tests/intel/kms_dp_link_training.c
@@ -0,0 +1,384 @@
+// SPDX-License-Identifier: MIT
+/**
+ * TEST: kms dp link training
+ * Category: Display
+ * Description: Test to validate link training on SST/MST with UHBR/NON_UHBR rates
+ * Driver requirement: i915, xe
+ * Functionality: link_training
+ * Mega feature: General Display Features
+ * Test category: functionality test
+ */
+
+/**
+ * SUBTEST: uhbr-sst
+ * Description: Test we can drive UHBR rates over SST.
+ * Functionality: link_training, uhbr, sst
+ * Test category: functionality test
+ *
+ * SUBTEST: uhbr-mst
+ * Description: Test we can drive UHBR rates over MST.
+ * Functionality: link_training, uhbr, mst
+ * Test category: functionality test
+ *
+ * SUBTEST: non-uhbr-sst
+ * Description: Test we can drive non-UHBR rates over SST.
+ * Functionality: link_training, sst
+ * Test category: functionality test
+ *
+ * SUBTEST: non-uhbr-mst
+ * Description: Test we can drive non-UHBR rates over MST.
+ * Functionality: link_training, mst
+ * Test category: functionality test
+ */
+
+#include "igt.h"
+#include "igt_kms.h"
+#include "intel/kms_joiner_helper.h"
+#include "intel/kms_mst_helper.h"
+
+/*
+ * DP Spec defines 10, 13.5, and 20 Gbps as UHBR.
+ * Anything below that is considered NON-UHBR.
+ */
+#define UHBR_LINK_RATE 1000000
+#define RETRAIN_COUNT 1
+
+typedef struct {
+ int drm_fd;
+ uint32_t devid;
+ igt_display_t display;
+ igt_output_t *output;
+} data_t;
+
+/*
+ * check_condition_with_timeout - Polls check_fn until it returns 0
+ * or until 'timeout' seconds elapse.
+ */
+static int check_condition_with_timeout(int drm_fd, igt_output_t *output,
+ int (*check_fn)(int, igt_output_t *),
+ double interval, double timeout)
+{
+ struct timespec start_time, current_time;
+ double elapsed_time;
+ int ret;
+
+ clock_gettime(CLOCK_MONOTONIC, &start_time);
+
+ while (true) {
+ ret = check_fn(drm_fd, output);
+ if (ret == 0)
+ return 0;
+
+ clock_gettime(CLOCK_MONOTONIC, ¤t_time);
+ elapsed_time = (current_time.tv_sec - start_time.tv_sec) +
+ (current_time.tv_nsec - start_time.tv_nsec) / 1e9;
+ if (elapsed_time >= timeout)
+ return -1;
+
+ usleep((useconds_t)(interval * 1e6));
+ }
+}
+
+/*
+ * assert_link_status_good - Verifies link-status == GOOD
+ * for either a single SST output or all MST outputs in the topology.
+ */
+static void assert_link_status_good(data_t *data, bool mst)
+{
+ igt_output_t *outputs[IGT_MAX_PIPES];
+ uint32_t link_status_prop_id;
+ uint64_t link_status_value;
+ drmModePropertyPtr link_status_prop;
+ int count = 0;
+ int i;
+
+ if (mst) {
+ igt_assert_f(igt_find_all_mst_output_in_topology(data->drm_fd,
+ &data->display, data->output,
+ outputs, &count),
+ "Unable to find MST outputs\n");
+
+ for (i = 0; i < count; i++) {
+ kmstest_get_property(data->drm_fd,
+ outputs[i]->config.connector->connector_id,
+ DRM_MODE_OBJECT_CONNECTOR,
+ "link-status",
+ &link_status_prop_id,
+ &link_status_value,
+ &link_status_prop);
+
+ igt_assert_eq(link_status_value,
+ DRM_MODE_LINK_STATUS_GOOD);
+ }
+ } else {
+ kmstest_get_property(data->drm_fd,
+ data->output->config.connector->connector_id,
+ DRM_MODE_OBJECT_CONNECTOR,
+ "link-status",
+ &link_status_prop_id,
+ &link_status_value,
+ &link_status_prop);
+
+ igt_assert_eq(link_status_value, DRM_MODE_LINK_STATUS_GOOD);
+ }
+}
+
+/*
+ * setup_planes_fbs - Create solid-color FBs and attach them to the primary plane.
+ */
+static void setup_planes_fbs(data_t *data, igt_output_t *outs[],
+ int count, drmModeModeInfo *modes[],
+ struct igt_fb fbs[], struct igt_plane *planes[])
+{
+ int i;
+
+ for (i = 0; i < count; i++) {
+ modes[i] = igt_output_get_mode(outs[i]);
+ igt_info("Mode %dx%d@%d on output %s\n",
+ modes[i]->hdisplay, modes[i]->vdisplay,
+ modes[i]->vrefresh, igt_output_name(outs[i]));
+
+ planes[i] = igt_output_get_plane_type(outs[i], DRM_PLANE_TYPE_PRIMARY);
+
+ igt_create_color_fb(data->drm_fd, modes[i]->hdisplay,
+ modes[i]->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR,
+ 0.0, 1.0, 0.0, &fbs[i]);
+
+ igt_plane_set_fb(planes[i], &fbs[i]);
+ }
+}
+
+/*
+ * fit_modes_in_bw - Tries atomic TEST_ONLY commit; if it fails, overrides
+ * output modes to fit bandwidth.
+ */
+static bool fit_modes_in_bw(data_t *data)
+{
+ int ret;
+
+ ret = igt_display_try_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_TEST_ONLY |
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL);
+ if (ret != 0) {
+ bool found;
+
+ found = igt_override_all_active_output_modes_to_fit_bw(&data->display);
+ igt_require_f(found, "No valid mode combo found for modeset\n");
+ }
+
+ return true;
+}
+
+static void do_modeset(data_t *data, bool mst)
+{
+ uint32_t master_pipes_mask = 0;
+ uint32_t valid_pipes_mask = 0;
+ uint32_t used_pipes_mask = 0;
+ igt_output_t *outs[IGT_MAX_PIPES];
+ drmModeModeInfo *modes[IGT_MAX_PIPES];
+ struct igt_fb fbs[IGT_MAX_PIPES];
+ struct igt_plane *planes[IGT_MAX_PIPES];
+ int n_pipes = 0;
+ int out_count = 0;
+ int i;
+
+ for_each_pipe(&data->display, i) {
+ valid_pipes_mask |= BIT(i);
+ n_pipes++;
+ }
+
+ if (mst) {
+ igt_assert_f(igt_find_all_mst_output_in_topology(data->drm_fd,
+ &data->display,
+ data->output, outs,
+ &out_count),
+ "Unable to find MST outputs\n");
+ } else {
+ outs[0] = data->output;
+ out_count = 1;
+ }
+
+ igt_assert_f(out_count > 0, "Require at least one output\n");
+
+ igt_set_all_master_pipes_for_platform(&data->display, &master_pipes_mask);
+
+ igt_assert_f(igt_assign_pipes_for_outputs(data->drm_fd,
+ outs, out_count,
+ n_pipes,
+ &used_pipes_mask,
+ master_pipes_mask,
+ valid_pipes_mask),
+ "Unable to assign pipes for outputs\n");
+
+ setup_planes_fbs(data, outs, out_count, modes, fbs, planes);
+ fit_modes_in_bw(data);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+/*
+ * run_link_rate_test - Main link training routine. Expects the MST vs. SST check
+ * to be done beforehand. Returns true if tested at the correct rate.
+ */
+static bool run_link_rate_test(data_t *data, bool mst, bool uhbr)
+{
+ int max_link_rate;
+ int max_lane_count;
+ int current_link_rate;
+ bool is_uhbr_output;
+ char rate_str[32];
+ char lane_str[32];
+
+ igt_display_reset(&data->display);
+ igt_reset_link_params(data->drm_fd, data->output);
+
+ /* Retrain at default/driver parameters */
+ igt_force_link_retrain(data->drm_fd, data->output, RETRAIN_COUNT);
+ igt_assert_eq(check_condition_with_timeout(data->drm_fd, data->output,
+ igt_get_dp_pending_retrain,
+ 1.0, 20.0), 0);
+ assert_link_status_good(data, mst);
+ do_modeset(data, mst);
+
+ /* FIXME : Driver may lie max link rate or max lane count */
+ /* Read max_link_rate and max_lane_count */
+ max_link_rate = igt_get_max_link_rate(data->drm_fd, data->output);
+ max_lane_count = igt_get_max_lane_count(data->drm_fd, data->output);
+
+ /* Check sink supports uhbr or not */
+ is_uhbr_output = (max_link_rate >= UHBR_LINK_RATE);
+ if ((uhbr && !is_uhbr_output) || (!uhbr && is_uhbr_output)) {
+ igt_info("Test expects %s, but output %s is %s.\n",
+ uhbr ? "UHBR" : "NON-UHBR",
+ data->output->name,
+ is_uhbr_output ? "UHBR" : "NON-UHBR");
+ igt_info("----------------------------------------------------\n");
+ return false;
+ }
+
+ snprintf(rate_str, sizeof(rate_str), "%d", max_link_rate);
+ snprintf(lane_str, sizeof(lane_str), "%d", max_lane_count);
+ igt_info("Max link rate for %s is %s, lane count = %d\n",
+ data->output->name, rate_str, max_lane_count);
+
+ /* Force retrain at max link params */
+ igt_set_link_params(data->drm_fd, data->output, rate_str, lane_str);
+ igt_force_link_retrain(data->drm_fd, data->output, RETRAIN_COUNT);
+ igt_assert_eq(check_condition_with_timeout(data->drm_fd, data->output,
+ igt_get_dp_pending_retrain,
+ 1.0, 20.0), 0);
+ assert_link_status_good(data, mst);
+
+ current_link_rate = igt_get_current_link_rate(data->drm_fd, data->output);
+ igt_info("Current link rate is %d\n", current_link_rate);
+ igt_assert_f(current_link_rate == max_link_rate,
+ "Link training did not succeed at max link rate.\n");
+ igt_assert_f(is_uhbr_output ?
+ current_link_rate >= UHBR_LINK_RATE :
+ current_link_rate < UHBR_LINK_RATE,
+ is_uhbr_output ? "Link training didn't happen at uhbr rates" :
+ "Link training didn't happen at non-uhbr rates");
+ igt_info("----------------------------------------------------\n");
+ return true;
+}
+
+/*
+ * test_link_rate - Iterates over connected DP outputs. Checks MST vs. SST
+ * early, then calls run_link_rate_test(). Returns true if it ran on at
+ * least one matching output.
+ */
+static bool test_link_rate(data_t *data, bool mst, bool uhbr)
+{
+ bool ran_any_output = false, is_mst = false;
+ igt_output_t *tmp_output;
+
+ igt_skip_on_f(!is_intel_device(data->drm_fd),
+ "Test supported only on Intel platforms.\n");
+
+ for_each_connected_output(&data->display, tmp_output) {
+ if (tmp_output->config.connector->connector_type !=
+ DRM_MODE_CONNECTOR_DisplayPort) {
+ igt_info("Skipping non-DisplayPort output %s\n",
+ tmp_output->name);
+ igt_info("----------------------------------------------------\n");
+ continue;
+ }
+
+ /* Early skip if MST vs. SST does not match. */
+ is_mst = igt_check_output_is_dp_mst(tmp_output);
+ if (mst && !is_mst) {
+ igt_info("Skipping %s: MST requested but it's SST.\n",
+ tmp_output->name);
+ igt_info("----------------------------------------------------\n");
+ continue;
+ } else if (!mst && is_mst) {
+ igt_info("Skipping %s: SST requested but it's MST.\n",
+ tmp_output->name);
+ igt_info("----------------------------------------------------\n");
+ continue;
+ }
+ data->output = tmp_output;
+ igt_info("Running link training test for %s\n",
+ data->output->name);
+ ran_any_output = ran_any_output | run_link_rate_test(data, mst, uhbr);
+ }
+ return ran_any_output;
+}
+
+IGT_TEST_DESCRIPTION("Test to validate link training on SST/MST with "
+ "UHBR/NON_UHBR rates");
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+ data.devid = intel_get_drm_devid(data.drm_fd);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+ /*
+ * Some environments may have environment
+ * variable set to ignore long hpd, disable it for this test
+ */
+ igt_assert_f(igt_ignore_long_hpd(data.drm_fd, false),
+ "Unable to disable ignore long hpd\n");
+ }
+
+ igt_describe("Test we can drive UHBR rates over SST");
+ igt_subtest("uhbr-sst") {
+ igt_require_f(intel_display_ver(data.devid) > 13,
+ "UHBR not supported on platform\n");
+ igt_require_f(test_link_rate(&data, false, true),
+ "Didn't find any SST output with UHBR rates.\n");
+ }
+
+ igt_describe("Test we can drive UHBR rates over MST");
+ igt_subtest("uhbr-mst") {
+ igt_require_f(intel_display_ver(data.devid) > 13,
+ "UHBR not supported on platform\n");
+ igt_require_f(test_link_rate(&data, true, true),
+ "Didn't find any MST output with UHBR rates.\n");
+ }
+
+ igt_describe("Test we can drive NON-UHBR rates over SST");
+ igt_subtest("non-uhbr-sst") {
+ igt_require_f(test_link_rate(&data, false, false),
+ "Didn't find any SST output with NON-UHBR rates.\n");
+ }
+
+ igt_describe("Test we can drive NON-UHBR rates over MST");
+ igt_subtest("non-uhbr-mst") {
+ igt_require_f(test_link_rate(&data, true, false),
+ "Didn't find any MST output with NON-UHBR rates.\n");
+ }
+
+ igt_fixture {
+ igt_reset_connectors();
+ igt_display_fini(&data.display);
+ close(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 4dc512fd7..cff4aab71 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -245,6 +245,7 @@ intel_kms_progs = [
'kms_ccs',
'kms_cdclk',
'kms_dirtyfb',
+ 'kms_dp_link_training',
'kms_dp_linktrain_fallback',
'kms_draw_crc',
'kms_dsc',
@@ -370,6 +371,9 @@ extra_sources = {
'kms_dp_linktrain_fallback': [
join_paths ('intel', 'kms_mst_helper.c'),
join_paths ('intel', 'kms_dsc_helper.c') ],
+ 'kms_dp_link_training': [
+ join_paths ('intel', 'kms_mst_helper.c'),
+ join_paths ('intel', 'kms_joiner_helper.c') ],
'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
'kms_joiner': [ join_paths ('intel', 'kms_joiner_helper.c') ],
'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-02-18 14:45 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-17 6:42 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
2025-02-17 6:42 ` [PATCH i-g-t 1/4] tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform Kunal Joshi
2025-02-18 7:51 ` B, Jeevan
2025-02-17 6:42 ` [PATCH i-g-t 2/4] tests/intel/kms_joiner_helper: add helper for joiner-related functions Kunal Joshi
2025-02-17 6:42 ` [PATCH i-g-t 3/4] lib/igt_kms: add function to set link params Kunal Joshi
2025-02-17 6:42 ` [PATCH i-g-t 4/4] tests/intel/kms_dp_link_training: add tests for UHBR/NON-UHBR over SST/MST Kunal Joshi
2025-02-17 10:08 ` ✓ i915.CI.BAT: success for add test to validate uhbr/non-uhbr over sst/mst (rev4) Patchwork
2025-02-17 10:42 ` ✓ Xe.CI.BAT: " Patchwork
2025-02-17 12:47 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-17 16:02 ` ✗ Xe.CI.Full: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-02-18 15:01 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
2025-02-18 15:01 ` [PATCH i-g-t 4/4] tests/intel/kms_dp_link_training: add tests for UHBR/NON-UHBR over SST/MST Kunal Joshi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox