* [i-g-t V4 0/7] Force joiner support in bigjoiner checks
@ 2024-04-23 12:26 Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 1/7] lib/igt_kms: Update force joiner debugfs check Bhanuprakash Modem
` (9 more replies)
0 siblings, 10 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2024-04-23 12:26 UTC (permalink / raw)
To: igt-dev; +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 (7):
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 | 61 ++++++++++++++++++++++++++++++------
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, 108 insertions(+), 19 deletions(-)
--
2.43.2
^ permalink raw reply [flat|nested] 11+ messages in thread
* [i-g-t V4 1/7] lib/igt_kms: Update force joiner debugfs check
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
@ 2024-04-23 12:26 ` Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 2/7] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2024-04-23 12:26 UTC (permalink / raw)
To: igt-dev; +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>
---
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 98d3fb79c..b36f19843 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6306,15 +6306,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;
@@ -6327,12 +6329,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] 11+ messages in thread
* [i-g-t V4 2/7] lib/igt_kms: New helper to check force joiner status
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 1/7] lib/igt_kms: Update force joiner debugfs check Bhanuprakash Modem
@ 2024-04-23 12:26 ` Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 3/7] lib/igt_kms: Force joiner support in bigjoiner checks Bhanuprakash Modem
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2024-04-23 12:26 UTC (permalink / raw)
To: igt-dev; +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 b36f19843..f47d85977 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6340,6 +6340,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] 11+ messages in thread
* [i-g-t V4 3/7] lib/igt_kms: Force joiner support in bigjoiner checks
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 1/7] lib/igt_kms: Update force joiner debugfs check Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 2/7] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
@ 2024-04-23 12:26 ` Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 4/7] tests/intel/kms_pm_lpsp: " Bhanuprakash Modem
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2024-04-23 12:26 UTC (permalink / raw)
To: igt-dev; +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 | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index f47d85977..3d6835dcf 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6395,6 +6395,7 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
struct {
enum pipe idx;
drmModeModeInfo *mode;
+ bool force_joiner;
} pipes[IGT_MAX_PIPES];
int max_dotclock;
@@ -6412,6 +6413,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].force_joiner = igt_check_force_joiner_status(display->drm_fd, output->name);
pipes_in_use++;
}
@@ -6423,21 +6425,24 @@ 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) &&
+ if (((pipes[i].force_joiner ||
+ 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) &&
+ ((i > 0) && (pipes[i - 1].force_joiner ||
+ 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");
--
2.43.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [i-g-t V4 4/7] tests/intel/kms_pm_lpsp: Force joiner support in bigjoiner checks
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (2 preceding siblings ...)
2024-04-23 12:26 ` [i-g-t V4 3/7] lib/igt_kms: Force joiner support in bigjoiner checks Bhanuprakash Modem
@ 2024-04-23 12:26 ` Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 5/7] tests/kms_flip: " Bhanuprakash Modem
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2024-04-23 12:26 UTC (permalink / raw)
To: igt-dev; +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] 11+ messages in thread
* [i-g-t V4 5/7] tests/kms_flip: Force joiner support in bigjoiner checks
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (3 preceding siblings ...)
2024-04-23 12:26 ` [i-g-t V4 4/7] tests/intel/kms_pm_lpsp: " Bhanuprakash Modem
@ 2024-04-23 12:26 ` Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 6/7] tests/kms_setmode: " Bhanuprakash Modem
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2024-04-23 12:26 UTC (permalink / raw)
To: igt-dev; +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 15c3b5ba2..57f6cff7a 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] 11+ messages in thread
* [i-g-t V4 6/7] tests/kms_setmode: Force joiner support in bigjoiner checks
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (4 preceding siblings ...)
2024-04-23 12:26 ` [i-g-t V4 5/7] tests/kms_flip: " Bhanuprakash Modem
@ 2024-04-23 12:26 ` Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 7/7] HAX: Test force joiner on BAT Bhanuprakash Modem
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2024-04-23 12:26 UTC (permalink / raw)
To: igt-dev; +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] 11+ messages in thread
* [i-g-t V4 7/7] HAX: Test force joiner on BAT
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (5 preceding siblings ...)
2024-04-23 12:26 ` [i-g-t V4 6/7] tests/kms_setmode: " Bhanuprakash Modem
@ 2024-04-23 12:26 ` Bhanuprakash Modem
2024-04-23 13:14 ` ✓ CI.xeBAT: success for Force joiner support in bigjoiner checks (rev5) Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2024-04-23 12:26 UTC (permalink / raw)
To: igt-dev; +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 57f6cff7a..b30a89715 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] 11+ messages in thread
* ✓ CI.xeBAT: success for Force joiner support in bigjoiner checks (rev5)
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (6 preceding siblings ...)
2024-04-23 12:26 ` [i-g-t V4 7/7] HAX: Test force joiner on BAT Bhanuprakash Modem
@ 2024-04-23 13:14 ` Patchwork
2024-04-23 13:18 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-04-23 20:02 ` ✗ CI.xeFULL: " Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-04-23 13:14 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1437 bytes --]
== Series Details ==
Series: Force joiner support in bigjoiner checks (rev5)
URL : https://patchwork.freedesktop.org/series/132557/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7818_BAT -> XEIGTPW_11055_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11055_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-dg2-oem2: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#1033]) +8 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
Build changes
-------------
* IGT: IGT_7818 -> IGTPW_11055
IGTPW_11055: 11055
IGT_7818: 8e68eb5f6393f1be25ff775c094b427243a6a403 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1159-861eed75446fe9dbac9d28d11f44caa47cebeebf: 861eed75446fe9dbac9d28d11f44caa47cebeebf
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/index.html
[-- Attachment #2: Type: text/html, Size: 1999 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.BAT: failure for Force joiner support in bigjoiner checks (rev5)
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (7 preceding siblings ...)
2024-04-23 13:14 ` ✓ CI.xeBAT: success for Force joiner support in bigjoiner checks (rev5) Patchwork
@ 2024-04-23 13:18 ` Patchwork
2024-04-23 20:02 ` ✗ CI.xeFULL: " Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-04-23 13:18 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9413 bytes --]
== Series Details ==
Series: Force joiner support in bigjoiner checks (rev5)
URL : https://patchwork.freedesktop.org/series/132557/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7818 -> IGTPW_11055
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11055 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11055, 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_11055/index.html
Participating hosts (39 -> 35)
------------------------------
Additional (2): bat-arls-2 bat-mtlp-6
Missing (6): bat-mtlp-9 bat-adlp-9 fi-bsw-n3050 fi-snb-2520m bat-dg2-11 bat-jsl-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11055:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_fence@nb-await@ccs0:
- bat-arls-2: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-arls-2/igt@gem_exec_fence@nb-await@ccs0.html
Known issues
------------
Here are the changes found in IGTPW_11055 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-6: NOTRUN -> [SKIP][2] ([i915#9318])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@debugfs_test@basic-hwmon.html
- bat-arls-2: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-arls-2/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-mtlp-6: NOTRUN -> [SKIP][4] ([i915#1849] / [i915#2582])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@fbdev@info.html
* igt@fbdev@write:
- bat-mtlp-6: NOTRUN -> [SKIP][5] ([i915#2582]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@fbdev@write.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-6: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@gem_mmap@basic.html
* igt@gem_tiled_blits@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-mtlp-6: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-6: NOTRUN -> [SKIP][10] ([i915#6621])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][11] -> [DMESG-FAIL][12] ([i915#9500])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7818/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][13] ([i915#4212] / [i915#9792]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][14] ([i915#5190] / [i915#9792])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][15] ([i915#9792]) +17 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-mtlp-6: NOTRUN -> [SKIP][16] ([i915#3637] / [i915#9792]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-6: NOTRUN -> [SKIP][17] ([i915#5274] / [i915#9792])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][18] ([i915#4342] / [i915#5354] / [i915#9792])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pm_backlight@basic-brightness:
- bat-mtlp-6: NOTRUN -> [SKIP][19] ([i915#5354] / [i915#9792])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-mtlp-6: NOTRUN -> [SKIP][20] ([i915#1072] / [i915#9673] / [i915#9732] / [i915#9792]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-6: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#8809] / [i915#9792])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-mtlp-6: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#9792])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-6: NOTRUN -> [SKIP][23] ([i915#3708] / [i915#4077]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- bat-mtlp-6: NOTRUN -> [SKIP][24] ([i915#3708]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-mtlp-6: NOTRUN -> [SKIP][25] ([i915#10216] / [i915#3708])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/bat-mtlp-6/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [ABORT][26] ([i915#10594]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7818/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10594
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[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#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342
[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#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9500
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7818 -> IGTPW_11055
CI-20190529: 20190529
CI_DRM_14633: 861eed75446fe9dbac9d28d11f44caa47cebeebf @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11055: 11055
IGT_7818: 8e68eb5f6393f1be25ff775c094b427243a6a403 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11055/index.html
[-- Attachment #2: Type: text/html, Size: 11803 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ CI.xeFULL: failure for Force joiner support in bigjoiner checks (rev5)
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
` (8 preceding siblings ...)
2024-04-23 13:18 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-04-23 20:02 ` Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-04-23 20:02 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 35149 bytes --]
== Series Details ==
Series: Force joiner support in bigjoiner checks (rev5)
URL : https://patchwork.freedesktop.org/series/132557/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7818_full -> XEIGTPW_11055_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11055_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11055_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 -> 1)
------------------------------
ERROR: It appears as if the changes made in XEIGTPW_11055_full prevented too many machines from booting.
Missing (2): shard-adlp shard-lnl
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11055_full:
### IGT changes ###
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][1] ([Intel XE#1201] / [Intel XE#362]) -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_pm@s4-vm-bind-prefetch}:
- shard-dg2-set2: [FAIL][3] ([Intel XE#1043]) -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-464/igt@xe_pm@s4-vm-bind-prefetch.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-463/igt@xe_pm@s4-vm-bind-prefetch.html
Known issues
------------
Here are the changes found in XEIGTPW_11055_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1201] / [Intel XE#801]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [FAIL][6] ([Intel XE#650]) +7 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-dg2-set2: [PASS][7] -> [SKIP][8] ([Intel XE#1201] / [Intel XE#829]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#316])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-463/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-7:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#787]) +77 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-7.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +21 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][14] ([Intel XE#1178]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_cursor_edge_walk@64x64-left-edge:
- shard-dg2-set2: [PASS][15] -> [FAIL][16] ([Intel XE#581])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-435/igt@kms_cursor_edge_walk@64x64-left-edge.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_cursor_edge_walk@64x64-left-edge.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [PASS][17] -> [DMESG-WARN][18] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][19] ([Intel XE#1214] / [Intel XE#282])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-435/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@single-bo@pipe-a:
- shard-dg2-set2: [PASS][20] -> [DMESG-WARN][21] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#877])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-466/igt@kms_cursor_legacy@single-bo@pipe-a.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-436/igt@kms_cursor_legacy@single-bo@pipe-a.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2-set2: [PASS][22] -> [SKIP][23] ([Intel XE#1201] / [Intel XE#455])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#455]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#651]) +4 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#1201]) +10 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#653]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [PASS][29] -> [SKIP][30] ([Intel XE#1201] / [Intel XE#417])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-434/igt@kms_hdmi_inject@inject-audio.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_lease@master-vs-lease:
- shard-dg2-set2: [PASS][31] -> [SKIP][32] ([Intel XE#1201] / [Intel XE#1234])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-464/igt@kms_lease@master-vs-lease.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_lease@master-vs-lease.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- shard-dg2-set2: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#1033] / [Intel XE#1214]) +14 other tests dmesg-warn
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-433/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@read-crc@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][35] ([Intel XE#1033] / [Intel XE#1214])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@kms_pipe_crc_basic@read-crc@pipe-b-dp-4.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][36] ([Intel XE#361]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_pm_rpm@legacy-planes:
- shard-dg2-set2: [PASS][37] -> [SKIP][38] ([Intel XE#1201] / [Intel XE#1211]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-433/igt@kms_pm_rpm@legacy-planes.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_pm_rpm@legacy-planes.html
* igt@kms_prop_blob@blob-multiple:
- shard-dg2-set2: [PASS][39] -> [SKIP][40] ([Intel XE#1201] / [Intel XE#780])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-433/igt@kms_prop_blob@blob-multiple.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_prop_blob@blob-multiple.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#929])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-435/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_rmfb@close-fd:
- shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#294]) +2 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_rmfb@close-fd.html
* igt@kms_sysfs_edid_timing:
- shard-dg2-set2: [PASS][43] -> [FAIL][44] ([Intel XE#1174])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-466/igt@kms_sysfs_edid_timing.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-464/igt@kms_sysfs_edid_timing.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1091] / [Intel XE#1201])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_evict@evict-cm-threads-large-multi-vm:
- shard-dg2-set2: [PASS][46] -> [INCOMPLETE][47] ([Intel XE#1195] / [Intel XE#1473])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-434/igt@xe_evict@evict-cm-threads-large-multi-vm.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-464/igt@xe_evict@evict-cm-threads-large-multi-vm.html
* igt@xe_exec_fault_mode@many-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#288]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@xe_exec_fault_mode@many-basic-prefetch.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#1068])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-436/igt@xe_live_ktest@xe_mocs.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#1337])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#366])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-436/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [PASS][53] -> [DMESG-WARN][54] ([Intel XE#1162] / [Intel XE#1214])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@xe_pm@s3-basic-exec.html
#### Possible fixes ####
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][55] ([Intel XE#1201] / [Intel XE#829]) -> [PASS][56] +2 other tests pass
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-180.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_cursor_edge_walk@128x128-left-edge:
- shard-dg2-set2: [FAIL][57] ([Intel XE#581]) -> [PASS][58] +1 other test pass
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_cursor_edge_walk@128x128-left-edge.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_cursor_edge_walk@128x128-left-edge.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2-set2: [DMESG-WARN][59] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@forked-move@pipe-b:
- shard-dg2-set2: [DMESG-WARN][61] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][62] +7 other tests pass
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-433/igt@kms_cursor_legacy@forked-move@pipe-b.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-435/igt@kms_cursor_legacy@forked-move@pipe-b.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2-set2: [SKIP][63] ([Intel XE#1201] / [Intel XE#1235]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][65] ([Intel XE#1201] / [Intel XE#455]) -> [PASS][66] +1 other test pass
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-435/igt@kms_hdr@invalid-hdr.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2-set2: [SKIP][67] ([Intel XE#1201] / [Intel XE#1234]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-463/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [SKIP][69] ([Intel XE#1201] / [Intel XE#1211]) -> [PASS][70] +2 other tests pass
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][71] ([Intel XE#1201]) -> [PASS][72] +5 other tests pass
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-464/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-463/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-dg2-set2: [DMESG-WARN][73] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_vblank@ts-continuation-suspend.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [INCOMPLETE][75] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-436/igt@xe_evict@evict-beng-cm-threads-large.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [TIMEOUT][77] ([Intel XE#1473] / [Intel XE#821]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_exec_basic@many-basic:
- shard-dg2-set2: [FAIL][79] -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-464/igt@xe_exec_basic@many-basic.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-436/igt@xe_exec_basic@many-basic.html
* igt@xe_pm@d3hot-multiple-execs:
- shard-dg2-set2: [FAIL][81] ([Intel XE#355]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-464/igt@xe_pm@d3hot-multiple-execs.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-464/igt@xe_pm@d3hot-multiple-execs.html
* {igt@xe_pm@s3-vm-bind-userptr}:
- shard-dg2-set2: [DMESG-WARN][83] ([Intel XE#1214]) -> [PASS][84] +2 other tests pass
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-435/igt@xe_pm@s3-vm-bind-userptr.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@xe_pm@s3-vm-bind-userptr.html
#### Warnings ####
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][85] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][86] ([Intel XE#1201] / [Intel XE#829])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-464/igt@kms_big_fb@linear-32bpp-rotate-90.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][87] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][88] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][89] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][90] ([Intel XE#1201] / [Intel XE#829])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][91] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][92] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-464/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][93] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][94] ([Intel XE#1201] / [Intel XE#829])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2-set2: [SKIP][95] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][96] ([Intel XE#1201]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_chamelium_audio@hdmi-audio.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][97] ([Intel XE#1201]) -> [SKIP][98] ([Intel XE#1201] / [Intel XE#373]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2-set2: [DMESG-WARN][99] ([Intel XE#1214] / [Intel XE#282]) -> [SKIP][100] ([Intel XE#1201])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-435/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@single-bo:
- shard-dg2-set2: [DMESG-WARN][101] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][102] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#877])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-466/igt@kms_cursor_legacy@single-bo.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-436/igt@kms_cursor_legacy@single-bo.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][103] ([Intel XE#1201]) -> [SKIP][104] ([Intel XE#1201] / [Intel XE#455])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][105] ([Intel XE#1201]) -> [SKIP][106] ([Intel XE#1201] / [Intel XE#651]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][107] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][108] ([Intel XE#1201]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: [SKIP][109] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][110] ([Intel XE#1201]) +6 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][111] ([Intel XE#1201]) -> [SKIP][112] ([Intel XE#1201] / [Intel XE#653]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [DMESG-WARN][113] ([Intel XE#1214]) -> [DMESG-WARN][114] ([Intel XE#1033] / [Intel XE#1214]) +1 other test dmesg-warn
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2-set2: [FAIL][115] ([Intel XE#616]) -> [DMESG-FAIL][116] ([Intel XE#1162]) +3 other tests dmesg-fail
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-433/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-dg2-set2: [INCOMPLETE][117] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][118] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-433/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-463/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][119] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][120] ([Intel XE#904] / [Intel XE#909])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-433/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-6.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-463/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-6.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-dg2-set2: [SKIP][121] ([Intel XE#1201]) -> [SKIP][122] ([Intel XE#1201] / [Intel XE#929])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@kms_psr@fbc-pr-cursor-plane-move.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][123] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][124] ([Intel XE#1201]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2-set2: [SKIP][125] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][126] ([Intel XE#1201]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-435/igt@kms_vrr@seamless-rr-switch-vrr.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-466/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [INCOMPLETE][127] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][128] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [DMESG-FAIL][129] ([Intel XE#821]) -> [FAIL][130] ([Intel XE#1041])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-464/igt@xe_evict@evict-large-multi-vm-cm.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-435/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [INCOMPLETE][131] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][132] ([Intel XE#1473] / [Intel XE#392])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-435/igt@xe_evict@evict-threads-large.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-435/igt@xe_evict@evict-threads-large.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [FAIL][133] ([Intel XE#1043] / [Intel XE#845]) -> [DMESG-FAIL][134] ([Intel XE#1162] / [Intel XE#1551])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-433/igt@xe_pm@s4-basic.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-436/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-basic-exec:
- shard-dg2-set2: [DMESG-FAIL][135] ([Intel XE#1162]) -> [FAIL][136] ([Intel XE#1043] / [Intel XE#845])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@xe_pm@s4-basic-exec.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-433/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-multiple-execs:
- shard-dg2-set2: [DMESG-FAIL][137] ([Intel XE#1162] / [Intel XE#1551]) -> [FAIL][138] ([Intel XE#1043] / [Intel XE#845])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7818/shard-dg2-463/igt@xe_pm@s4-multiple-execs.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11055/shard-dg2-434/igt@xe_pm@s4-multiple-execs.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#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1043]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1043
[Intel XE#1068]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1068
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1234
[Intel XE#1235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1235
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[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#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/355
[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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/380
[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#581]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/581
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/650
[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#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[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#821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/821
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#845]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/845
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/904
[Intel XE#909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/909
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
Build changes
-------------
* IGT: IGT_7818 -> IGTPW_11055
IGTPW_11055: 11055
IGT_7818: 8e68eb5f6393f1be25ff775c094b427243a6a403 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1159-861eed75446fe9dbac9d28d11f44caa47cebeebf: 861eed75446fe9dbac9d28d11f44caa47cebeebf
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-132557v5/index.html
[-- Attachment #2: Type: text/html, Size: 47738 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-04-23 20:02 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-23 12:26 [i-g-t V4 0/7] Force joiner support in bigjoiner checks Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 1/7] lib/igt_kms: Update force joiner debugfs check Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 2/7] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 3/7] lib/igt_kms: Force joiner support in bigjoiner checks Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 4/7] tests/intel/kms_pm_lpsp: " Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 5/7] tests/kms_flip: " Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 6/7] tests/kms_setmode: " Bhanuprakash Modem
2024-04-23 12:26 ` [i-g-t V4 7/7] HAX: Test force joiner on BAT Bhanuprakash Modem
2024-04-23 13:14 ` ✓ CI.xeBAT: success for Force joiner support in bigjoiner checks (rev5) Patchwork
2024-04-23 13:18 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-04-23 20:02 ` ✗ 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