* [i-g-t V6 0/8] Force joiner support in bigjoiner checks
@ 2024-06-18 8:22 Bhanuprakash Modem
2024-06-18 8:22 ` [i-g-t V6 1/8] lib/igt_kms: Split the bigjoiner check into multiple Bhanuprakash Modem
` (11 more replies)
0 siblings, 12 replies; 22+ messages in thread
From: Bhanuprakash Modem @ 2024-06-18 8:22 UTC (permalink / raw)
To: igt-dev, jeevan.b; +Cc: Bhanuprakash Modem
As we recently introduced the option (through debugfs) to
force the bigjoiner, needs to extend the support in bigjoiner
checks to handle the force joiner.
Bhanuprakash Modem (8):
lib/igt_kms: Split the bigjoiner check into multiple
lib/igt_kms: Update force joiner debugfs check
lib/igt_kms: New helper to check force joiner status
lib/igt_kms: Force joiner support in bigjoiner checks
tests/intel/kms_pm_lpsp: Force joiner support in bigjoiner checks
tests/kms_flip: Force joiner support in bigjoiner checks
tests/kms_setmode: Force joiner support in bigjoiner checks
HAX: Test force joiner on BAT
lib/igt_kms.c | 112 +++++++++++++++++++++++++++++------
lib/igt_kms.h | 3 +-
tests/intel/kms_big_joiner.c | 2 +-
tests/intel/kms_pm_lpsp.c | 3 +
tests/kms_flip.c | 30 ++++++++--
tests/kms_pipe_crc_basic.c | 6 ++
tests/kms_setmode.c | 22 +++++--
7 files changed, 151 insertions(+), 27 deletions(-)
--
2.43.2
^ permalink raw reply [flat|nested] 22+ messages in thread
* [i-g-t V6 1/8] lib/igt_kms: Split the bigjoiner check into multiple
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
@ 2024-06-18 8:22 ` Bhanuprakash Modem
2024-06-24 18:15 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 2/8] lib/igt_kms: Update force joiner debugfs check Bhanuprakash Modem
` (10 subsequent siblings)
11 siblings, 1 reply; 22+ messages in thread
From: Bhanuprakash Modem @ 2024-06-18 8:22 UTC (permalink / raw)
To: igt-dev, jeevan.b; +Cc: Bhanuprakash Modem, Kunal Joshi, Jani Nikula
To increase the readabilty, split the bigjoiner check
into multiple small ones. So that it would be easy to
extend/fix the logic further.
V2: - Use Primary/Seconary instead of Master/Slave (Jani)
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Cc: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 57 ++++++++++++++++++++++++++++++++++++++++++---------
1 file changed, 47 insertions(+), 10 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index af63d13b1..5a1e47183 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6376,6 +6376,7 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
struct {
enum pipe idx;
drmModeModeInfo *mode;
+ igt_output_t *output;
} pipes[IGT_MAX_PIPES];
int max_dotclock;
@@ -6393,11 +6394,12 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
pipes[pipes_in_use].idx = output->pending_pipe;
pipes[pipes_in_use].mode = igt_output_get_mode(output);
+ pipes[pipes_in_use].output = output;
pipes_in_use++;
}
if (!pipes_in_use) {
- igt_debug("We must set at least one output to pipe.\n");
+ igt_info("We must set at least one output to pipe.\n");
return true;
}
@@ -6414,16 +6416,51 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
* - current & previous crtcs are consecutive
*/
for (i = 0; i < pipes_in_use; i++) {
- if ((igt_bigjoiner_possible(pipes[i].mode, max_dotclock) &&
- ((pipes[i].idx >= (total_pipes - 1)) ||
- (!display->pipes[pipes[i].idx + 1].enabled) ||
- ((i < (pipes_in_use - 1)) && (abs(pipes[i + 1].idx - pipes[i].idx) <= 1)))) ||
- ((i > 0) && igt_bigjoiner_possible(pipes[i - 1].mode, max_dotclock) &&
- ((!display->pipes[pipes[i - 1].idx + 1].enabled) ||
- (abs(pipes[i].idx - pipes[i - 1].idx) <= 1)))) {
- igt_debug("Pipe/Output combo is not possible with selected mode(s).\n");
+ if (igt_bigjoiner_possible(pipes[i].mode, max_dotclock)) {
+ igt_info("pipe-%s-%s: (Max dot-clock: %d KHz)",
+ kmstest_pipe_name(pipes[i].idx),
+ igt_output_name(pipes[i].output),
+ max_dotclock);
+ kmstest_dump_mode(pipes[i].mode);
+
+ if (pipes[i].idx >= (total_pipes - 1)) {
+ igt_info("pipe-%s: Last pipe couldn't be used as a Bigjoiner Primary.\n",
+ kmstest_pipe_name(pipes[i].idx));
+ return false;
+ }
- return false;
+ if (!display->pipes[pipes[i].idx + 1].enabled) {
+ igt_info("Consecutive pipe-%s: Fused-off, couldn't be used as a Bigjoiner Secondary.\n",
+ kmstest_pipe_name(display->pipes[pipes[i].idx + 1].pipe));
+ return false;
+ }
+
+ if ((i < (pipes_in_use - 1)) &&
+ (abs(pipes[i + 1].idx - pipes[i].idx) <= 1)) {
+ igt_info("Consecutive pipe-%s: Not free to use it as a Bigjoiner Secondary.\n",
+ kmstest_pipe_name(pipes[i + 1].idx));
+ return false;
+ }
+ }
+
+ if ((i > 0) && igt_bigjoiner_possible(pipes[i - 1].mode, max_dotclock)) {
+ igt_info("pipe-%s-%s: (Max dot-clock: %d KHz)",
+ kmstest_pipe_name(pipes[i - 1].idx),
+ igt_output_name(pipes[i - 1].output),
+ max_dotclock);
+ kmstest_dump_mode(pipes[i - 1].mode);
+
+ if (!display->pipes[pipes[i - 1].idx + 1].enabled) {
+ igt_info("Consecutive pipe-%s: Fused-off, couldn't be used as a Bigjoiner Secondary.\n",
+ kmstest_pipe_name(display->pipes[pipes[i - 1].idx + 1].pipe));
+ return false;
+ }
+
+ if (abs(pipes[i].idx - pipes[i - 1].idx) <= 1) {
+ igt_info("Consecutive pipe-%s: Not free to use it as a Bigjoiner Secondary.\n",
+ kmstest_pipe_name(pipes[i].idx));
+ return false;
+ }
}
}
--
2.43.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [i-g-t V6 2/8] lib/igt_kms: Update force joiner debugfs check
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
2024-06-18 8:22 ` [i-g-t V6 1/8] lib/igt_kms: Split the bigjoiner check into multiple Bhanuprakash Modem
@ 2024-06-18 8:22 ` Bhanuprakash Modem
2024-06-18 8:22 ` [i-g-t V6 3/8] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
` (9 subsequent siblings)
11 siblings, 0 replies; 22+ messages in thread
From: Bhanuprakash Modem @ 2024-06-18 8:22 UTC (permalink / raw)
To: igt-dev, jeevan.b; +Cc: Bhanuprakash Modem, Kunal Joshi
As we are using only connector name in the API, no need to
pass the igt_output struct, this patch will update the helper
accordingly.
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Jeevan B <jeevan.b@intel.com>
---
lib/igt_kms.c | 14 +++++++++-----
lib/igt_kms.h | 2 +-
tests/intel/kms_big_joiner.c | 2 +-
3 files changed, 11 insertions(+), 7 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 5a1e47183..c0aa92eb5 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6325,15 +6325,17 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
}
/**
+ * igt_has_force_joiner_debugfs
+ * @drmfd: A drm file descriptor
+ * @conn_name: Name of the connector
+ *
* Checks if the force big joiner debugfs is available
* for a specific connector.
*
- * @drmfd: file descriptor of the DRM device.
- * @output: output to check.
* Returns:
* true if the debugfs is available, false otherwise.
*/
-bool igt_has_force_joiner_debugfs(int drmfd, igt_output_t *output)
+bool igt_has_force_joiner_debugfs(int drmfd, char *conn_name)
{
char buf[512];
int debugfs_fd, ret;
@@ -6346,12 +6348,14 @@ bool igt_has_force_joiner_debugfs(int drmfd, igt_output_t *output)
if (intel_display_ver(intel_get_drm_devid(drmfd)) < 13)
return false;
- igt_assert_f(output->name, "Connector name cannot be NULL\n");
- debugfs_fd = igt_debugfs_connector_dir(drmfd, output->name, O_RDONLY);
+ igt_assert_f(conn_name, "Connector name cannot be NULL\n");
+ debugfs_fd = igt_debugfs_connector_dir(drmfd, conn_name, O_RDONLY);
if (debugfs_fd < 0)
return false;
+
ret = igt_debugfs_simple_read(debugfs_fd, "i915_bigjoiner_force_enable", buf, sizeof(buf));
close(debugfs_fd);
+
return ret >= 0;
}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 01604dac9..979cf1300 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1215,7 +1215,7 @@ int igt_get_max_dotclock(int fd);
bool igt_bigjoiner_possible(drmModeModeInfo *mode, int max_dotclock);
bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
int max_dotclock, drmModeModeInfo *mode);
-bool igt_has_force_joiner_debugfs(int drmfd, igt_output_t *output);
+bool igt_has_force_joiner_debugfs(int drmfd, char *conn_name);
bool igt_check_bigjoiner_support(igt_display_t *display);
bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode);
bool intel_pipe_output_combo_valid(igt_display_t *display);
diff --git a/tests/intel/kms_big_joiner.c b/tests/intel/kms_big_joiner.c
index 4979cac06..7c370bc60 100644
--- a/tests/intel/kms_big_joiner.c
+++ b/tests/intel/kms_big_joiner.c
@@ -323,7 +323,7 @@ igt_main
data.big_joiner_output[data.big_joiner_output_count++] = output;
igt_output_override_mode(output, &mode);
} else {
- if (igt_has_force_joiner_debugfs(data.drm_fd, output)) {
+ if (igt_has_force_joiner_debugfs(data.drm_fd, output->name)) {
force_joiner_supported = true;
data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
}
--
2.43.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [i-g-t V6 3/8] lib/igt_kms: New helper to check force joiner status
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
2024-06-18 8:22 ` [i-g-t V6 1/8] lib/igt_kms: Split the bigjoiner check into multiple Bhanuprakash Modem
2024-06-18 8:22 ` [i-g-t V6 2/8] lib/igt_kms: Update force joiner debugfs check Bhanuprakash Modem
@ 2024-06-18 8:22 ` Bhanuprakash Modem
2024-06-27 6:50 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 4/8] lib/igt_kms: Force joiner support in bigjoiner checks Bhanuprakash Modem
` (8 subsequent siblings)
11 siblings, 1 reply; 22+ messages in thread
From: Bhanuprakash Modem @ 2024-06-18 8:22 UTC (permalink / raw)
To: igt-dev, jeevan.b; +Cc: Bhanuprakash Modem, Kunal Joshi
Add a new function to check the force joiner status
on selected connecter, so that it would be helpful to
check the force joiner status from other places too.
V2: - Add few debug prints
V3: - Rebase
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 34 ++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 1 +
2 files changed, 35 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index c0aa92eb5..9fdfadde1 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6359,6 +6359,40 @@ bool igt_has_force_joiner_debugfs(int drmfd, char *conn_name)
return ret >= 0;
}
+/**
+ * igt_check_force_joiner_status
+ * @drmfd: file descriptor of the DRM device.
+ * @connector_name: connector to check.
+ *
+ * Checks if the force big joiner is enabled.
+ *
+ * Returns: True if the force big joiner is enabled, False otherwise.
+ */
+bool igt_check_force_joiner_status(int drmfd, char *connector_name)
+{
+ char buf[512];
+ int debugfs_fd, ret;
+
+ if (!connector_name)
+ return false;
+
+ debugfs_fd = igt_debugfs_connector_dir(drmfd, connector_name, O_RDONLY);
+ if (debugfs_fd < 0) {
+ igt_debug("Could not open debugfs for connector: %s\n", connector_name);
+ return false;
+ }
+
+ ret = igt_debugfs_simple_read(debugfs_fd, "i915_bigjoiner_force_enable", buf, sizeof(buf));
+ close(debugfs_fd);
+
+ if (ret < 0) {
+ igt_debug("Could not read i915_bigjoiner_force_enable for connector: %s\n", connector_name);
+ return false;
+ }
+
+ return strstr(buf, "Y");
+}
+
/**
* igt_check_bigjoiner_support:
* @display: a pointer to an #igt_display_t structure
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 979cf1300..501d48763 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1216,6 +1216,7 @@ bool igt_bigjoiner_possible(drmModeModeInfo *mode, int max_dotclock);
bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
int max_dotclock, drmModeModeInfo *mode);
bool igt_has_force_joiner_debugfs(int drmfd, char *conn_name);
+bool igt_check_force_joiner_status(int drmfd, char *connector_name);
bool igt_check_bigjoiner_support(igt_display_t *display);
bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode);
bool intel_pipe_output_combo_valid(igt_display_t *display);
--
2.43.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [i-g-t V6 4/8] lib/igt_kms: Force joiner support in bigjoiner checks
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (2 preceding siblings ...)
2024-06-18 8:22 ` [i-g-t V6 3/8] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
@ 2024-06-18 8:22 ` Bhanuprakash Modem
2024-06-27 6:54 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 5/8] tests/intel/kms_pm_lpsp: " Bhanuprakash Modem
` (7 subsequent siblings)
11 siblings, 1 reply; 22+ messages in thread
From: Bhanuprakash Modem @ 2024-06-18 8:22 UTC (permalink / raw)
To: igt-dev, jeevan.b; +Cc: Bhanuprakash Modem, Kunal Joshi
As we recently introduced the option (through debugfs) to
force the bigjoiner, needs to extend the support in bigjoiner
checks to handle the force joiner.
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
lib/igt_kms.c | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 9fdfadde1..d565e79ce 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6415,6 +6415,7 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
enum pipe idx;
drmModeModeInfo *mode;
igt_output_t *output;
+ bool force_joiner;
} pipes[IGT_MAX_PIPES];
int max_dotclock;
@@ -6433,6 +6434,7 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
pipes[pipes_in_use].idx = output->pending_pipe;
pipes[pipes_in_use].mode = igt_output_get_mode(output);
pipes[pipes_in_use].output = output;
+ pipes[pipes_in_use].force_joiner = igt_check_force_joiner_status(display->drm_fd, output->name);
pipes_in_use++;
}
@@ -6444,21 +6446,22 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
max_dotclock = igt_get_max_dotclock(display->drm_fd);
/*
- * if mode resolution > 5K (or) mode.clock > max dot-clock, then ignore
+ * if force joiner (or) mode resolution > 5K (or) mode.clock > max dot-clock,
+ * then ignore
* - if the consecutive pipe is not available
* - last crtc in single/multi-connector config
* - consecutive crtcs in multi-connector config
*
* in multi-connector config ignore if
- * - previous crtc (mode resolution > 5K or mode.clock > max dot-clock) and
+ * - previous crtc (force joiner or mode resolution > 5K or mode.clock > max dot-clock) and
* - current & previous crtcs are consecutive
*/
for (i = 0; i < pipes_in_use; i++) {
- if (igt_bigjoiner_possible(pipes[i].mode, max_dotclock)) {
- igt_info("pipe-%s-%s: (Max dot-clock: %d KHz)",
+ if (pipes[i].force_joiner || igt_bigjoiner_possible(pipes[i].mode, max_dotclock)) {
+ igt_info("pipe-%s-%s: (Max dot-clock: %d KHz), force joiner: %s\n",
kmstest_pipe_name(pipes[i].idx),
igt_output_name(pipes[i].output),
- max_dotclock);
+ max_dotclock, pipes[i].force_joiner ? "Yes" : "No");
kmstest_dump_mode(pipes[i].mode);
if (pipes[i].idx >= (total_pipes - 1)) {
@@ -6481,11 +6484,11 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
}
}
- if ((i > 0) && igt_bigjoiner_possible(pipes[i - 1].mode, max_dotclock)) {
- igt_info("pipe-%s-%s: (Max dot-clock: %d KHz)",
+ if ((i > 0) && (pipes[i - 1].force_joiner || igt_bigjoiner_possible(pipes[i - 1].mode, max_dotclock))) {
+ igt_info("pipe-%s-%s: (Max dot-clock: %d KHz), force joiner: %s\n",
kmstest_pipe_name(pipes[i - 1].idx),
igt_output_name(pipes[i - 1].output),
- max_dotclock);
+ max_dotclock, pipes[i - 1].force_joiner ? "Yes" : "No");
kmstest_dump_mode(pipes[i - 1].mode);
if (!display->pipes[pipes[i - 1].idx + 1].enabled) {
--
2.43.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [i-g-t V6 5/8] tests/intel/kms_pm_lpsp: Force joiner support in bigjoiner checks
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (3 preceding siblings ...)
2024-06-18 8:22 ` [i-g-t V6 4/8] lib/igt_kms: Force joiner support in bigjoiner checks Bhanuprakash Modem
@ 2024-06-18 8:22 ` Bhanuprakash Modem
2024-06-27 6:58 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 6/8] tests/kms_flip: " Bhanuprakash Modem
` (6 subsequent siblings)
11 siblings, 1 reply; 22+ messages in thread
From: Bhanuprakash Modem @ 2024-06-18 8:22 UTC (permalink / raw)
To: igt-dev, jeevan.b; +Cc: Bhanuprakash Modem, Kunal Joshi
As we recently introduced the option (through debugfs) to
force the bigjoiner, needs to extend the support in bigjoiner
checks to handle the force joiner.
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/intel/kms_pm_lpsp.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tests/intel/kms_pm_lpsp.c b/tests/intel/kms_pm_lpsp.c
index a76b423f4..f9ac508fb 100644
--- a/tests/intel/kms_pm_lpsp.c
+++ b/tests/intel/kms_pm_lpsp.c
@@ -163,6 +163,9 @@ static bool test_constraint(data_t *data)
mode = igt_output_get_mode(data->output);
/* For LPSP avoid Bigjoiner. */
+ if (igt_check_force_joiner_status(data->drm_fd, data->output->name))
+ return false;
+
if (igt_bigjoiner_possible(mode, max_dotclock)) {
for_each_connector_mode(data->output) {
mode = &data->output->config.connector->modes[j__];
--
2.43.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [i-g-t V6 6/8] tests/kms_flip: Force joiner support in bigjoiner checks
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (4 preceding siblings ...)
2024-06-18 8:22 ` [i-g-t V6 5/8] tests/intel/kms_pm_lpsp: " Bhanuprakash Modem
@ 2024-06-18 8:22 ` Bhanuprakash Modem
2024-06-27 7:04 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 7/8] tests/kms_setmode: " Bhanuprakash Modem
` (5 subsequent siblings)
11 siblings, 1 reply; 22+ messages in thread
From: Bhanuprakash Modem @ 2024-06-18 8:22 UTC (permalink / raw)
To: igt-dev, jeevan.b; +Cc: Bhanuprakash Modem, Kunal Joshi
As we recently introduced the option (through debugfs) to
force the bigjoiner, needs to extend the support in bigjoiner
checks to handle the force joiner.
V2: - Fix connector name
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_flip.c | 23 +++++++++++++++++++----
1 file changed, 19 insertions(+), 4 deletions(-)
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index d352ee14c..cbabbe74f 100755
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -1730,22 +1730,37 @@ static void run_test_on_crtc_set(struct test_output *o, int *crtc_idxs,
/*
* Handle BW limitations on intel hardware:
*
- * if mode resolution > 5K (or) mode clock > max_dotclock, then ignore
+ * if force joiner (or) mode resolution > 5K (or) mode clock > max_dotclock, then ignore
* - last crtc in single/multi-connector config
* - consecutive crtcs in multi-connector config
*
* in multi-connector config ignore if
- * - previous crtc (mode resolution > 5K or mode clock > max_dotclock) and
+ * - previous crtc (force joiner or mode resolution > 5K or mode clock > max_dotclock) and
* - current & previous crtcs are consecutive
*/
if (!is_intel_device(drm_fd))
goto test;
for (i = 0; i < crtc_count; i++) {
- if ((igt_bigjoiner_possible(&o->kmode[i], max_dotclock) &&
+ char conn_name[24], prev_conn_name[24];
+
+ snprintf(conn_name, sizeof(conn_name),
+ "%s-%d",
+ kmstest_connector_type_str(o->kconnector[i]->connector_type),
+ o->kconnector[i]->connector_type_id);
+
+ if (i > 0)
+ snprintf(prev_conn_name, sizeof(prev_conn_name),
+ "%s-%d",
+ kmstest_connector_type_str(o->kconnector[i - 1]->connector_type),
+ o->kconnector[i - 1]->connector_type_id);
+
+ if (((igt_check_force_joiner_status(drm_fd, conn_name) ||
+ igt_bigjoiner_possible(&o->kmode[i], max_dotclock)) &&
((crtc_idxs[i] >= (total_crtcs - 1)) ||
((i < (crtc_count - 1)) && (abs(crtc_idxs[i + 1] - crtc_idxs[i]) <= 1)))) ||
- ((i > 0) && igt_bigjoiner_possible(&o->kmode[i - 1], max_dotclock) &&
+ ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) ||
+ igt_bigjoiner_possible(&o->kmode[i - 1], max_dotclock)) &&
(abs(crtc_idxs[i] - crtc_idxs[i - 1]) <= 1))) {
igt_debug("Combo: %s is not possible with selected mode(s).\n", test_name);
--
2.43.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [i-g-t V6 7/8] tests/kms_setmode: Force joiner support in bigjoiner checks
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (5 preceding siblings ...)
2024-06-18 8:22 ` [i-g-t V6 6/8] tests/kms_flip: " Bhanuprakash Modem
@ 2024-06-18 8:22 ` Bhanuprakash Modem
2024-06-27 7:05 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 8/8] HAX: Test force joiner on BAT Bhanuprakash Modem
` (4 subsequent siblings)
11 siblings, 1 reply; 22+ messages in thread
From: Bhanuprakash Modem @ 2024-06-18 8:22 UTC (permalink / raw)
To: igt-dev, jeevan.b; +Cc: Bhanuprakash Modem, Kunal Joshi
As we recently introduced the option (through debugfs) to
force the bigjoiner, needs to extend the support in bigjoiner
checks to handle the force joiner.
V2: - Fix connector name
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_setmode.c | 22 ++++++++++++++++++----
1 file changed, 18 insertions(+), 4 deletions(-)
diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c
index 490bfd3dd..95c5bfadc 100644
--- a/tests/kms_setmode.c
+++ b/tests/kms_setmode.c
@@ -709,24 +709,38 @@ static void test_one_combination(const struct test_config *tconf,
for (i = 0; i < crtc_count; i++) {
struct crtc_config *crtc = &crtcs[i];
+ char conn_name[24], prev_conn_name[24];
+
+ snprintf(conn_name, sizeof(conn_name),
+ "%s-%d",
+ kmstest_connector_type_str(crtcs[i].cconfs->connector->connector_type),
+ crtcs[i].cconfs->connector->connector_type_id);
+
+ if (i > 0)
+ snprintf(prev_conn_name, sizeof(prev_conn_name),
+ "%s-%d",
+ kmstest_connector_type_str(crtcs[i - 1].cconfs->connector->connector_type),
+ crtcs[i - 1].cconfs->connector->connector_type_id);
/*
* Handle BW limitations on intel hardware:
*
- * if mode resolution > 5K (or) mode clock > max_dotclock,
+ * if force joiner (or) mode resolution > 5K (or) mode clock > max_dotclock,
* then ignore
* - last crtc in single/multi-connector config
* - consecutive crtcs in multi-connector config
*
* in multi-connector config ignore if
- * - previous crtc (mode resolution > 5K (or)
+ * - previous crtc (force joiner (or) mode resolution > 5K (or)
* mode clock > max_dotclock) and
* - current & previous crtcs are consecutive
*/
- if ((igt_bigjoiner_possible(&crtc->mode, max_dotclock) &&
+ if (((igt_check_force_joiner_status(drm_fd, conn_name) ||
+ igt_bigjoiner_possible(&crtc->mode, max_dotclock)) &&
((crtc->crtc_idx >= (tconf->resources->count_crtcs - 1)) ||
((i < (crtc_count - 1)) && (abs(crtcs[i + 1].crtc_idx - crtc->crtc_idx) <= 1)))) ||
- ((i > 0) && igt_bigjoiner_possible(&crtc[i - 1].mode, max_dotclock) &&
+ ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) ||
+ igt_bigjoiner_possible(&crtc[i - 1].mode, max_dotclock)) &&
(abs(crtc->crtc_idx - crtcs[i - 1].crtc_idx) <= 1))) {
igt_info("Combo: %s is not possible with selected mode(s).\n", test_name);
goto out;
--
2.43.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [i-g-t V6 8/8] HAX: Test force joiner on BAT
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (6 preceding siblings ...)
2024-06-18 8:22 ` [i-g-t V6 7/8] tests/kms_setmode: " Bhanuprakash Modem
@ 2024-06-18 8:22 ` Bhanuprakash Modem
2024-06-18 13:54 ` ✓ CI.xeBAT: success for Force joiner support in bigjoiner checks (rev8) Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 22+ messages in thread
From: Bhanuprakash Modem @ 2024-06-18 8:22 UTC (permalink / raw)
To: igt-dev, jeevan.b; +Cc: Bhanuprakash Modem
Expectation: All pipe-D tests should skip.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_flip.c | 9 ++++++++-
tests/kms_pipe_crc_basic.c | 6 ++++++
2 files changed, 14 insertions(+), 1 deletion(-)
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index cbabbe74f..326fd7130 100755
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -1748,12 +1748,17 @@ static void run_test_on_crtc_set(struct test_output *o, int *crtc_idxs,
"%s-%d",
kmstest_connector_type_str(o->kconnector[i]->connector_type),
o->kconnector[i]->connector_type_id);
+ if (igt_has_force_joiner_debugfs(drm_fd, conn_name))
+ kmstest_force_connector_bigjoiner(drm_fd, o->kconnector[i]);
- if (i > 0)
+ if (i > 0) {
snprintf(prev_conn_name, sizeof(prev_conn_name),
"%s-%d",
kmstest_connector_type_str(o->kconnector[i - 1]->connector_type),
o->kconnector[i - 1]->connector_type_id);
+ if (igt_has_force_joiner_debugfs(drm_fd, prev_conn_name))
+ kmstest_force_connector_bigjoiner(drm_fd, o->kconnector[i - 1]);
+ }
if (((igt_check_force_joiner_status(drm_fd, conn_name) ||
igt_bigjoiner_possible(&o->kmode[i], max_dotclock)) &&
@@ -2124,6 +2129,8 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
igt_stop_signal_helper();
igt_fixture {
+ igt_reset_connectors();
+
igt_display_fini(&display);
drm_close_driver(drm_fd);
}
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index 0c19745bc..e5e5264b5 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -411,6 +411,11 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
data.debugfs = igt_debugfs_dir(data.drm_fd);
+ for_each_connected_output(&data.display, output) {
+ if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
+ kmstest_force_connector_bigjoiner(data.drm_fd, output->config.connector);
+ }
+
/* Get active pipes. */
for_each_pipe(&data.display, pipe)
active_pipes[last_pipe++] = pipe;
@@ -499,6 +504,7 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
}
igt_fixture {
+ igt_reset_connectors();
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
}
--
2.43.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* ✓ CI.xeBAT: success for Force joiner support in bigjoiner checks (rev8)
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (7 preceding siblings ...)
2024-06-18 8:22 ` [i-g-t V6 8/8] HAX: Test force joiner on BAT Bhanuprakash Modem
@ 2024-06-18 13:54 ` Patchwork
2024-06-18 13:58 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2024-06-18 13:54 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1512 bytes --]
== Series Details ==
Series: Force joiner support in bigjoiner checks (rev8)
URL : https://patchwork.freedesktop.org/series/132557/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7891_BAT -> XEIGTPW_11270_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11270_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-3:
- bat-dg2-oem2: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#1033]) +5 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-3.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
Build changes
-------------
* IGT: IGT_7891 -> IGTPW_11270
IGTPW_11270: 11270
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1490-5a093f17293ae50283f19372263a7595ed50bc34: 5a093f17293ae50283f19372263a7595ed50bc34
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/index.html
[-- Attachment #2: Type: text/html, Size: 2074 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✓ Fi.CI.BAT: success for Force joiner support in bigjoiner checks (rev8)
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (8 preceding siblings ...)
2024-06-18 13:54 ` ✓ CI.xeBAT: success for Force joiner support in bigjoiner checks (rev8) Patchwork
@ 2024-06-18 13:58 ` Patchwork
2024-06-18 21:35 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-06-19 2:24 ` ✗ CI.xeFULL: " Patchwork
11 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2024-06-18 13:58 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10347 bytes --]
== Series Details ==
Series: Force joiner support in bigjoiner checks (rev8)
URL : https://patchwork.freedesktop.org/series/132557/
State : success
== Summary ==
CI Bug Log - changes from IGT_7891 -> IGTPW_11270
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/index.html
Participating hosts (41 -> 39)
------------------------------
Additional (3): fi-cfl-8109u bat-mtlp-8 fi-elk-e7500
Missing (5): bat-kbl-2 fi-bsw-n3050 fi-snb-2520m bat-dg2-11 bat-jsl-1
Known issues
------------
Here are the changes found in IGTPW_11270 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-cfl-8109u: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic@lmem0:
- bat-atsm-1: [PASS][3] -> [FAIL][4] ([i915#10378])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-atsm-1/igt@gem_lmem_swapping@basic@lmem0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-atsm-1/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- fi-cfl-8109u: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html
- bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@i915_module_load@load:
- bat-dg2-9: [PASS][10] -> [DMESG-WARN][11] ([i915#10014])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-dg2-9/igt@i915_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-dg2-9/igt@i915_module_load@load.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#5190])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#4212]) +8 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#4213]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#3840] / [i915#9159])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][17]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#5274])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- fi-cfl-8109u: NOTRUN -> [SKIP][19] +11 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-elk-e7500: NOTRUN -> [SKIP][20] +24 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/fi-elk-e7500/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-mtlp-8: NOTRUN -> [SKIP][21] ([i915#4077] / [i915#9688])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#8809])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][23] ([i915#3708] / [i915#4077]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][24] ([i915#3708]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- bat-mtlp-8: NOTRUN -> [SKIP][25] ([i915#10216] / [i915#3708])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- {bat-mtlp-9}: [FAIL][26] -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@hangcheck:
- bat-atsm-1: [INCOMPLETE][28] -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-atsm-1/igt@i915_selftest@live@hangcheck.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-atsm-1/igt@i915_selftest@live@hangcheck.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
- {bat-mtlp-9}: [DMESG-WARN][30] ([i915#11009]) -> [PASS][31] +1 other test pass
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6:
- {bat-mtlp-9}: [DMESG-FAIL][32] ([i915#11009]) -> [PASS][33]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6.html
* igt@kms_flip@basic-plain-flip@c-dp6:
- {bat-mtlp-9}: [FAIL][34] ([i915#6121]) -> [PASS][35]
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/bat-mtlp-9/igt@kms_flip@basic-plain-flip@c-dp6.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/bat-mtlp-9/igt@kms_flip@basic-plain-flip@c-dp6.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10014]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10014
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580
[i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7891 -> IGTPW_11270
CI-20190529: 20190529
CI_DRM_14963: 5a093f17293ae50283f19372263a7595ed50bc34 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11270: 11270
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/index.html
[-- Attachment #2: Type: text/html, Size: 11949 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ Fi.CI.IGT: failure for Force joiner support in bigjoiner checks (rev8)
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (9 preceding siblings ...)
2024-06-18 13:58 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-06-18 21:35 ` Patchwork
2024-06-19 2:24 ` ✗ CI.xeFULL: " Patchwork
11 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2024-06-18 21:35 UTC (permalink / raw)
To: Modem, Bhanuprakash; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 90003 bytes --]
== Series Details ==
Series: Force joiner support in bigjoiner checks (rev8)
URL : https://patchwork.freedesktop.org/series/132557/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7891_full -> IGTPW_11270_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11270_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11270_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_11270/index.html
Participating hosts (9 -> 10)
------------------------------
Additional (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11270_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_interruptible@universal-setplane-primary@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-2/igt@kms_atomic_interruptible@universal-setplane-primary@pipe-a-hdmi-a-2.html
* igt@kms_busy@extended-modeset-hang-newfb@pipe-b:
- shard-snb: [PASS][2] -> [ABORT][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-snb2/igt@kms_busy@extended-modeset-hang-newfb@pipe-b.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-snb5/igt@kms_busy@extended-modeset-hang-newfb@pipe-b.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][4] +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg1: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_fbcon_fbt@fbc:
- shard-snb: [PASS][7] -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-snb7/igt@kms_fbcon_fbt@fbc.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-snb6/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
- shard-snb: [PASS][9] -> [DMESG-WARN][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
- shard-mtlp: [PASS][11] -> [FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][13]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-a-dp-4.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][14] -> [ABORT][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-tglu-9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@perf@polling@0-rcs0:
- shard-rkl: [PASS][16] -> [FAIL][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-5/igt@perf@polling@0-rcs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-6/igt@perf@polling@0-rcs0.html
#### Warnings ####
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg1: [FAIL][18] ([i915#10386]) -> [INCOMPLETE][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg1-18/igt@gem_exec_capture@capture@vecs0-lmem0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-18/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][20] ([i915#3359]) -> [SKIP][21] +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: [SKIP][22] ([i915#3359]) -> [SKIP][23] +8 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: [SKIP][24] ([i915#3359]) -> [SKIP][25] +5 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x170.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2: [SKIP][26] ([i915#3359]) -> [SKIP][27] +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: [SKIP][28] ([i915#4235]) -> [SKIP][29] +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html
New tests
---------
New tests have been introduced between IGT_7891_full and IGTPW_11270_full:
### New IGT tests (10) ###
* igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.33] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_properties@plane-properties-atomic@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.61] s
* igt@kms_properties@plane-properties-atomic@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@kms_properties@plane-properties-atomic@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_properties@plane-properties-atomic@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@kms_properties@plane-properties-atomic@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_properties@plane-properties-atomic@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
Known issues
------------
Here are the changes found in IGTPW_11270_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#6230])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-13/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#8411])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#8411])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][33] ([i915#10380])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-8/igt@api_intel_bb@render-ccs.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#11078])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-18/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy@bcs0:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#8414]) +12 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@drm_fdinfo@busy@bcs0.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#8414]) +8 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-7/igt@drm_fdinfo@busy@rcs0.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#8414]) +19 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-14/igt@drm_fdinfo@isolation@vecs0.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#3555] / [i915#9323])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3555] / [i915#9323])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@gem_ccs@block-multicopy-inplace.html
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#3555] / [i915#9323])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#9323])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#9323]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#7697])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_compute@compute-square:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#9310])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@gem_compute@compute-square.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#8555]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#280])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_balancer@hog:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4812])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#8555]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-3/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#4525])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-1/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#6334]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#6334])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#6344])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-smem:
- shard-mtlp: NOTRUN -> [FAIL][53] ([i915#10386])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-4/igt@gem_exec_capture@capture@vecs0-smem.html
* igt@gem_exec_endless@dispatch@vcs0:
- shard-dg1: [PASS][54] -> [TIMEOUT][55] ([i915#3778])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg1-15/igt@gem_exec_endless@dispatch@vcs0.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@gem_exec_endless@dispatch@vcs0.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: NOTRUN -> [FAIL][56] ([i915#2842])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3539] / [i915#4852]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-7/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [PASS][58] -> [FAIL][59] ([i915#2842])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-3/igt@gem_exec_fair@basic-none-share@rcs0.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglu: NOTRUN -> [FAIL][60] ([i915#2842])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-3/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: NOTRUN -> [FAIL][61] ([i915#2842]) +1 other test fail
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4812]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3539] / [i915#4852]) +7 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#5107])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#5107])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3281]) +13 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3281]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3281]) +12 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3281]) +10 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4860])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4860]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4860]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#2190])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4613])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-8/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random@lmem0:
- shard-dg2: [PASS][75] -> [FAIL][76] ([i915#10378]) +2 other tests fail
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-7/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4613])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@gem_lmem_swapping@parallel-random.html
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#4613])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-6/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][79] ([i915#4613]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-glk8/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][80] ([i915#10378])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#284])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/igt@gem_media_vme.html
* igt@gem_mmap@big-bo:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4083]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-4/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@fault-concurrent:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4077]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@gem_mmap_gtt@fault-concurrent.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4077]) +9 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-13/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@hang:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4077]) +10 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@gem_mmap_gtt@hang.html
* igt@gem_mmap_wc@bad-object:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4083]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4083]) +6 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-8/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3282]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#3282]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3282]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-13/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][91] ([i915#2658])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-glk3/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#4270])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-6/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4270]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-6/igt@gem_pxp@reject-modify-context-protection-off-1.html
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#4270]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-1/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4270]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#4270])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#3282]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-8/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8428]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-3/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#5190] / [i915#8428]) +4 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_softpin@evict-single-offset:
- shard-dg2: [PASS][100] -> [INCOMPLETE][101] ([i915#10652])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-1/igt@gem_softpin@evict-single-offset.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-5/igt@gem_softpin@evict-single-offset.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#4885])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4079]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@gem_tiled_pread_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4079]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-10/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#3297]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-3/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#3297] / [i915#3323])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-8/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#3297]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#3297]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#3281] / [i915#3297])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@gem_userptr_blits@relocations.html
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#3281] / [i915#3297])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#3297]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#2527]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#2527] / [i915#2856])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-7/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#2856]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-8/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#2856]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-5/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#2527]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-glk: NOTRUN -> [SKIP][118] ([i915#6227])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-glk1/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#6227])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][120] ([i915#9820])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][121] -> [ABORT][122] ([i915#10131] / [i915#10887] / [i915#9820])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [ABORT][123] ([i915#9820])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][124] ([i915#8346])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-7/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#8925])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-7/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#8925]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#4387])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-1/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#5723])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-mtlp: NOTRUN -> [DMESG-WARN][129] ([i915#9311])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#4212])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-3/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: NOTRUN -> [SKIP][131] ([i915#8709]) +11 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-3/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:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6228])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-8/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#9531])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-18/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][134] ([i915#1769])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#1769] / [i915#3555]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#5286]) +6 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5286]) +8 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#5286]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#3638]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#5190]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5190]) +10 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6187])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#6095]) +91 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +19 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#10278])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][149] +272 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-glk8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6095]) +11 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#10278])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-14/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#6095]) +77 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/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-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#6095]) +163 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#10278])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#10278])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3742])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-2/igt@kms_cdclk@plane-scaling.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#3742]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#4087]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#7828]) +6 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-2/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-negative:
- shard-mtlp: NOTRUN -> [SKIP][160] +8 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#7828]) +7 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#7828]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#7828]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#7828]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#7116] / [i915#9424])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#6944] / [i915#9424])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#3299]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3299])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#3299])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-13/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][170] ([i915#7173])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6944] / [i915#9424]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#9424])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#7118])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-2/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#7116])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#7118] / [i915#9424])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8814]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#3555]) +11 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3359])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3555]) +10 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#4103] / [i915#4213]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#4103]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#4103] / [i915#4213]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#5354]) +40 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][184] +17 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#9809]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#4103]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#9833])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3804])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#8812])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8812]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-10/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#3840]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#3840] / [i915#9053])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#4854])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-7/igt@kms_feature_discovery@chamelium.html
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#4854])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#1839])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#9337])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-18/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#9934]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#8381])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3637]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][204] +18 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#3637]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1:
- shard-snb: [PASS][206] -> [FAIL][207] ([i915#2122])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-snb4/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8810])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#2672]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672]) +4 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#2672])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/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-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#2672]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8708]) +5 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [FAIL][215] ([i915#6880])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-snb: [PASS][216] -> [SKIP][217] +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#8708]) +17 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#1825]) +15 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][220] +49 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +21 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#9766])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#10070])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#8708]) +16 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#3023]) +17 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#3458]) +19 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#1825]) +20 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][228] +31 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#6118])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8228])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@kms_hdr@static-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8228])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8228])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#6301])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-8/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#6301])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][236] ([i915#10647]) +1 other test fail
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#10226] / [i915#3582]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3582])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-5/igt@kms_plane_lowres@tiling-x@pipe-d-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#8821])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#8806])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-3/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8806])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][242] ([i915#8292])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#9423]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#9423]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#9423]) +5 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#5235] / [i915#9423]) +19 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#5235]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#5235])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#5235]) +5 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#5354])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][251] -> [FAIL][252] ([i915#9295])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][253] -> [SKIP][254] ([i915#4281])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#3828])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@kms_pm_dc@deep-pkgc.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#3361])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#8430])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#9519]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#9519])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][260] -> [SKIP][261] ([i915#9519]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][262] -> [SKIP][263] ([i915#9519]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#6524])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#9808]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-3/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#9683])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#9683])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-2/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#9683])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#9683])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +19 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-sprite-blt:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#1072] / [i915#9732]) +17 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-2/igt@kms_psr@fbc-psr-sprite-blt.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#9688]) +6 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-7/igt@kms_psr@fbc-psr-sprite-plane-onoff@edp-1.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +15 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#9732]) +6 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-3/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#9685])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#9685]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#9685])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#4235]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#5289]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#3555]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#3555]) +2 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-2/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8809]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [PASS][284] -> [FAIL][285] ([i915#9196]) +1 other test fail
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][286] -> [INCOMPLETE][287] ([i915#1982] / [i915#9508])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-tglu-9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8808])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#9906])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#9906])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#9906])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#2437] / [i915#9412])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#2437] / [i915#9412])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#2437] / [i915#9412])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][295] ([i915#2437])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-glk6/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#2437])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#2437] / [i915#9412]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#8516])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-17/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#3291] / [i915#3708])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#3708]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-2/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#3708]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#3708]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-3/igt@prime_vgem@fence-write-hang.html
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#3708])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#9917])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-16/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][305] ([i915#2846]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][307] ([i915#2842]) -> [PASS][308] +3 other tests pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_schedule@deep@bcs0:
- shard-dg1: [INCOMPLETE][309] -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg1-18/igt@gem_exec_schedule@deep@bcs0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-18/igt@gem_exec_schedule@deep@bcs0.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-dg2: [INCOMPLETE][311] -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-7/igt@gem_exec_schedule@deep@rcs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-10/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][313] ([i915#5493]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-mtlp: [ABORT][315] -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][317] ([i915#9519]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][319] ([i915#9196]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [FAIL][321] ([i915#9196]) -> [PASS][322] +1 other test pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
#### Warnings ####
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][323] ([i915#2842]) -> [FAIL][324] ([i915#2876])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][325] ([i915#10887] / [i915#9820]) -> [ABORT][326] ([i915#9820])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][327] ([i915#10433] / [i915#3458]) -> [SKIP][328] ([i915#3458]) +3 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][329] ([i915#3361]) -> [SKIP][330] ([i915#4281])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: [SKIP][331] ([i915#1072] / [i915#9732]) -> [SKIP][332] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-10/igt@kms_psr@psr-cursor-mmap-cpu.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-no-drrs:
- shard-dg2: [SKIP][333] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][334] ([i915#1072] / [i915#9732]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-11/igt@kms_psr@psr-no-drrs.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-6/igt@kms_psr@psr-no-drrs.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: [SKIP][335] ([i915#4235] / [i915#5190]) -> [SKIP][336] ([i915#5190]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7891/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10380
[i915#10386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10386
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10652
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[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#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[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#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[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#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[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#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[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#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[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#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[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#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[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#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[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#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9310]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9310
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[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#9508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9508
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[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#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#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#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7891 -> IGTPW_11270
CI-20190529: 20190529
CI_DRM_14963: 5a093f17293ae50283f19372263a7595ed50bc34 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11270: 11270
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11270/index.html
[-- Attachment #2: Type: text/html, Size: 112446 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ CI.xeFULL: failure for Force joiner support in bigjoiner checks (rev8)
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (10 preceding siblings ...)
2024-06-18 21:35 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-06-19 2:24 ` Patchwork
11 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2024-06-19 2:24 UTC (permalink / raw)
To: Modem, Bhanuprakash; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 48107 bytes --]
== Series Details ==
Series: Force joiner support in bigjoiner checks (rev8)
URL : https://patchwork.freedesktop.org/series/132557/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7891_full -> XEIGTPW_11270_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11270_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11270_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 (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11270_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-4:
- shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-4.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-4.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@xe_module_load@reload.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-436/igt@xe_module_load@reload.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- {shard-lnl}: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@xe_pm_residency@gt-c6-freeze:
- {shard-lnl}: [PASS][7] -> [DMESG-WARN][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-6/igt@xe_pm_residency@gt-c6-freeze.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-lnl-5/igt@xe_pm_residency@gt-c6-freeze.html
New tests
---------
New tests have been introduced between XEIGT_7891_full and XEIGTPW_11270_full:
### New IGT tests (9) ###
* igt@kms_cdclk@mode-transition@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_cdclk@mode-transition@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_cdclk@mode-transition@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_cdclk@plane-scaling@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_cdclk@plane-scaling@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@xe_waitfence@reltime:
- Statuses : 2 pass(s)
- Exec time: [0.00] s
Known issues
------------
Here are the changes found in XEIGTPW_11270_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_cursor_legacy@single-bo@pipe-b:
- shard-dg2-set2: [PASS][9] -> [DMESG-WARN][10] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_cursor_legacy@single-bo@pipe-b.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-435/igt@kms_cursor_legacy@single-bo@pipe-b.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#1201] / [Intel XE#455])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-435/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#455])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [PASS][15] -> [SKIP][16] ([Intel XE#1201] / [Intel XE#417])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_hdmi_inject@inject-audio.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-4:
- shard-dg2-set2: [PASS][17] -> [DMESG-WARN][18] ([Intel XE#1033]) +3 other tests dmesg-warn
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-4.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-4.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- shard-dg2-set2: [PASS][19] -> [DMESG-WARN][20] ([Intel XE#1033] / [Intel XE#1214]) +12 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-464/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-6:
- shard-dg2-set2: [PASS][21] -> [INCOMPLETE][22] ([Intel XE#1195]) +1 other test incomplete
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-6.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-435/igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: [PASS][23] -> [FAIL][24] ([Intel XE#361]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [PASS][25] -> [TIMEOUT][26] ([Intel XE#1473] / [Intel XE#392])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-464/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_threads@threads-bal-mixed-fd-rebind:
- shard-dg2-set2: [PASS][27] -> [DMESG-WARN][28] ([Intel XE#1214])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_exec_threads@threads-bal-mixed-fd-rebind.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-466/igt@xe_exec_threads@threads-bal-mixed-fd-rebind.html
* igt@xe_exec_threads@threads-mixed-fd-userptr:
- shard-dg2-set2: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1169] / [Intel XE#1195] / [Intel XE#1356])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_exec_threads@threads-mixed-fd-userptr.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-466/igt@xe_exec_threads@threads-mixed-fd-userptr.html
* igt@xe_gt_freq@freq_low_max:
- shard-dg2-set2: [PASS][31] -> [FAIL][32] ([Intel XE#1045] / [Intel XE#1204])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_gt_freq@freq_low_max.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-433/igt@xe_gt_freq@freq_low_max.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-dg2-set2: [PASS][33] -> [SKIP][34] ([Intel XE#1192] / [Intel XE#1201])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@xe_live_ktest@xe_dma_buf.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-464/igt@xe_live_ktest@xe_dma_buf.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- {shard-lnl}: [FAIL][35] ([Intel XE#1659]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][37] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][38] +3 other tests pass
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-edp1:
- {shard-lnl}: [DMESG-WARN][39] -> [PASS][40] +2 other tests pass
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-lnl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
* igt@kms_pm_dc@dc5-dpms:
- {shard-lnl}: [FAIL][41] ([Intel XE#718]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [TIMEOUT][43] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_evict@evict-beng-cm-threads-large.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-434/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][45] ([Intel XE#1600]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate:
- {shard-lnl}: [DMESG-WARN][47] ([Intel XE#1330]) -> [PASS][48] +1 other test pass
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-8/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-lnl-4/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [DMESG-WARN][49] ([Intel XE#1214]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_module_load@many-reload.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-436/igt@xe_module_load@many-reload.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- {shard-lnl}: [DMESG-WARN][51] ([Intel XE#1616]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-6/igt@xe_pm@s2idle-vm-bind-userptr.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-lnl-3/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][53] ([Intel XE#1214] / [Intel XE#569]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@xe_pm@s3-vm-bind-prefetch.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][55] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1941]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer:
- {shard-lnl}: [FAIL][57] ([Intel XE#1081]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-4/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-lnl-4/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: [SKIP][59] ([Intel XE#801]) -> [SKIP][60] ([Intel XE#1201] / [Intel XE#801]) +23 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-464/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][61] ([Intel XE#316]) -> [SKIP][62] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][63] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][64] ([Intel XE#316]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][65] ([Intel XE#1201] / [Intel XE#607]) -> [SKIP][66] ([Intel XE#607]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][67] ([Intel XE#1124]) -> [SKIP][68] ([Intel XE#1124] / [Intel XE#1201]) +6 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][69] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][70] ([Intel XE#1124]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2-set2: [SKIP][71] ([Intel XE#346]) -> [SKIP][72] ([Intel XE#1201] / [Intel XE#346])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_joiner@invalid-modeset.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-435/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: [SKIP][73] ([Intel XE#367]) -> [SKIP][74] ([Intel XE#1201] / [Intel XE#367])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][75] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][76] ([Intel XE#367]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][77] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][78] ([Intel XE#787]) +62 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][79] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][80] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-464/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][81] ([Intel XE#1252]) -> [SKIP][82] ([Intel XE#1201] / [Intel XE#1252])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][83] ([Intel XE#787]) -> [SKIP][84] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][85] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][86] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][87] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][88] ([Intel XE#306]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_chamelium_color@gamma.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2-set2: [SKIP][89] ([Intel XE#373]) -> [SKIP][90] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- shard-dg2-set2: [SKIP][91] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][92] ([Intel XE#373]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][93] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][94] ([Intel XE#307])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-dpms:
- shard-dg2-set2: [DMESG-WARN][95] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][96] ([Intel XE#282]) +6 other tests dmesg-warn
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_cursor_crc@cursor-dpms.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_cursor_crc@cursor-dpms.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: [SKIP][97] ([Intel XE#308]) -> [SKIP][98] ([Intel XE#1201] / [Intel XE#308])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][99] ([Intel XE#616]) -> [DMESG-FAIL][100] ([Intel XE#1551])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-6.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6:
- shard-dg2-set2: [DMESG-FAIL][101] ([Intel XE#1551]) -> [FAIL][102] ([Intel XE#616])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-dg2-set2: [DMESG-WARN][103] ([Intel XE#282]) -> [DMESG-WARN][104] ([Intel XE#1214] / [Intel XE#282]) +9 other tests dmesg-warn
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-434/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-set2: [DMESG-WARN][105] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][106] ([Intel XE#1214] / [Intel XE#282])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size:
- shard-dg2-set2: [DMESG-WARN][107] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][108] ([Intel XE#282] / [Intel XE#910])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][109] ([Intel XE#455]) -> [SKIP][110] ([Intel XE#1201] / [Intel XE#455]) +6 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][111] ([Intel XE#776]) -> [SKIP][112] ([Intel XE#1201] / [Intel XE#776])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][113] ([Intel XE#1138] / [Intel XE#1201]) -> [SKIP][114] ([Intel XE#1138])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_feature_discovery@display-4x.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][115] ([Intel XE#1214] / [Intel XE#1551]) -> [DMESG-WARN][116] ([Intel XE#1551]) +1 other test dmesg-warn
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][117] ([Intel XE#651]) -> [SKIP][118] ([Intel XE#1201] / [Intel XE#651]) +20 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: [SKIP][119] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][120] ([Intel XE#651]) +17 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][121] ([Intel XE#658]) -> [SKIP][122] ([Intel XE#1201] / [Intel XE#658])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: [SKIP][123] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][124] ([Intel XE#653]) +17 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][125] ([Intel XE#1158]) -> [SKIP][126] ([Intel XE#1158] / [Intel XE#1201])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg2-set2: [SKIP][127] ([Intel XE#653]) -> [SKIP][128] ([Intel XE#1201] / [Intel XE#653]) +15 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-suspend.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][129] ([Intel XE#1201] / [Intel XE#356]) -> [SKIP][130] ([Intel XE#356])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [DMESG-WARN][131] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][132] ([Intel XE#1033] / [Intel XE#1162] / [Intel XE#1214])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: [SKIP][133] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][134] ([Intel XE#455]) +13 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_plane_multiple@tiling-y.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: [SKIP][135] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][136] ([Intel XE#455] / [Intel XE#498]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][138] ([Intel XE#498]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: [SKIP][139] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][140] ([Intel XE#870])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_pm_backlight@fade-with-dpms.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#908]) -> [SKIP][142] ([Intel XE#908])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][143] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][144] ([Intel XE#929]) +11 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg2-set2: [SKIP][145] ([Intel XE#929]) -> [SKIP][146] ([Intel XE#1201] / [Intel XE#929]) +11 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_psr@fbc-psr2-suspend.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][147] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][148] ([Intel XE#1149])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][149] ([Intel XE#1127]) -> [SKIP][150] ([Intel XE#1127] / [Intel XE#1201]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][151] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][152] ([Intel XE#1127])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][153] ([Intel XE#327]) -> [SKIP][154] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][155] ([Intel XE#1729]) -> [SKIP][156] ([Intel XE#1201] / [Intel XE#362])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][157] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][158] ([Intel XE#1201] / [Intel XE#362])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][159] ([Intel XE#756]) -> [SKIP][160] ([Intel XE#1201] / [Intel XE#756]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][161] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][162] ([Intel XE#756])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][163] ([Intel XE#1123]) -> [SKIP][164] ([Intel XE#1123] / [Intel XE#1201])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][165] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][166] ([Intel XE#1126])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][167] ([Intel XE#288]) -> [SKIP][168] ([Intel XE#1201] / [Intel XE#288]) +12 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][170] ([Intel XE#288]) +12 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [INCOMPLETE][171] ([Intel XE#1195]) -> [TIMEOUT][172] ([Intel XE#2105])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][173] ([Intel XE#1201] / [Intel XE#977]) -> [SKIP][174] ([Intel XE#977])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@xe_pat@pat-index-xe2.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][175] ([Intel XE#979]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#979])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][177] ([Intel XE#366]) -> [SKIP][178] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-433/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-dg2-set2: [SKIP][179] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][180] ([Intel XE#944])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@xe_query@multigpu-query-hwconfig.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/shard-dg2-432/igt@xe_query@multigpu-query-hwconfig.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#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1654]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1654
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[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#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2097
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[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#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[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#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[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_7891 -> IGTPW_11270
IGTPW_11270: 11270
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1490-5a093f17293ae50283f19372263a7595ed50bc34: 5a093f17293ae50283f19372263a7595ed50bc34
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11270/index.html
[-- Attachment #2: Type: text/html, Size: 59012 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [i-g-t V6 1/8] lib/igt_kms: Split the bigjoiner check into multiple
2024-06-18 8:22 ` [i-g-t V6 1/8] lib/igt_kms: Split the bigjoiner check into multiple Bhanuprakash Modem
@ 2024-06-24 18:15 ` B, Jeevan
0 siblings, 0 replies; 22+ messages in thread
From: B, Jeevan @ 2024-06-24 18:15 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org
Cc: Joshi, Kunal1, Nikula, Jani
LGTM.
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Tuesday, June 18, 2024 1:53 PM
> To: igt-dev@lists.freedesktop.org; B, Jeevan <jeevan.b@intel.com>
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Joshi, Kunal1
> <kunal1.joshi@intel.com>; Nikula, Jani <jani.nikula@intel.com>
> Subject: [i-g-t V6 1/8] lib/igt_kms: Split the bigjoiner check into multiple
>
> To increase the readabilty, split the bigjoiner check into multiple small ones. So
> that it would be easy to extend/fix the logic further.
>
> V2: - Use Primary/Seconary instead of Master/Slave (Jani)
>
> Cc: Kunal Joshi <kunal1.joshi@intel.com>
> Cc: Jani Nikula <jani.nikula@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> lib/igt_kms.c | 57 ++++++++++++++++++++++++++++++++++++++++++---------
> 1 file changed, 47 insertions(+), 10 deletions(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c index af63d13b1..5a1e47183 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6376,6 +6376,7 @@ bool igt_check_bigjoiner_support(igt_display_t
> *display)
> struct {
> enum pipe idx;
> drmModeModeInfo *mode;
> + igt_output_t *output;
> } pipes[IGT_MAX_PIPES];
> int max_dotclock;
>
> @@ -6393,11 +6394,12 @@ bool igt_check_bigjoiner_support(igt_display_t
> *display)
>
> pipes[pipes_in_use].idx = output->pending_pipe;
> pipes[pipes_in_use].mode = igt_output_get_mode(output);
> + pipes[pipes_in_use].output = output;
> pipes_in_use++;
> }
>
> if (!pipes_in_use) {
> - igt_debug("We must set at least one output to pipe.\n");
> + igt_info("We must set at least one output to pipe.\n");
> return true;
> }
>
> @@ -6414,16 +6416,51 @@ bool igt_check_bigjoiner_support(igt_display_t
> *display)
> * - current & previous crtcs are consecutive
> */
> for (i = 0; i < pipes_in_use; i++) {
> - if ((igt_bigjoiner_possible(pipes[i].mode, max_dotclock) &&
> - ((pipes[i].idx >= (total_pipes - 1)) ||
> - (!display->pipes[pipes[i].idx + 1].enabled) ||
> - ((i < (pipes_in_use - 1)) && (abs(pipes[i + 1].idx - pipes[i].idx)
> <= 1)))) ||
> - ((i > 0) && igt_bigjoiner_possible(pipes[i - 1].mode,
> max_dotclock) &&
> - ((!display->pipes[pipes[i - 1].idx + 1].enabled) ||
> - (abs(pipes[i].idx - pipes[i - 1].idx) <= 1)))) {
> - igt_debug("Pipe/Output combo is not possible with
> selected mode(s).\n");
> + if (igt_bigjoiner_possible(pipes[i].mode, max_dotclock)) {
> + igt_info("pipe-%s-%s: (Max dot-clock: %d KHz)",
> + kmstest_pipe_name(pipes[i].idx),
> + igt_output_name(pipes[i].output),
> + max_dotclock);
> + kmstest_dump_mode(pipes[i].mode);
> +
> + if (pipes[i].idx >= (total_pipes - 1)) {
> + igt_info("pipe-%s: Last pipe couldn't be used as
> a Bigjoiner Primary.\n",
> + kmstest_pipe_name(pipes[i].idx));
> + return false;
> + }
>
> - return false;
> + if (!display->pipes[pipes[i].idx + 1].enabled) {
> + igt_info("Consecutive pipe-%s: Fused-off,
> couldn't be used as a Bigjoiner Secondary.\n",
> + kmstest_pipe_name(display-
> >pipes[pipes[i].idx + 1].pipe));
> + return false;
> + }
> +
> + if ((i < (pipes_in_use - 1)) &&
> + (abs(pipes[i + 1].idx - pipes[i].idx) <= 1)) {
> + igt_info("Consecutive pipe-%s: Not free to use it
> as a Bigjoiner Secondary.\n",
> + kmstest_pipe_name(pipes[i + 1].idx));
> + return false;
> + }
> + }
> +
> + if ((i > 0) && igt_bigjoiner_possible(pipes[i - 1].mode,
> max_dotclock)) {
> + igt_info("pipe-%s-%s: (Max dot-clock: %d KHz)",
> + kmstest_pipe_name(pipes[i - 1].idx),
> + igt_output_name(pipes[i - 1].output),
> + max_dotclock);
> + kmstest_dump_mode(pipes[i - 1].mode);
> +
> + if (!display->pipes[pipes[i - 1].idx + 1].enabled) {
> + igt_info("Consecutive pipe-%s: Fused-off,
> couldn't be used as a Bigjoiner Secondary.\n",
> + kmstest_pipe_name(display-
> >pipes[pipes[i - 1].idx + 1].pipe));
> + return false;
> + }
> +
> + if (abs(pipes[i].idx - pipes[i - 1].idx) <= 1) {
> + igt_info("Consecutive pipe-%s: Not free to use it
> as a Bigjoiner Secondary.\n",
> + kmstest_pipe_name(pipes[i].idx));
> + return false;
> + }
> }
> }
>
> --
> 2.43.2
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [i-g-t V6 3/8] lib/igt_kms: New helper to check force joiner status
2024-06-18 8:22 ` [i-g-t V6 3/8] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
@ 2024-06-27 6:50 ` B, Jeevan
0 siblings, 0 replies; 22+ messages in thread
From: B, Jeevan @ 2024-06-27 6:50 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1
LGTM
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Tuesday, June 18, 2024 1:53 PM
> To: igt-dev@lists.freedesktop.org; B, Jeevan <jeevan.b@intel.com>
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Joshi, Kunal1
> <kunal1.joshi@intel.com>
> Subject: [i-g-t V6 3/8] lib/igt_kms: New helper to check force joiner status
>
> Add a new function to check the force joiner status on selected connecter, so
> that it would be helpful to check the force joiner status from other places too.
>
> V2: - Add few debug prints
> V3: - Rebase
>
> Cc: Kunal Joshi <kunal1.joshi@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> lib/igt_kms.c | 34 ++++++++++++++++++++++++++++++++++
> lib/igt_kms.h | 1 +
> 2 files changed, 35 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c index c0aa92eb5..9fdfadde1 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6359,6 +6359,40 @@ bool igt_has_force_joiner_debugfs(int drmfd, char
> *conn_name)
> return ret >= 0;
> }
>
> +/**
> + * igt_check_force_joiner_status
> + * @drmfd: file descriptor of the DRM device.
> + * @connector_name: connector to check.
> + *
> + * Checks if the force big joiner is enabled.
> + *
> + * Returns: True if the force big joiner is enabled, False otherwise.
> + */
> +bool igt_check_force_joiner_status(int drmfd, char *connector_name) {
> + char buf[512];
> + int debugfs_fd, ret;
> +
> + if (!connector_name)
> + return false;
> +
> + debugfs_fd = igt_debugfs_connector_dir(drmfd, connector_name,
> O_RDONLY);
> + if (debugfs_fd < 0) {
> + igt_debug("Could not open debugfs for connector: %s\n",
> connector_name);
> + return false;
> + }
> +
> + ret = igt_debugfs_simple_read(debugfs_fd,
> "i915_bigjoiner_force_enable", buf, sizeof(buf));
> + close(debugfs_fd);
> +
> + if (ret < 0) {
> + igt_debug("Could not read i915_bigjoiner_force_enable for
> connector: %s\n", connector_name);
> + return false;
> + }
> +
> + return strstr(buf, "Y");
> +}
> +
> /**
> * igt_check_bigjoiner_support:
> * @display: a pointer to an #igt_display_t structure diff --git a/lib/igt_kms.h
> b/lib/igt_kms.h index 979cf1300..501d48763 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1216,6 +1216,7 @@ bool igt_bigjoiner_possible(drmModeModeInfo
> *mode, int max_dotclock); bool bigjoiner_mode_found(int drm_fd,
> drmModeConnector *connector,
> int max_dotclock, drmModeModeInfo *mode); bool
> igt_has_force_joiner_debugfs(int drmfd, char *conn_name);
> +bool igt_check_force_joiner_status(int drmfd, char *connector_name);
> bool igt_check_bigjoiner_support(igt_display_t *display); bool
> igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode);
> bool intel_pipe_output_combo_valid(igt_display_t *display);
> --
> 2.43.2
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [i-g-t V6 4/8] lib/igt_kms: Force joiner support in bigjoiner checks
2024-06-18 8:22 ` [i-g-t V6 4/8] lib/igt_kms: Force joiner support in bigjoiner checks Bhanuprakash Modem
@ 2024-06-27 6:54 ` B, Jeevan
0 siblings, 0 replies; 22+ messages in thread
From: B, Jeevan @ 2024-06-27 6:54 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1
LGTM.
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Tuesday, June 18, 2024 1:53 PM
> To: igt-dev@lists.freedesktop.org; B, Jeevan <jeevan.b@intel.com>
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Joshi, Kunal1
> <kunal1.joshi@intel.com>
> Subject: [i-g-t V6 4/8] lib/igt_kms: Force joiner support in bigjoiner checks
>
> As we recently introduced the option (through debugfs) to force the bigjoiner,
> needs to extend the support in bigjoiner checks to handle the force joiner.
>
> Cc: Kunal Joshi <kunal1.joshi@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> lib/igt_kms.c | 19 +++++++++++--------
> 1 file changed, 11 insertions(+), 8 deletions(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 9fdfadde1..d565e79ce 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6415,6 +6415,7 @@ bool igt_check_bigjoiner_support(igt_display_t
> *display)
> enum pipe idx;
> drmModeModeInfo *mode;
> igt_output_t *output;
> + bool force_joiner;
> } pipes[IGT_MAX_PIPES];
> int max_dotclock;
>
> @@ -6433,6 +6434,7 @@ bool igt_check_bigjoiner_support(igt_display_t
> *display)
> pipes[pipes_in_use].idx = output->pending_pipe;
> pipes[pipes_in_use].mode = igt_output_get_mode(output);
> pipes[pipes_in_use].output = output;
> + pipes[pipes_in_use].force_joiner =
> +igt_check_force_joiner_status(display->drm_fd, output->name);
> pipes_in_use++;
> }
>
> @@ -6444,21 +6446,22 @@ bool igt_check_bigjoiner_support(igt_display_t
> *display)
> max_dotclock = igt_get_max_dotclock(display->drm_fd);
>
> /*
> - * if mode resolution > 5K (or) mode.clock > max dot-clock, then ignore
> + * if force joiner (or) mode resolution > 5K (or) mode.clock > max dot-
> clock,
> + * then ignore
> * - if the consecutive pipe is not available
> * - last crtc in single/multi-connector config
> * - consecutive crtcs in multi-connector config
> *
> * in multi-connector config ignore if
> - * - previous crtc (mode resolution > 5K or mode.clock > max dot-clock)
> and
> + * - previous crtc (force joiner or mode resolution > 5K or
> +mode.clock > max dot-clock) and
> * - current & previous crtcs are consecutive
> */
> for (i = 0; i < pipes_in_use; i++) {
> - if (igt_bigjoiner_possible(pipes[i].mode, max_dotclock)) {
> - igt_info("pipe-%s-%s: (Max dot-clock: %d KHz)",
> + if (pipes[i].force_joiner || igt_bigjoiner_possible(pipes[i].mode,
> max_dotclock)) {
> + igt_info("pipe-%s-%s: (Max dot-clock: %d KHz), force
> joiner: %s\n",
> kmstest_pipe_name(pipes[i].idx),
> igt_output_name(pipes[i].output),
> - max_dotclock);
> + max_dotclock, pipes[i].force_joiner ? "Yes" :
> "No");
> kmstest_dump_mode(pipes[i].mode);
>
> if (pipes[i].idx >= (total_pipes - 1)) { @@ -6481,11
> +6484,11 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
> }
> }
>
> - if ((i > 0) && igt_bigjoiner_possible(pipes[i - 1].mode,
> max_dotclock)) {
> - igt_info("pipe-%s-%s: (Max dot-clock: %d KHz)",
> + if ((i > 0) && (pipes[i - 1].force_joiner ||
> igt_bigjoiner_possible(pipes[i - 1].mode, max_dotclock))) {
> + igt_info("pipe-%s-%s: (Max dot-clock: %d KHz), force
> joiner: %s\n",
> kmstest_pipe_name(pipes[i - 1].idx),
> igt_output_name(pipes[i - 1].output),
> - max_dotclock);
> + max_dotclock, pipes[i - 1].force_joiner ? "Yes" :
> "No");
> kmstest_dump_mode(pipes[i - 1].mode);
>
> if (!display->pipes[pipes[i - 1].idx + 1].enabled) {
> --
> 2.43.2
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [i-g-t V6 5/8] tests/intel/kms_pm_lpsp: Force joiner support in bigjoiner checks
2024-06-18 8:22 ` [i-g-t V6 5/8] tests/intel/kms_pm_lpsp: " Bhanuprakash Modem
@ 2024-06-27 6:58 ` B, Jeevan
0 siblings, 0 replies; 22+ messages in thread
From: B, Jeevan @ 2024-06-27 6:58 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1
LGTM
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Tuesday, June 18, 2024 1:53 PM
> To: igt-dev@lists.freedesktop.org; B, Jeevan <jeevan.b@intel.com>
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Joshi, Kunal1
> <kunal1.joshi@intel.com>
> Subject: [i-g-t V6 5/8] tests/intel/kms_pm_lpsp: Force joiner support in bigjoiner
> checks
>
> As we recently introduced the option (through debugfs) to force the bigjoiner,
> needs to extend the support in bigjoiner checks to handle the force joiner.
>
> Cc: Kunal Joshi <kunal1.joshi@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/intel/kms_pm_lpsp.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/tests/intel/kms_pm_lpsp.c b/tests/intel/kms_pm_lpsp.c index
> a76b423f4..f9ac508fb 100644
> --- a/tests/intel/kms_pm_lpsp.c
> +++ b/tests/intel/kms_pm_lpsp.c
> @@ -163,6 +163,9 @@ static bool test_constraint(data_t *data)
> mode = igt_output_get_mode(data->output);
>
> /* For LPSP avoid Bigjoiner. */
> + if (igt_check_force_joiner_status(data->drm_fd, data->output->name))
> + return false;
> +
> if (igt_bigjoiner_possible(mode, max_dotclock)) {
> for_each_connector_mode(data->output) {
> mode = &data->output->config.connector->modes[j__];
> --
> 2.43.2
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [i-g-t V6 6/8] tests/kms_flip: Force joiner support in bigjoiner checks
2024-06-18 8:22 ` [i-g-t V6 6/8] tests/kms_flip: " Bhanuprakash Modem
@ 2024-06-27 7:04 ` B, Jeevan
2024-06-27 7:20 ` Modem, Bhanuprakash
0 siblings, 1 reply; 22+ messages in thread
From: B, Jeevan @ 2024-06-27 7:04 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1
> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Tuesday, June 18, 2024 1:53 PM
> To: igt-dev@lists.freedesktop.org; B, Jeevan <jeevan.b@intel.com>
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Joshi, Kunal1
> <kunal1.joshi@intel.com>
> Subject: [i-g-t V6 6/8] tests/kms_flip: Force joiner support in bigjoiner checks
>
> As we recently introduced the option (through debugfs) to force the bigjoiner,
> needs to extend the support in bigjoiner checks to handle the force joiner.
>
> V2: - Fix connector name
>
> Cc: Kunal Joshi <kunal1.joshi@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/kms_flip.c | 23 +++++++++++++++++++----
> 1 file changed, 19 insertions(+), 4 deletions(-)
>
> diff --git a/tests/kms_flip.c b/tests/kms_flip.c index d352ee14c..cbabbe74f
> 100755
> --- a/tests/kms_flip.c
> +++ b/tests/kms_flip.c
> @@ -1730,22 +1730,37 @@ static void run_test_on_crtc_set(struct
> test_output *o, int *crtc_idxs,
> /*
> * Handle BW limitations on intel hardware:
> *
> - * if mode resolution > 5K (or) mode clock > max_dotclock, then ignore
> + * if force joiner (or) mode resolution > 5K (or) mode clock >
> +max_dotclock, then ignore
> * - last crtc in single/multi-connector config
> * - consecutive crtcs in multi-connector config
> *
> * in multi-connector config ignore if
> - * - previous crtc (mode resolution > 5K or mode clock > max_dotclock)
> and
> + * - previous crtc (force joiner or mode resolution > 5K or mode
> +clock > max_dotclock) and
> * - current & previous crtcs are consecutive
> */
> if (!is_intel_device(drm_fd))
> goto test;
>
> for (i = 0; i < crtc_count; i++) {
> - if ((igt_bigjoiner_possible(&o->kmode[i], max_dotclock) &&
> + char conn_name[24], prev_conn_name[24];
> +
> + snprintf(conn_name, sizeof(conn_name),
> + "%s-%d",
> + kmstest_connector_type_str(o->kconnector[i]-
> >connector_type),
> + o->kconnector[i]->connector_type_id);
> +
> + if (i > 0)
> + snprintf(prev_conn_name, sizeof(prev_conn_name),
> + "%s-%d",
> + kmstest_connector_type_str(o->kconnector[i -
> 1]->connector_type),
> + o->kconnector[i - 1]->connector_type_id);
Is printing this necessary ??
> +
> + if (((igt_check_force_joiner_status(drm_fd, conn_name) ||
> + igt_bigjoiner_possible(&o->kmode[i], max_dotclock)) &&
> ((crtc_idxs[i] >= (total_crtcs - 1)) ||
> ((i < (crtc_count - 1)) && (abs(crtc_idxs[i + 1] - crtc_idxs[i])
> <= 1)))) ||
> - ((i > 0) && igt_bigjoiner_possible(&o->kmode[i - 1],
> max_dotclock) &&
> + ((i > 0) && (igt_check_force_joiner_status(drm_fd,
> prev_conn_name) ||
> + igt_bigjoiner_possible(&o->kmode[i - 1],
> max_dotclock)) &&
> (abs(crtc_idxs[i] - crtc_idxs[i - 1]) <= 1))) {
>
> igt_debug("Combo: %s is not possible with selected
> mode(s).\n", test_name);
> --
> 2.43.2
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [i-g-t V6 7/8] tests/kms_setmode: Force joiner support in bigjoiner checks
2024-06-18 8:22 ` [i-g-t V6 7/8] tests/kms_setmode: " Bhanuprakash Modem
@ 2024-06-27 7:05 ` B, Jeevan
2024-06-27 8:29 ` B, Jeevan
0 siblings, 1 reply; 22+ messages in thread
From: B, Jeevan @ 2024-06-27 7:05 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1
> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Tuesday, June 18, 2024 1:53 PM
> To: igt-dev@lists.freedesktop.org; B, Jeevan <jeevan.b@intel.com>
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Joshi, Kunal1
> <kunal1.joshi@intel.com>
> Subject: [i-g-t V6 7/8] tests/kms_setmode: Force joiner support in bigjoiner
> checks
>
> As we recently introduced the option (through debugfs) to force the bigjoiner,
> needs to extend the support in bigjoiner checks to handle the force joiner.
>
> V2: - Fix connector name
>
> Cc: Kunal Joshi <kunal1.joshi@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/kms_setmode.c | 22 ++++++++++++++++++----
> 1 file changed, 18 insertions(+), 4 deletions(-)
>
> diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c index
> 490bfd3dd..95c5bfadc 100644
> --- a/tests/kms_setmode.c
> +++ b/tests/kms_setmode.c
> @@ -709,24 +709,38 @@ static void test_one_combination(const struct
> test_config *tconf,
>
> for (i = 0; i < crtc_count; i++) {
> struct crtc_config *crtc = &crtcs[i];
> + char conn_name[24], prev_conn_name[24];
> +
> + snprintf(conn_name, sizeof(conn_name),
> + "%s-%d",
> + kmstest_connector_type_str(crtcs[i].cconfs-
> >connector->connector_type),
> + crtcs[i].cconfs->connector-
> >connector_type_id);
> +
> + if (i > 0)
> + snprintf(prev_conn_name,
> sizeof(prev_conn_name),
> + "%s-%d",
> + kmstest_connector_type_str(crtcs[i -
> 1].cconfs->connector->connector_type),
> + crtcs[i - 1].cconfs->connector-
> >connector_type_id);
Same here...
>
> /*
> * Handle BW limitations on intel hardware:
> *
> - * if mode resolution > 5K (or) mode clock >
> max_dotclock,
> + * if force joiner (or) mode resolution > 5K (or) mode
> clock >
> +max_dotclock,
> * then ignore
> * - last crtc in single/multi-connector config
> * - consecutive crtcs in multi-connector config
> *
> * in multi-connector config ignore if
> - * - previous crtc (mode resolution > 5K (or)
> + * - previous crtc (force joiner (or) mode resolution >
> 5K (or)
> * mode clock > max_dotclock) and
> * - current & previous crtcs are consecutive
> */
> - if ((igt_bigjoiner_possible(&crtc->mode, max_dotclock)
> &&
> + if (((igt_check_force_joiner_status(drm_fd, conn_name)
> ||
> + igt_bigjoiner_possible(&crtc->mode, max_dotclock))
> &&
> ((crtc->crtc_idx >= (tconf->resources->count_crtcs -
> 1)) ||
> ((i < (crtc_count - 1)) && (abs(crtcs[i + 1].crtc_idx -
> crtc->crtc_idx) <= 1)))) ||
> - ((i > 0) && igt_bigjoiner_possible(&crtc[i - 1].mode,
> max_dotclock) &&
> + ((i > 0) && (igt_check_force_joiner_status(drm_fd,
> prev_conn_name) ||
> + igt_bigjoiner_possible(&crtc[i -
> 1].mode, max_dotclock)) &&
> (abs(crtc->crtc_idx - crtcs[i - 1].crtc_idx) <= 1))) {
> igt_info("Combo: %s is not possible with
> selected mode(s).\n", test_name);
> goto out;
> --
> 2.43.2
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [i-g-t V6 6/8] tests/kms_flip: Force joiner support in bigjoiner checks
2024-06-27 7:04 ` B, Jeevan
@ 2024-06-27 7:20 ` Modem, Bhanuprakash
2024-06-27 8:28 ` B, Jeevan
0 siblings, 1 reply; 22+ messages in thread
From: Modem, Bhanuprakash @ 2024-06-27 7:20 UTC (permalink / raw)
To: B, Jeevan, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1
Hi Jeevan,
Thanks for the review, please find my comments inline.
On 27-06-2024 12:34 pm, B, Jeevan wrote:
>
>
>> -----Original Message-----
>> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
>> Sent: Tuesday, June 18, 2024 1:53 PM
>> To: igt-dev@lists.freedesktop.org; B, Jeevan <jeevan.b@intel.com>
>> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Joshi, Kunal1
>> <kunal1.joshi@intel.com>
>> Subject: [i-g-t V6 6/8] tests/kms_flip: Force joiner support in bigjoiner checks
>>
>> As we recently introduced the option (through debugfs) to force the bigjoiner,
>> needs to extend the support in bigjoiner checks to handle the force joiner.
>>
>> V2: - Fix connector name
>>
>> Cc: Kunal Joshi <kunal1.joshi@intel.com>
>> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
>> ---
>> tests/kms_flip.c | 23 +++++++++++++++++++----
>> 1 file changed, 19 insertions(+), 4 deletions(-)
>>
>> diff --git a/tests/kms_flip.c b/tests/kms_flip.c index d352ee14c..cbabbe74f
>> 100755
>> --- a/tests/kms_flip.c
>> +++ b/tests/kms_flip.c
>> @@ -1730,22 +1730,37 @@ static void run_test_on_crtc_set(struct
>> test_output *o, int *crtc_idxs,
>> /*
>> * Handle BW limitations on intel hardware:
>> *
>> - * if mode resolution > 5K (or) mode clock > max_dotclock, then ignore
>> + * if force joiner (or) mode resolution > 5K (or) mode clock >
>> +max_dotclock, then ignore
>> * - last crtc in single/multi-connector config
>> * - consecutive crtcs in multi-connector config
>> *
>> * in multi-connector config ignore if
>> - * - previous crtc (mode resolution > 5K or mode clock > max_dotclock)
>> and
>> + * - previous crtc (force joiner or mode resolution > 5K or mode
>> +clock > max_dotclock) and
>> * - current & previous crtcs are consecutive
>> */
>> if (!is_intel_device(drm_fd))
>> goto test;
>>
>> for (i = 0; i < crtc_count; i++) {
>> - if ((igt_bigjoiner_possible(&o->kmode[i], max_dotclock) &&
>> + char conn_name[24], prev_conn_name[24];
>> +
>> + snprintf(conn_name, sizeof(conn_name),
>> + "%s-%d",
>> + kmstest_connector_type_str(o->kconnector[i]-
>>> connector_type),
>> + o->kconnector[i]->connector_type_id);
>> +
>> + if (i > 0)
>> + snprintf(prev_conn_name, sizeof(prev_conn_name),
>> + "%s-%d",
>> + kmstest_connector_type_str(o->kconnector[i -
>> 1]->connector_type),
>> + o->kconnector[i - 1]->connector_type_id);
> Is printing this necessary ??
Here we are not printing anything, but extracting the connector name
from o->kconnector.
- Bhanu
>> +
>> + if (((igt_check_force_joiner_status(drm_fd, conn_name) ||
>> + igt_bigjoiner_possible(&o->kmode[i], max_dotclock)) &&
>> ((crtc_idxs[i] >= (total_crtcs - 1)) ||
>> ((i < (crtc_count - 1)) && (abs(crtc_idxs[i + 1] - crtc_idxs[i])
>> <= 1)))) ||
>> - ((i > 0) && igt_bigjoiner_possible(&o->kmode[i - 1],
>> max_dotclock) &&
>> + ((i > 0) && (igt_check_force_joiner_status(drm_fd,
>> prev_conn_name) ||
>> + igt_bigjoiner_possible(&o->kmode[i - 1],
>> max_dotclock)) &&
>> (abs(crtc_idxs[i] - crtc_idxs[i - 1]) <= 1))) {
>>
>> igt_debug("Combo: %s is not possible with selected
>> mode(s).\n", test_name);
>> --
>> 2.43.2
>
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [i-g-t V6 6/8] tests/kms_flip: Force joiner support in bigjoiner checks
2024-06-27 7:20 ` Modem, Bhanuprakash
@ 2024-06-27 8:28 ` B, Jeevan
0 siblings, 0 replies; 22+ messages in thread
From: B, Jeevan @ 2024-06-27 8:28 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1
> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Thursday, June 27, 2024 12:51 PM
> To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org
> Cc: Joshi, Kunal1 <kunal1.joshi@intel.com>
> Subject: Re: [i-g-t V6 6/8] tests/kms_flip: Force joiner support in bigjoiner checks
>
> Hi Jeevan,
>
> Thanks for the review, please find my comments inline.
>
> On 27-06-2024 12:34 pm, B, Jeevan wrote:
> >
> >
> >> -----Original Message-----
> >> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> >> Sent: Tuesday, June 18, 2024 1:53 PM
> >> To: igt-dev@lists.freedesktop.org; B, Jeevan <jeevan.b@intel.com>
> >> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Joshi,
> Kunal1
> >> <kunal1.joshi@intel.com>
> >> Subject: [i-g-t V6 6/8] tests/kms_flip: Force joiner support in
> >> bigjoiner checks
> >>
> >> As we recently introduced the option (through debugfs) to force the
> >> bigjoiner, needs to extend the support in bigjoiner checks to handle the force
> joiner.
> >>
> >> V2: - Fix connector name
> >>
> >> Cc: Kunal Joshi <kunal1.joshi@intel.com>
> >> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> >> ---
> >> tests/kms_flip.c | 23 +++++++++++++++++++----
> >> 1 file changed, 19 insertions(+), 4 deletions(-)
> >>
> >> diff --git a/tests/kms_flip.c b/tests/kms_flip.c index
> >> d352ee14c..cbabbe74f
> >> 100755
> >> --- a/tests/kms_flip.c
> >> +++ b/tests/kms_flip.c
> >> @@ -1730,22 +1730,37 @@ static void run_test_on_crtc_set(struct
> >> test_output *o, int *crtc_idxs,
> >> /*
> >> * Handle BW limitations on intel hardware:
> >> *
> >> - * if mode resolution > 5K (or) mode clock > max_dotclock, then ignore
> >> + * if force joiner (or) mode resolution > 5K (or) mode clock >
> >> +max_dotclock, then ignore
> >> * - last crtc in single/multi-connector config
> >> * - consecutive crtcs in multi-connector config
> >> *
> >> * in multi-connector config ignore if
> >> - * - previous crtc (mode resolution > 5K or mode clock > max_dotclock)
> >> and
> >> + * - previous crtc (force joiner or mode resolution > 5K or mode
> >> +clock > max_dotclock) and
> >> * - current & previous crtcs are consecutive
> >> */
> >> if (!is_intel_device(drm_fd))
> >> goto test;
> >>
> >> for (i = 0; i < crtc_count; i++) {
> >> - if ((igt_bigjoiner_possible(&o->kmode[i], max_dotclock) &&
> >> + char conn_name[24], prev_conn_name[24];
> >> +
> >> + snprintf(conn_name, sizeof(conn_name),
> >> + "%s-%d",
> >> + kmstest_connector_type_str(o->kconnector[i]-
> >>> connector_type),
> >> + o->kconnector[i]->connector_type_id);
> >> +
> >> + if (i > 0)
> >> + snprintf(prev_conn_name, sizeof(prev_conn_name),
> >> + "%s-%d",
> >> + kmstest_connector_type_str(o->kconnector[i -
> >> 1]->connector_type),
> >> + o->kconnector[i - 1]->connector_type_id);
> > Is printing this necessary ??
>
> Here we are not printing anything, but extracting the connector name from o-
> >kconnector.
>
Ok got it. LGTM
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> - Bhanu
>
> >> +
> >> + if (((igt_check_force_joiner_status(drm_fd, conn_name) ||
> >> + igt_bigjoiner_possible(&o->kmode[i], max_dotclock)) &&
> >> ((crtc_idxs[i] >= (total_crtcs - 1)) ||
> >> ((i < (crtc_count - 1)) && (abs(crtc_idxs[i + 1] -
> >> crtc_idxs[i]) <= 1)))) ||
> >> - ((i > 0) && igt_bigjoiner_possible(&o->kmode[i - 1],
> >> max_dotclock) &&
> >> + ((i > 0) && (igt_check_force_joiner_status(drm_fd,
> >> prev_conn_name) ||
> >> + igt_bigjoiner_possible(&o->kmode[i - 1],
> >> max_dotclock)) &&
> >> (abs(crtc_idxs[i] - crtc_idxs[i - 1]) <= 1))) {
> >>
> >> igt_debug("Combo: %s is not possible with selected
> mode(s).\n",
> >> test_name);
> >> --
> >> 2.43.2
> >
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [i-g-t V6 7/8] tests/kms_setmode: Force joiner support in bigjoiner checks
2024-06-27 7:05 ` B, Jeevan
@ 2024-06-27 8:29 ` B, Jeevan
0 siblings, 0 replies; 22+ messages in thread
From: B, Jeevan @ 2024-06-27 8:29 UTC (permalink / raw)
To: B, Jeevan, Modem, Bhanuprakash, 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 B, Jeevan
> Sent: Thursday, June 27, 2024 12:35 PM
> To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt-
> dev@lists.freedesktop.org
> Cc: Joshi, Kunal1 <kunal1.joshi@intel.com>
> Subject: RE: [i-g-t V6 7/8] tests/kms_setmode: Force joiner support in bigjoiner
> checks
>
>
>
> > -----Original Message-----
> > From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> > Sent: Tuesday, June 18, 2024 1:53 PM
> > To: igt-dev@lists.freedesktop.org; B, Jeevan <jeevan.b@intel.com>
> > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Joshi, Kunal1
> > <kunal1.joshi@intel.com>
> > Subject: [i-g-t V6 7/8] tests/kms_setmode: Force joiner support in
> > bigjoiner checks
> >
> > As we recently introduced the option (through debugfs) to force the
> > bigjoiner, needs to extend the support in bigjoiner checks to handle the force
> joiner.
> >
> > V2: - Fix connector name
> >
> > Cc: Kunal Joshi <kunal1.joshi@intel.com>
> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> > ---
> > tests/kms_setmode.c | 22 ++++++++++++++++++----
> > 1 file changed, 18 insertions(+), 4 deletions(-)
> >
> > diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c index
> > 490bfd3dd..95c5bfadc 100644
> > --- a/tests/kms_setmode.c
> > +++ b/tests/kms_setmode.c
> > @@ -709,24 +709,38 @@ static void test_one_combination(const struct
> > test_config *tconf,
> >
> > for (i = 0; i < crtc_count; i++) {
> > struct crtc_config *crtc = &crtcs[i];
> > + char conn_name[24], prev_conn_name[24];
> > +
> > + snprintf(conn_name, sizeof(conn_name),
> > + "%s-%d",
> > + kmstest_connector_type_str(crtcs[i].cconfs-
> > >connector->connector_type),
> > + crtcs[i].cconfs->connector-
> > >connector_type_id);
> > +
> > + if (i > 0)
> > + snprintf(prev_conn_name,
> > sizeof(prev_conn_name),
> > + "%s-%d",
> > + kmstest_connector_type_str(crtcs[i -
> > 1].cconfs->connector->connector_type),
> > + crtcs[i - 1].cconfs->connector-
> > >connector_type_id);
> Same here...
> >
> > /*
> > * Handle BW limitations on intel hardware:
> > *
> > - * if mode resolution > 5K (or) mode clock >
> > max_dotclock,
> > + * if force joiner (or) mode resolution > 5K (or) mode
> > clock >
> > +max_dotclock,
> > * then ignore
> > * - last crtc in single/multi-connector config
> > * - consecutive crtcs in multi-connector config
> > *
> > * in multi-connector config ignore if
> > - * - previous crtc (mode resolution > 5K (or)
> > + * - previous crtc (force joiner (or) mode resolution >
> > 5K (or)
> > * mode clock > max_dotclock) and
> > * - current & previous crtcs are consecutive
> > */
> > - if ((igt_bigjoiner_possible(&crtc->mode, max_dotclock)
> > &&
> > + if (((igt_check_force_joiner_status(drm_fd, conn_name)
> > ||
> > + igt_bigjoiner_possible(&crtc->mode, max_dotclock))
> > &&
> > ((crtc->crtc_idx >= (tconf->resources->count_crtcs -
> > 1)) ||
> > ((i < (crtc_count - 1)) && (abs(crtcs[i + 1].crtc_idx -
> > crtc->crtc_idx) <= 1)))) ||
> > - ((i > 0) && igt_bigjoiner_possible(&crtc[i - 1].mode,
> > max_dotclock) &&
> > + ((i > 0) && (igt_check_force_joiner_status(drm_fd,
> > prev_conn_name) ||
> > + igt_bigjoiner_possible(&crtc[i -
> > 1].mode, max_dotclock)) &&
> > (abs(crtc->crtc_idx - crtcs[i - 1].crtc_idx) <= 1))) {
> > igt_info("Combo: %s is not possible with
> selected mode(s).\n",
> > test_name);
> > goto out;
> > --
> > 2.43.2
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2024-06-27 8:29 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-18 8:22 [i-g-t V6 0/8] Force joiner support in bigjoiner checks Bhanuprakash Modem
2024-06-18 8:22 ` [i-g-t V6 1/8] lib/igt_kms: Split the bigjoiner check into multiple Bhanuprakash Modem
2024-06-24 18:15 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 2/8] lib/igt_kms: Update force joiner debugfs check Bhanuprakash Modem
2024-06-18 8:22 ` [i-g-t V6 3/8] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
2024-06-27 6:50 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 4/8] lib/igt_kms: Force joiner support in bigjoiner checks Bhanuprakash Modem
2024-06-27 6:54 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 5/8] tests/intel/kms_pm_lpsp: " Bhanuprakash Modem
2024-06-27 6:58 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 6/8] tests/kms_flip: " Bhanuprakash Modem
2024-06-27 7:04 ` B, Jeevan
2024-06-27 7:20 ` Modem, Bhanuprakash
2024-06-27 8:28 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 7/8] tests/kms_setmode: " Bhanuprakash Modem
2024-06-27 7:05 ` B, Jeevan
2024-06-27 8:29 ` B, Jeevan
2024-06-18 8:22 ` [i-g-t V6 8/8] HAX: Test force joiner on BAT Bhanuprakash Modem
2024-06-18 13:54 ` ✓ CI.xeBAT: success for Force joiner support in bigjoiner checks (rev8) Patchwork
2024-06-18 13:58 ` ✓ Fi.CI.BAT: " Patchwork
2024-06-18 21:35 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-06-19 2:24 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox