* [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf
2024-01-21 12:57 [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf Kunal Joshi
@ 2024-01-21 12:57 ` Kunal Joshi
0 siblings, 0 replies; 13+ messages in thread
From: Kunal Joshi @ 2024-01-21 12:57 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/intel/kms_psr2_sf.c | 119 ++++++++++++++++++++++----------------
1 file changed, 69 insertions(+), 50 deletions(-)
diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c
index c826cd7c3..8f34f46b9 100644
--- a/tests/intel/kms_psr2_sf.c
+++ b/tests/intel/kms_psr2_sf.c
@@ -979,6 +979,21 @@ pipe_output_combo_valid(igt_display_t *display,
return ret;
}
+static const char *get_psr_mode_for_output(data_t *data, igt_output_t *output)
+{
+ const char *psr_mode = NULL;
+
+ if (psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE_SEL_FETCH,
+ output))
+ psr_mode = "pr-";
+ else if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_2,
+ output))
+ psr_mode = "psr2-";
+ else
+ igt_assert_f(false, "PR/PSR2 selective fetch not supported\n");
+ return psr_mode;
+}
+
igt_main
{
data_t data = {};
@@ -1001,11 +1016,6 @@ igt_main
data.debugfs_fd = igt_debugfs_dir(data.drm_fd);
kmstest_set_vt_graphics_mode();
- igt_require_f(psr_sink_support(data.drm_fd,
- data.debugfs_fd, PSR_MODE_2,
- NULL),
- "Sink does not support PSR2\n");
-
display_init(&data);
if ((intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20) &&
@@ -1013,10 +1023,6 @@ igt_main
data.fbc_flag = true;
}
- /* Test if PSR2 can be enabled */
- igt_require_f(psr_enable(data.drm_fd,
- data.debugfs_fd, PSR_MODE_2_SEL_FETCH),
- "Error enabling PSR2\n");
data.damage_area_count = MAX_DAMAGE_AREAS;
data.primary_format = DRM_FORMAT_XRGB8888;
@@ -1055,7 +1061,7 @@ igt_main
/* Verify primary plane selective fetch */
igt_describe("Test that selective fetch works on primary plane");
igt_subtest_with_dynamic_f("%sprimary-%s-sf-dmg-area", append_fbc_subtest[y],
- op_str(data.op)) {
+ op_str(data.op)) {
for (i = 0; i < n_pipes; i++) {
if (!pipe_output_combo_valid(&data.display, pipes[i], outputs[i]))
continue;
@@ -1063,9 +1069,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
@@ -1096,10 +1103,11 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s",
- kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s",
+ get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
@@ -1128,9 +1136,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
@@ -1158,9 +1167,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
@@ -1184,9 +1194,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
@@ -1211,9 +1222,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
@@ -1238,9 +1250,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
@@ -1266,9 +1279,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
@@ -1295,9 +1309,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
@@ -1322,9 +1337,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
@@ -1349,9 +1365,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
@@ -1377,9 +1394,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
for (k = 1; k <= MAX_DAMAGE_AREAS; k++) {
@@ -1410,9 +1428,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_for_output(&data, outputs[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.damage_area_count = 1;
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf
2024-01-22 7:49 [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf Kunal Joshi
@ 2024-01-22 7:49 ` Kunal Joshi
2024-02-05 12:28 ` Hogander, Jouni
0 siblings, 1 reply; 13+ messages in thread
From: Kunal Joshi @ 2024-01-22 7:49 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Arun R Murthy
v2: fixed dynamic test name
Cc: Jouni Högander <jouni.hogander@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Cc: Arun R Murthy <arun.r.murthy@intel.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/intel/kms_psr2_sf.c | 119 ++++++++++++++++++++++----------------
1 file changed, 69 insertions(+), 50 deletions(-)
diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c
index c826cd7c3..29a187fc4 100644
--- a/tests/intel/kms_psr2_sf.c
+++ b/tests/intel/kms_psr2_sf.c
@@ -979,6 +979,21 @@ pipe_output_combo_valid(igt_display_t *display,
return ret;
}
+static const char *get_psr_mode_for_output(data_t *data, igt_output_t *output)
+{
+ const char *psr_mode = NULL;
+
+ if (psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE_SEL_FETCH,
+ output))
+ psr_mode = "pr-";
+ else if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_2,
+ output))
+ psr_mode = "psr2-";
+ else
+ igt_assert_f(false, "PR/PSR2 selective fetch not supported\n");
+ return psr_mode;
+}
+
igt_main
{
data_t data = {};
@@ -1001,11 +1016,6 @@ igt_main
data.debugfs_fd = igt_debugfs_dir(data.drm_fd);
kmstest_set_vt_graphics_mode();
- igt_require_f(psr_sink_support(data.drm_fd,
- data.debugfs_fd, PSR_MODE_2,
- NULL),
- "Sink does not support PSR2\n");
-
display_init(&data);
if ((intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20) &&
@@ -1013,10 +1023,6 @@ igt_main
data.fbc_flag = true;
}
- /* Test if PSR2 can be enabled */
- igt_require_f(psr_enable(data.drm_fd,
- data.debugfs_fd, PSR_MODE_2_SEL_FETCH),
- "Error enabling PSR2\n");
data.damage_area_count = MAX_DAMAGE_AREAS;
data.primary_format = DRM_FORMAT_XRGB8888;
@@ -1055,7 +1061,7 @@ igt_main
/* Verify primary plane selective fetch */
igt_describe("Test that selective fetch works on primary plane");
igt_subtest_with_dynamic_f("%sprimary-%s-sf-dmg-area", append_fbc_subtest[y],
- op_str(data.op)) {
+ op_str(data.op)) {
for (i = 0; i < n_pipes; i++) {
if (!pipe_output_combo_valid(&data.display, pipes[i], outputs[i]))
continue;
@@ -1063,9 +1069,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
@@ -1096,10 +1103,11 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s",
- kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s",
+ get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
@@ -1128,9 +1136,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
@@ -1158,9 +1167,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
@@ -1184,9 +1194,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
@@ -1211,9 +1222,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
@@ -1238,9 +1250,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
@@ -1266,9 +1279,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
@@ -1295,9 +1309,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
@@ -1322,9 +1337,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
@@ -1349,9 +1365,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
@@ -1377,9 +1394,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
for (k = 1; k <= MAX_DAMAGE_AREAS; k++) {
@@ -1410,9 +1428,10 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
- igt_output_name(outputs[i]),
- coexist_feature_str(j)) {
+ igt_dynamic_f("%spipe-%s-%s%s", get_psr_mode_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
+ igt_output_name(outputs[i]),
+ coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.damage_area_count = 1;
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf
2024-01-22 7:49 ` [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf Kunal Joshi
@ 2024-02-05 12:28 ` Hogander, Jouni
0 siblings, 0 replies; 13+ messages in thread
From: Hogander, Jouni @ 2024-02-05 12:28 UTC (permalink / raw)
To: Joshi, Kunal1, igt-dev@lists.freedesktop.org
Cc: Murthy, Arun R, Manna, Animesh
On Mon, 2024-01-22 at 13:19 +0530, Kunal Joshi wrote:
> v2: fixed dynamic test name
I think you should modify check_psr2_support to take into account
outputs supporting PR.
BR,
Jouni Högander
>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Cc: Animesh Manna <animesh.manna@intel.com>
> Cc: Arun R Murthy <arun.r.murthy@intel.com>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> tests/intel/kms_psr2_sf.c | 119 ++++++++++++++++++++++--------------
> --
> 1 file changed, 69 insertions(+), 50 deletions(-)
>
> diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c
> index c826cd7c3..29a187fc4 100644
> --- a/tests/intel/kms_psr2_sf.c
> +++ b/tests/intel/kms_psr2_sf.c
> @@ -979,6 +979,21 @@ pipe_output_combo_valid(igt_display_t *display,
> return ret;
> }
>
> +static const char *get_psr_mode_for_output(data_t *data,
> igt_output_t *output)
> +{
> + const char *psr_mode = NULL;
> +
> + if (psr_sink_support(data->drm_fd, data->debugfs_fd,
> PR_MODE_SEL_FETCH,
> + output))
> + psr_mode = "pr-";
> + else if (psr_sink_support(data->drm_fd, data->debugfs_fd,
> PSR_MODE_2,
> + output))
> + psr_mode = "psr2-";
> + else
> + igt_assert_f(false, "PR/PSR2 selective fetch not
> supported\n");
> + return psr_mode;
> +}
> +
> igt_main
> {
> data_t data = {};
> @@ -1001,11 +1016,6 @@ igt_main
> data.debugfs_fd = igt_debugfs_dir(data.drm_fd);
> kmstest_set_vt_graphics_mode();
>
> - igt_require_f(psr_sink_support(data.drm_fd,
> - data.debugfs_fd,
> PSR_MODE_2,
> - NULL),
> - "Sink does not support PSR2\n");
> -
> display_init(&data);
>
> if
> ((intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20) &&
> @@ -1013,10 +1023,6 @@ igt_main
> data.fbc_flag = true;
> }
>
> - /* Test if PSR2 can be enabled */
> - igt_require_f(psr_enable(data.drm_fd,
> - data.debugfs_fd,
> PSR_MODE_2_SEL_FETCH),
> - "Error enabling PSR2\n");
>
> data.damage_area_count = MAX_DAMAGE_AREAS;
> data.primary_format = DRM_FORMAT_XRGB8888;
> @@ -1055,7 +1061,7 @@ igt_main
> /* Verify primary plane selective fetch */
> igt_describe("Test that selective fetch works on
> primary plane");
> igt_subtest_with_dynamic_f("%sprimary-%s-sf-dmg-
> area", append_fbc_subtest[y],
> - op_str(data.op)) {
> +
> op_str(data.op)) {
> for (i = 0; i < n_pipes; i++) {
> if
> (!pipe_output_combo_valid(&data.display, pipes[i], outputs[i]))
> continue;
> @@ -1063,9 +1069,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_PRIMARY;
> @@ -1096,10 +1103,11 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE
> && !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-
> %s-%s%s",
> -
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe
> -%s-%s%s",
> +
> get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe =
> pipes[i];
> data.output =
> outputs[i];
> data.test_pla
> ne_id = DRM_PLANE_TYPE_PRIMARY;
> @@ -1128,9 +1136,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> @@ -1158,9 +1167,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_CURSOR;
> @@ -1184,9 +1194,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_CURSOR;
> @@ -1211,9 +1222,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_CURSOR;
> @@ -1238,9 +1250,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_CURSOR;
> @@ -1266,9 +1279,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> @@ -1295,9 +1309,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output = outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> @@ -1322,9 +1337,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> @@ -1349,9 +1365,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> @@ -1377,9 +1394,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> for (k = 1; k <=
> MAX_DAMAGE_AREAS; k++) {
> @@ -1410,9 +1428,10 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> -
> igt_output_name(outputs[i]),
> -
> coexist_feature_str(j)) {
> + igt_dynamic_f("%spipe-%s-
> %s%s", get_psr_mode_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
> +
> igt_output_name(outputs[i]),
> +
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.damage_area_coun
> t = 1;
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf
@ 2024-02-08 14:54 Kunal Joshi
2024-02-08 14:54 ` [PATCH i-g-t 1/2] lib/igt_psr: add support for PR selective update Kunal Joshi
` (4 more replies)
0 siblings, 5 replies; 13+ messages in thread
From: Kunal Joshi @ 2024-02-08 14:54 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
kmd series [1] adds supports for panel replay selective fetch,
modify lib and kms_psr2_sf to extend kms_psr2_sf tests to validate
panel replay selective fetch as well.
[1] https://patchwork.freedesktop.org/patch/575163/?series=128193&rev=3
Kunal Joshi (2):
lib/igt_psr: add support for PR selective update
tests/intel/kms_psr2_sf: extend tests for panel replay sf
lib/igt_psr.c | 98 +++++++++-------
lib/igt_psr.h | 14 +--
tests/intel/kms_dirtyfb.c | 4 +-
tests/intel/kms_fbcon_fbt.c | 4 +-
tests/intel/kms_frontbuffer_tracking.c | 4 +-
tests/intel/kms_pm_dc.c | 6 +-
tests/intel/kms_psr.c | 4 +-
tests/intel/kms_psr2_sf.c | 155 +++++++++++++++++++------
tests/intel/kms_psr2_su.c | 2 +-
tests/intel/kms_psr_stress_test.c | 4 +-
tests/kms_async_flips.c | 4 +-
tests/kms_cursor_legacy.c | 4 +-
12 files changed, 204 insertions(+), 99 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 1/2] lib/igt_psr: add support for PR selective update
2024-02-08 14:54 [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf Kunal Joshi
@ 2024-02-08 14:54 ` Kunal Joshi
2024-02-16 7:01 ` Hogander, Jouni
2024-02-08 14:54 ` [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf Kunal Joshi
` (3 subsequent siblings)
4 siblings, 1 reply; 13+ messages in thread
From: Kunal Joshi @ 2024-02-08 14:54 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Jouni Högander, Animesh Manna, Arun R Murthy
adapt to kmd changes to support PR selective update
https://patchwork.freedesktop.org/patch/575163/?series=128193&rev=3
v2: "PSR2 selective fetch: enable" valid for both cases (Jouni)
v3: Organize patches according to title (Jouni)
Use macro instead of function (Jouni)
Cc: Jouni Högander <jouni.hogander@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Cc: Arun R Murthy <arun.r.murthy@intel.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
lib/igt_psr.c | 98 ++++++++++++++++----------
lib/igt_psr.h | 14 ++--
tests/intel/kms_dirtyfb.c | 4 +-
tests/intel/kms_fbcon_fbt.c | 4 +-
tests/intel/kms_frontbuffer_tracking.c | 4 +-
tests/intel/kms_pm_dc.c | 6 +-
tests/intel/kms_psr.c | 4 +-
tests/intel/kms_psr2_sf.c | 8 ---
tests/intel/kms_psr2_su.c | 2 +-
tests/intel/kms_psr_stress_test.c | 4 +-
tests/kms_async_flips.c | 4 +-
tests/kms_cursor_legacy.c | 4 +-
12 files changed, 84 insertions(+), 72 deletions(-)
diff --git a/lib/igt_psr.c b/lib/igt_psr.c
index ac214fcfc..9accd2047 100644
--- a/lib/igt_psr.c
+++ b/lib/igt_psr.c
@@ -27,6 +27,10 @@
#include "igt_sysfs.h"
#include <errno.h>
+#define SET_DEBUGFS_PATH(output, path) \
+ sprintf(path, "%s%s%s", output ? output->name : "", output ? "/" : "", \
+ output ? "i915_psr_status" : "i915_edp_psr_status")
+
bool psr_disabled_check(int debugfs_fd)
{
char buf[PSR_STATUS_MAX_LEN];
@@ -37,11 +41,13 @@ bool psr_disabled_check(int debugfs_fd)
return strstr(buf, "PSR mode: disabled\n");
}
-bool psr2_selective_fetch_check(int debugfs_fd)
+bool selective_fetch_check(int debugfs_fd, igt_output_t *output)
{
char buf[PSR_STATUS_MAX_LEN];
+ char debugfs_file[128] = {0};
- igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf,
+ SET_DEBUGFS_PATH(output, debugfs_file);
+ igt_debugfs_simple_read(debugfs_fd, debugfs_file, buf,
sizeof(buf));
return strstr(buf, "PSR2 selective fetch: enabled");
@@ -54,11 +60,7 @@ static bool psr_active_check(int debugfs_fd, enum psr_mode mode, igt_output_t *o
const char *state = (mode == PSR_MODE_1 || mode == PR_MODE) ? "SRDENT" : "DEEP_SLEEP";
int ret;
- if (output)
- sprintf(debugfs_file, "%s/i915_psr_status", output->name);
- else
- sprintf(debugfs_file, "%s", "i915_edp_psr_status");
-
+ SET_DEBUGFS_PATH(output, debugfs_file);
ret = igt_debugfs_simple_read(debugfs_fd, debugfs_file,
buf, sizeof(buf));
if (ret < 0) {
@@ -90,13 +92,18 @@ bool psr_long_wait_update(int debugfs_fd, enum psr_mode mode, igt_output_t *outp
return igt_wait(!psr_active_check(debugfs_fd, mode, output), 500, 10);
}
-static ssize_t psr_write(int debugfs_fd, const char *buf)
+static ssize_t psr_write(int debugfs_fd, const char *buf, igt_output_t *output)
{
+ /*
+ * FIXME: Currently we don't have separate psr_debug file for each output.
+ * so, we are using i915_edp_psr_debug file for all outputs.
+ * Later we need to add support for separate psr_debug file for each output.
+ */
return igt_sysfs_write(debugfs_fd, "i915_edp_psr_debug", buf,
- strlen(buf));
+ strlen(buf));
}
-static int has_psr_debugfs(int debugfs_fd)
+static int has_psr_debugfs(int debugfs_fd, igt_output_t *output)
{
int ret;
@@ -105,7 +112,7 @@ static int has_psr_debugfs(int debugfs_fd)
* Legacy mode will return OK here, debugfs api will return -EINVAL.
* -ENODEV is returned when PSR is unavailable.
*/
- ret = psr_write(debugfs_fd, "0xf");
+ ret = psr_write(debugfs_fd, "0xf", output);
if (ret == -EINVAL) {
errno = 0;
return 0;
@@ -113,7 +120,7 @@ static int has_psr_debugfs(int debugfs_fd)
return ret;
/* legacy debugfs api, we enabled irqs by writing, disable them. */
- psr_write(debugfs_fd, "0");
+ psr_write(debugfs_fd, "0", output);
return -EINVAL;
}
@@ -134,14 +141,14 @@ static int psr_restore_debugfs_fd = -1;
static void restore_psr_debugfs(int sig)
{
- psr_write(psr_restore_debugfs_fd, "0");
+ psr_write(psr_restore_debugfs_fd, "0", NULL);
}
-static bool psr_set(int device, int debugfs_fd, int mode)
+static bool psr_set(int device, int debugfs_fd, int mode, igt_output_t *output)
{
int ret;
- ret = has_psr_debugfs(debugfs_fd);
+ ret = has_psr_debugfs(debugfs_fd, output);
if (ret == -ENODEV) {
igt_skip("PSR not available\n");
return false;
@@ -179,7 +186,7 @@ static bool psr_set(int device, int debugfs_fd, int mode)
debug_val = "0x1";
}
- ret = psr_write(debugfs_fd, debug_val);
+ ret = psr_write(debugfs_fd, debug_val, output);
igt_require_f(ret > 0, "PSR2 SF feature not available\n");
}
@@ -193,15 +200,15 @@ static bool psr_set(int device, int debugfs_fd, int mode)
return ret;
}
-bool psr_enable(int device, int debugfs_fd, enum psr_mode mode)
+bool psr_enable(int device, int debugfs_fd, enum psr_mode mode, igt_output_t *output)
{
- return psr_set(device, debugfs_fd, mode);
+ return psr_set(device, debugfs_fd, mode, output);
}
-bool psr_disable(int device, int debugfs_fd)
+bool psr_disable(int device, int debugfs_fd, igt_output_t *output)
{
/* Any mode different than PSR_MODE_1/2 will disable PSR */
- return psr_set(device, debugfs_fd, -1);
+ return psr_set(device, debugfs_fd, -1, output);
}
bool psr_sink_support(int device, int debugfs_fd, enum psr_mode mode, igt_output_t *output)
@@ -211,11 +218,7 @@ bool psr_sink_support(int device, int debugfs_fd, enum psr_mode mode, igt_output
char buf[PSR_STATUS_MAX_LEN];
int ret;
- if (output)
- sprintf(debugfs_file, "%s/i915_psr_status", output->name);
- else
- sprintf(debugfs_file, "%s", "i915_edp_psr_status");
-
+ SET_DEBUGFS_PATH(output, debugfs_file);
ret = igt_debugfs_simple_read(debugfs_fd, debugfs_file, buf,
sizeof(buf));
if (ret < 1)
@@ -245,7 +248,9 @@ bool psr_sink_support(int device, int debugfs_fd, enum psr_mode mode, igt_output
(strstr(line, "PSR = yes") &&
(strstr(line, "[0x03]") || strstr(line, "[0x04]")));
case PR_MODE:
- return strstr(line, "Panel Replay = yes");
+ return strstr(line, "Panel Replay = yes, Panel Replay Selective Update = no");
+ case PR_MODE_SEL_FETCH:
+ return strstr(line, "Panel Replay = yes, Panel Replay Selective Update = yes");
default:
igt_assert_f(false, "Invalid psr mode\n");
return false;
@@ -305,7 +310,7 @@ void psr_print_debugfs(int debugfs_fd)
igt_info("%s", buf);
}
-bool i915_psr2_selective_fetch_check(int drm_fd)
+bool i915_psr2_selective_fetch_check(int drm_fd, igt_output_t *output)
{
int debugfs_fd;
bool ret;
@@ -314,7 +319,7 @@ bool i915_psr2_selective_fetch_check(int drm_fd)
return false;
debugfs_fd = igt_debugfs_dir(drm_fd);
- ret = psr2_selective_fetch_check(debugfs_fd);
+ ret = selective_fetch_check(debugfs_fd, output);
close(debugfs_fd);
return ret;
@@ -331,17 +336,24 @@ bool i915_psr2_selective_fetch_check(int drm_fd)
* Returns:
* True if PSR mode changed to PSR1, false otherwise.
*/
-bool i915_psr2_sel_fetch_to_psr1(int drm_fd)
+bool i915_pr_psr2_sel_fetch_to_pr_psr1(int drm_fd, igt_output_t *output)
{
int debugfs_fd;
bool ret = false;
+ enum psr_mode mode;
if (!is_intel_device(drm_fd))
return ret;
debugfs_fd = igt_debugfs_dir(drm_fd);
- if (psr2_selective_fetch_check(debugfs_fd)) {
- psr_set(drm_fd, debugfs_fd, PSR_MODE_1);
+ if (selective_fetch_check(debugfs_fd, output)) {
+ mode = psr_get_mode(debugfs_fd, output);
+ if (mode == PR_MODE_SEL_FETCH)
+ psr_set(drm_fd, debugfs_fd, PR_MODE, output);
+ else if (mode == PSR_MODE_2_SEL_FETCH)
+ psr_set(drm_fd, debugfs_fd, PSR_MODE_1, output);
+ else
+ igt_assert("switch not possible from current psr mode\n");
ret = true;
}
@@ -355,12 +367,17 @@ bool i915_psr2_sel_fetch_to_psr1(int drm_fd)
* Restore PSR2 selective fetch after tests were executed, this function should
* only be called if i915_psr2_sel_fetch_to_psr1() returned true.
*/
-void i915_psr2_sel_fetch_restore(int drm_fd)
+void i915_pr_psr2_sel_fetch_restore(int drm_fd, igt_output_t *output)
{
int debugfs_fd;
+ enum psr_mode mode;
debugfs_fd = igt_debugfs_dir(drm_fd);
- psr_set(drm_fd, debugfs_fd, PSR_MODE_2_SEL_FETCH);
+ mode = psr_get_mode(debugfs_fd, output);
+ if (mode == PR_MODE)
+ psr_set(drm_fd, debugfs_fd, PR_MODE_SEL_FETCH, output);
+ else
+ psr_set(drm_fd, debugfs_fd, PSR_MODE_2_SEL_FETCH, output);
close(debugfs_fd);
}
@@ -369,27 +386,30 @@ void i915_psr2_sel_fetch_restore(int drm_fd)
*
* Return the current PSR mode.
*/
-enum psr_mode psr_get_mode(int debugfs_fd)
+enum psr_mode psr_get_mode(int debugfs_fd, igt_output_t *output)
{
char buf[PSR_STATUS_MAX_LEN];
+ char debugfs_file[128] = {0};
int ret;
-
- ret = igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf,
+ SET_DEBUGFS_PATH(output, debugfs_file);
+ ret = igt_debugfs_simple_read(debugfs_fd, debugfs_file, buf,
sizeof(buf));
if (ret < 0) {
- igt_info("Could not read i915_edp_psr_status: %s\n",
+ igt_info("Could not read psr status: %s\n",
strerror(-ret));
return PSR_DISABLED;
}
if (strstr(buf, "Panel Replay Enabled"))
return PR_MODE;
+ else if (strstr(buf, "Panel Replay Selective Update Enabled"))
+ return PR_MODE_SEL_FETCH;
else if (strstr(buf, "PSR2 selective fetch: enabled"))
return PSR_MODE_2_SEL_FETCH;
- else if (strstr(buf, "PSR2 enabled"))
+ else if (strstr(buf, "PSR2"))
return PSR_MODE_2;
- else if (strstr(buf, "PSR1 enabled"))
+ else if (strstr(buf, "PSR1"))
return PSR_MODE_1;
return PSR_DISABLED;
diff --git a/lib/igt_psr.h b/lib/igt_psr.h
index 82a4e8c5e..36ba7f068 100644
--- a/lib/igt_psr.h
+++ b/lib/igt_psr.h
@@ -46,21 +46,21 @@ enum fbc_mode {
};
bool psr_disabled_check(int debugfs_fd);
-bool psr2_selective_fetch_check(int debugfs_fd);
+bool selective_fetch_check(int debugfs_fd, igt_output_t *output);
bool psr_wait_entry(int debugfs_fd, enum psr_mode mode, igt_output_t *output);
bool psr_wait_update(int debugfs_fd, enum psr_mode mode, igt_output_t *output);
bool psr_long_wait_update(int debugfs_fd, enum psr_mode mode, igt_output_t *output);
-bool psr_enable(int device, int debugfs_fd, enum psr_mode);
-bool psr_disable(int device, int debugfs_fd);
+bool psr_enable(int device, int debugfs_fd, enum psr_mode, igt_output_t *output);
+bool psr_disable(int device, int debugfs_fd, igt_output_t *output);
bool psr_sink_support(int device, int debugfs_fd, enum psr_mode mode, igt_output_t *output);
bool psr2_wait_su(int debugfs_fd, uint16_t *num_su_blocks);
void psr_print_debugfs(int debugfs_fd);
-enum psr_mode psr_get_mode(int debugfs_fd);
+enum psr_mode psr_get_mode(int debugfs_fd, igt_output_t *output);
-bool i915_psr2_selective_fetch_check(int drm_fd);
+bool i915_psr2_selective_fetch_check(int drm_fd, igt_output_t *output);
-bool i915_psr2_sel_fetch_to_psr1(int drm_fd);
-void i915_psr2_sel_fetch_restore(int drm_fd);
+bool i915_pr_psr2_sel_fetch_to_pr_psr1(int drm_fd, igt_output_t *output);
+void i915_pr_psr2_sel_fetch_restore(int drm_fd, igt_output_t *output);
bool is_psr_enable_possible(int drm_fd, enum psr_mode mode);
#endif
diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c
index 7bf49cb15..22ca83305 100644
--- a/tests/intel/kms_dirtyfb.c
+++ b/tests/intel/kms_dirtyfb.c
@@ -127,7 +127,7 @@ static void enable_feature(data_t *data)
intel_fbc_enable(data->drm_fd);
break;
case FEATURE_PSR:
- psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1);
+ psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL);
break;
case FEATURE_DRRS:
intel_drrs_enable(data->drm_fd, data->pipe);
@@ -167,7 +167,7 @@ static void check_feature(data_t *data)
static void disable_features(data_t *data)
{
intel_fbc_disable(data->drm_fd);
- psr_disable(data->drm_fd, data->debugfs_fd);
+ psr_disable(data->drm_fd, data->debugfs_fd, NULL);
intel_drrs_disable(data->drm_fd, data->pipe);
}
diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
index 90484dccf..71e42f19c 100644
--- a/tests/intel/kms_fbcon_fbt.c
+++ b/tests/intel/kms_fbcon_fbt.c
@@ -277,7 +277,7 @@ static void disable_features(int device, int debugfs_fd)
{
igt_set_module_param_int(device, "enable_fbc", 0);
if (psr_sink_support(device, debugfs_fd, PSR_MODE_1, NULL))
- psr_disable(device, debugfs_fd);
+ psr_disable(device, debugfs_fd, NULL);
}
static inline void fbc_modparam_enable(int device, int debugfs_fd)
@@ -287,7 +287,7 @@ static inline void fbc_modparam_enable(int device, int debugfs_fd)
static inline void psr_debugfs_enable(int device, int debugfs_fd)
{
- psr_enable(device, debugfs_fd, PSR_MODE_1);
+ psr_enable(device, debugfs_fd, PSR_MODE_1, NULL);
}
static void fbc_skips_on_fbcon(int debugfs_fd)
diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
index 912cca3f8..023843161 100644
--- a/tests/intel/kms_frontbuffer_tracking.c
+++ b/tests/intel/kms_frontbuffer_tracking.c
@@ -2234,7 +2234,7 @@ static bool disable_features(const struct test_mode *t)
intel_fbc_disable(drm.fd);
intel_drrs_disable(drm.fd, prim_mode_params.pipe);
- return psr.can_test ? psr_disable(drm.fd, drm.debugfs) : false;
+ return psr.can_test ? psr_disable(drm.fd, drm.debugfs, NULL) : false;
}
static void *busy_thread_func(void *data)
@@ -2867,7 +2867,7 @@ static bool enable_features_for_test(const struct test_mode *t)
if (t->feature & FEATURE_FBC)
intel_fbc_enable(drm.fd);
if (t->feature & FEATURE_PSR)
- ret = psr_enable(drm.fd, drm.debugfs, PSR_MODE_1);
+ ret = psr_enable(drm.fd, drm.debugfs, PSR_MODE_1, NULL);
if (t->feature & FEATURE_DRRS)
intel_drrs_enable(drm.fd, prim_mode_params.pipe);
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 0d5824e67..7deebf83d 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -362,7 +362,7 @@ static void require_dc_counter(int debugfs_fd, int dc_flag)
static void setup_dc3co(data_t *data)
{
data->op_psr_mode = PSR_MODE_2;
- psr_enable(data->drm_fd, data->debugfs_fd, data->op_psr_mode);
+ psr_enable(data->drm_fd, data->debugfs_fd, data->op_psr_mode, NULL);
igt_require_f(psr_wait_entry(data->debugfs_fd, data->op_psr_mode, NULL),
"PSR2 is not enabled\n");
}
@@ -665,7 +665,7 @@ igt_main
igt_require(psr_sink_support(data.drm_fd, data.debugfs_fd,
PSR_MODE_1, NULL));
data.op_psr_mode = PSR_MODE_1;
- psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode);
+ psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
test_dc_state_psr(&data, CHECK_DC5);
}
@@ -675,7 +675,7 @@ igt_main
igt_require(psr_sink_support(data.drm_fd, data.debugfs_fd,
PSR_MODE_1, NULL));
data.op_psr_mode = PSR_MODE_1;
- psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode);
+ psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
"PC8+ residencies not supported\n");
if (intel_display_ver(data.devid) >= 14)
diff --git a/tests/intel/kms_psr.c b/tests/intel/kms_psr.c
index 521d4c708..3822b3081 100644
--- a/tests/intel/kms_psr.c
+++ b/tests/intel/kms_psr.c
@@ -519,7 +519,7 @@ static bool psr_enable_if_enabled(data_t *data)
igt_skip("enable_psr modparam doesn't allow psr mode %d\n",
data->op_psr_mode);
- return psr_enable(data->drm_fd, data->debugfs_fd, data->op_psr_mode);
+ return psr_enable(data->drm_fd, data->debugfs_fd, data->op_psr_mode, data->output);
}
static inline void manual(const char *expected)
@@ -658,6 +658,7 @@ static void test_cleanup(data_t *data)
igt_remove_fb(data->drm_fd, &data->fb_green);
igt_remove_fb(data->drm_fd, &data->fb_white);
+ psr_disable(data->drm_fd, data->debugfs_fd, data->output);
}
static void setup_test_plane(data_t *data, int test_plane)
@@ -976,7 +977,6 @@ igt_main
}
igt_fixture {
- psr_disable(data.drm_fd, data.debugfs_fd);
close(data.debugfs_fd);
buf_ops_destroy(data.bops);
diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c
index ecf9ad77f..8e6a9e02c 100644
--- a/tests/intel/kms_psr2_sf.c
+++ b/tests/intel/kms_psr2_sf.c
@@ -1012,11 +1012,6 @@ igt_main
data.fbc_flag = true;
}
- /* Test if PSR2 can be enabled */
- igt_require_f(psr_enable(data.drm_fd,
- data.debugfs_fd, PSR_MODE_2_SEL_FETCH),
- "Error enabling PSR2\n");
-
data.damage_area_count = MAX_DAMAGE_AREAS;
data.primary_format = DRM_FORMAT_XRGB8888;
@@ -1026,9 +1021,6 @@ igt_main
igt_info("Big framebuffer size %dx%d\n",
data.big_fb_width, data.big_fb_height);
- igt_require_f(psr2_selective_fetch_check(data.debugfs_fd),
- "PSR2 selective fetch not enabled\n");
-
for_each_pipe_with_valid_output(&data.display, data.pipe, data.output) {
coexist_features[n_pipes] = 0;
if (check_psr2_support(&data)) {
diff --git a/tests/intel/kms_psr2_su.c b/tests/intel/kms_psr2_su.c
index 936b5beb3..437ee36f6 100644
--- a/tests/intel/kms_psr2_su.c
+++ b/tests/intel/kms_psr2_su.c
@@ -338,7 +338,7 @@ igt_main
/* Test if PSR2 can be enabled */
igt_require_f(psr_enable(data.drm_fd,
- data.debugfs_fd, PSR_MODE_2),
+ data.debugfs_fd, PSR_MODE_2, NULL),
"Error enabling PSR2\n");
data.op = FRONTBUFFER;
data.format = DRM_FORMAT_XRGB8888;
diff --git a/tests/intel/kms_psr_stress_test.c b/tests/intel/kms_psr_stress_test.c
index 7aea8e8a5..bca3bd513 100644
--- a/tests/intel/kms_psr_stress_test.c
+++ b/tests/intel/kms_psr_stress_test.c
@@ -230,7 +230,7 @@ static void prepare(data_t *data)
r = timerfd_settime(data->completed_timerfd, 0, &interval, NULL);
igt_require_f(r != -1, "Error setting completed_timerfd\n");
- data->initial_state = psr_get_mode(data->debugfs_fd);
+ data->initial_state = psr_get_mode(data->debugfs_fd, NULL);
igt_require(data->initial_state != PSR_DISABLED);
igt_require(psr_wait_entry(data->debugfs_fd, data->initial_state, NULL));
}
@@ -343,7 +343,7 @@ static void run(data_t *data)
}
/* Check if after all this stress the PSR is still in the same state */
- igt_assert(psr_get_mode(data->debugfs_fd) == data->initial_state);
+ igt_assert(psr_get_mode(data->debugfs_fd, NULL) == data->initial_state);
}
igt_main
diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
index a0349fa03..2895168f7 100644
--- a/tests/kms_async_flips.c
+++ b/tests/kms_async_flips.c
@@ -391,7 +391,7 @@ static void test_cursor(data_t *data)
* necessary, causing the async flip to fail because async flip is not
* supported in cursor plane.
*/
- igt_skip_on_f(i915_psr2_selective_fetch_check(data->drm_fd),
+ igt_skip_on_f(i915_psr2_selective_fetch_check(data->drm_fd, NULL),
"PSR2 sel fetch causes cursor to be added to primary plane " \
"pages flips and async flip is not supported in cursor\n");
@@ -704,7 +704,7 @@ igt_main
* necessary, causing the async flip to fail because async flip is not
* supported in cursor plane.
*/
- igt_skip_on_f(i915_psr2_selective_fetch_check(data.drm_fd),
+ igt_skip_on_f(i915_psr2_selective_fetch_check(data.drm_fd, NULL),
"PSR2 sel fetch causes cursor to be added to primary plane " \
"pages flips and async flip is not supported in cursor\n");
diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
index 0017659d4..91e5e9b07 100644
--- a/tests/kms_cursor_legacy.c
+++ b/tests/kms_cursor_legacy.c
@@ -1849,7 +1849,7 @@ igt_main
* page flip with cursor legacy APIS when Intel's PSR2 selective
* fetch is enabled, so switching PSR1 for this whole test.
*/
- intel_psr2_restore = i915_psr2_sel_fetch_to_psr1(display.drm_fd);
+ intel_psr2_restore = i915_pr_psr2_sel_fetch_to_pr_psr1(display.drm_fd, NULL);
}
igt_describe("Test checks how many cursor updates we can fit between vblanks "
@@ -2074,7 +2074,7 @@ igt_main
igt_fixture {
if (intel_psr2_restore)
- i915_psr2_sel_fetch_restore(display.drm_fd);
+ i915_pr_psr2_sel_fetch_restore(display.drm_fd, NULL);
igt_display_fini(&display);
drm_close_driver(display.drm_fd);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf
2024-02-08 14:54 [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf Kunal Joshi
2024-02-08 14:54 ` [PATCH i-g-t 1/2] lib/igt_psr: add support for PR selective update Kunal Joshi
@ 2024-02-08 14:54 ` Kunal Joshi
2024-02-16 8:25 ` Hogander, Jouni
2024-02-08 19:04 ` ✓ Fi.CI.BAT: success for extend psr2_sf test for pr_sf (rev4) Patchwork
` (2 subsequent siblings)
4 siblings, 1 reply; 13+ messages in thread
From: Kunal Joshi @ 2024-02-08 14:54 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Jouni Högander, Animesh Manna, Arun R Murthy
Extend the tests to cover panel replay selective fetch feature.
From kms_psr2_sf test point of view we have check_pr_psr2_sel_fetch_support
function to check if PR/PSR2 selective fetch is supported for an output
if output supports selective fetch then we check we enter DEEP_SLEEP mode
in run function
v2: fixed dynamic test name
v3: use check_psr2_support (Jouni)
v4: correct order of checks in check_pr_psr2_sel_fetch_support (Jouni)
use appropriate psr mode in psr_wait_entry (Jouni)
Cc: Jouni Högander <jouni.hogander@intel.com>
Cc: Animesh Manna <animesh.manna@intel.com>
Cc: Arun R Murthy <arun.r.murthy@intel.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/intel/kms_psr2_sf.c | 147 +++++++++++++++++++++++++++++++-------
1 file changed, 120 insertions(+), 27 deletions(-)
diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c
index 8e6a9e02c..0595c1f11 100644
--- a/tests/intel/kms_psr2_sf.c
+++ b/tests/intel/kms_psr2_sf.c
@@ -172,6 +172,7 @@ typedef struct {
uint32_t screen_changes;
int cur_x, cur_y;
enum pipe pipe;
+ enum psr_mode psr_mode;
enum {
FEATURE_NONE = 0,
FEATURE_DSC = 1,
@@ -179,6 +180,34 @@ typedef struct {
} coexist_feature;
} data_t;
+static enum psr_mode get_sel_fetch_mode_for_output(data_t *data, igt_output_t *output)
+{
+ enum psr_mode mode = PSR_DISABLED;
+
+ if (psr_sink_support(data->drm_fd, data->debugfs_fd,
+ PR_MODE_SEL_FETCH, output))
+ mode = PR_MODE_SEL_FETCH;
+ else if (psr_sink_support(data->drm_fd, data->debugfs_fd,
+ PSR_MODE_2, output))
+ mode = PSR_MODE_2;
+ else
+ igt_info("selective fetch not supported on output %s\n", output->name);
+
+ return mode;
+}
+
+static const char *get_psr_mode_str_for_output(data_t *data, igt_output_t *output)
+{
+ const char *psr_mode = NULL;
+
+ if (get_sel_fetch_mode_for_output(data, output) == PR_MODE_SEL_FETCH)
+ psr_mode = "pr-";
+ else if (get_sel_fetch_mode_for_output(data, output) == PSR_MODE_2)
+ psr_mode = "psr2-";
+ igt_assert_f(psr_mode, "Invalid psr mode\n");
+ return psr_mode;
+}
+
static const char *op_str(enum operations op)
{
static const char * const name[] = {
@@ -688,7 +717,7 @@ static void damaged_plane_move(data_t *data)
igt_display_commit2(&data->display, COMMIT_ATOMIC);
- igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2, NULL));
+ igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode, data->output));
expected_output(data);
}
@@ -788,7 +817,7 @@ static void plane_move_continuous(data_t *data)
{
int target_x, target_y;
- igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2, NULL));
+ igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode, data->output));
get_target_coords(data, &target_x, &target_y);
@@ -865,7 +894,7 @@ static void damaged_plane_update(data_t *data)
igt_plane_set_position(data->test_plane, 0, 0);
igt_display_commit2(&data->display, COMMIT_ATOMIC);
- igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2, NULL));
+ igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode, data->output));
expected_output(data);
}
@@ -874,7 +903,7 @@ static void run(data_t *data)
{
int i;
- igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2, NULL));
+ igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode, data->output));
if (data->fbc_flag == true && data->op_fbc_mode == FBC_ENABLED)
igt_assert_f(intel_fbc_wait_until_enabled(data->drm_fd,
@@ -952,14 +981,24 @@ static void cleanup(data_t *data)
igt_remove_fb(data->drm_fd, &data->fb_test);
}
-static int check_psr2_support(data_t *data)
+static bool check_pr_psr2_sel_fetch_support(data_t *data)
{
- int status;
+ bool status = false;
+ enum psr_mode psr_mode;
+
+ /* Check sink supports PR/PSR2 selective fetch */
+ psr_mode = get_sel_fetch_mode_for_output(data, data->output);
+ if (psr_mode == PSR_DISABLED)
+ return false;
+
+ /* Check if selective fetch can be enabled */
+ if (!selective_fetch_check(data->debugfs_fd, data->output))
+ igt_assert("Selective fetch is not enabled even though panel should support it\n");
prepare(data);
- status = psr_wait_entry(data->debugfs_fd, PSR_MODE_2, NULL);
+ /* We enter into DEEP_SLEEP for both PSR2 and PR sel fetch */
+ status = psr_wait_entry(data->debugfs_fd, psr_mode, data->output);
cleanup(data);
-
return status;
}
@@ -981,6 +1020,8 @@ pipe_output_combo_valid(igt_display_t *display,
igt_main
{
+ bool output_supports_pr_psr2_sel_fetch = false;
+ bool pr_psr2_sel_fetch_supported = false;
data_t data = {};
igt_output_t *outputs[IGT_MAX_PIPES * IGT_MAX_PIPES];
int i, j, k, y;
@@ -1000,11 +1041,6 @@ igt_main
data.debugfs_fd = igt_debugfs_dir(data.drm_fd);
kmstest_set_vt_graphics_mode();
- igt_require_f(psr_sink_support(data.drm_fd,
- data.debugfs_fd, PSR_MODE_2,
- NULL),
- "Sink does not support PSR2\n");
-
display_init(&data);
if ((intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20) &&
@@ -1023,7 +1059,8 @@ igt_main
for_each_pipe_with_valid_output(&data.display, data.pipe, data.output) {
coexist_features[n_pipes] = 0;
- if (check_psr2_support(&data)) {
+ output_supports_pr_psr2_sel_fetch = check_pr_psr2_sel_fetch_support(&data);
+ if (output_supports_pr_psr2_sel_fetch) {
pipes[n_pipes] = data.pipe;
outputs[n_pipes] = data.output;
@@ -1032,7 +1069,10 @@ igt_main
n_pipes++;
}
+ pr_psr2_sel_fetch_supported |= output_supports_pr_psr2_sel_fetch;
}
+ igt_require_f(pr_psr2_sel_fetch_supported,
+ "No output supports selective fetch\n");
}
for (y = 0; y < ARRAY_SIZE(fbc_status); y++) {
@@ -1053,13 +1093,17 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
for (k = 1; k <= MAX_DAMAGE_AREAS; k++) {
data.damage_area_count = k;
prepare(&data);
@@ -1086,7 +1130,8 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s",
+ igt_dynamic_f("%s-pipe-%s-%s%s",
+ get_psr_mode_str_for_output(&data, outputs[i]),
kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
@@ -1094,6 +1139,9 @@ igt_main
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
for (k = 1; k <= MAX_DAMAGE_AREAS; k++) {
data.damage_area_count = k;
prepare(&data);
@@ -1118,13 +1166,17 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
for (k = 1; k <= MAX_DAMAGE_AREAS; k++) {
data.damage_area_count = k;
prepare(&data);
@@ -1148,13 +1200,17 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
prepare(&data);
run(&data);
cleanup(&data);
@@ -1174,13 +1230,17 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
prepare(&data);
run(&data);
cleanup(&data);
@@ -1201,13 +1261,17 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
prepare(&data);
run(&data);
cleanup(&data);
@@ -1228,13 +1292,17 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_CURSOR;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
prepare(&data);
run(&data);
cleanup(&data);
@@ -1256,13 +1324,18 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s",
+ get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
for (k = POS_TOP_LEFT; k <= POS_BOTTOM_RIGHT ; k++) {
data.pos = k;
prepare(&data);
@@ -1285,13 +1358,17 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
prepare(&data);
run(&data);
cleanup(&data);
@@ -1312,13 +1389,17 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
prepare(&data);
run(&data);
cleanup(&data);
@@ -1339,13 +1420,17 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
data.output = outputs[i];
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
prepare(&data);
run(&data);
cleanup(&data);
@@ -1367,7 +1452,8 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ get_psr_mode_str_for_output(&data, outputs[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
@@ -1376,6 +1462,9 @@ igt_main
data.damage_area_count = k;
data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
prepare(&data);
run(&data);
cleanup(&data);
@@ -1400,7 +1489,8 @@ igt_main
for (j = FEATURE_NONE; j < FEATURE_COUNT; j++) {
if (j != FEATURE_NONE && !(coexist_features[i] & j))
continue;
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(pipes[i]),
+ igt_dynamic_f("%s-pipe-%s-%s%s", get_psr_mode_str_for_output(&data, outputs[i]),
+ kmstest_pipe_name(pipes[i]),
igt_output_name(outputs[i]),
coexist_feature_str(j)) {
data.pipe = pipes[i];
@@ -1412,6 +1502,9 @@ igt_main
data.primary_format = DRM_FORMAT_NV12;
data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
data.coexist_feature = j;
+ data.psr_mode = get_sel_fetch_mode_for_output(&data, data.output);
+ igt_assert_f(data.psr_mode != PSR_DISABLED,
+ "Invalid psr mode\n");
prepare(&data);
run(&data);
cleanup(&data);
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✓ Fi.CI.BAT: success for extend psr2_sf test for pr_sf (rev4)
2024-02-08 14:54 [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf Kunal Joshi
2024-02-08 14:54 ` [PATCH i-g-t 1/2] lib/igt_psr: add support for PR selective update Kunal Joshi
2024-02-08 14:54 ` [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf Kunal Joshi
@ 2024-02-08 19:04 ` Patchwork
2024-02-08 21:10 ` ✓ CI.xeBAT: " Patchwork
2024-02-08 22:51 ` ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-02-08 19:04 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2302 bytes --]
== Series Details ==
Series: extend psr2_sf test for pr_sf (rev4)
URL : https://patchwork.freedesktop.org/series/129004/
State : success
== Summary ==
CI Bug Log - changes from IGT_7707 -> IGTPW_10652
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/index.html
Participating hosts (39 -> 36)
------------------------------
Missing (3): bat-kbl-2 bat-arls-2 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10652 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [PASS][1] -> [ABORT][2] ([i915#7911])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/fi-bsw-nick/igt@i915_selftest@live@execlists.html
* igt@i915_selftest@live@hangcheck:
- fi-skl-guc: [PASS][3] -> [DMESG-FAIL][4] ([i915#10112])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
- bat-dg2-11: [PASS][5] -> [ABORT][6] ([i915#9840])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
[i915#10112]: https://gitlab.freedesktop.org/drm/intel/issues/10112
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#9840]: https://gitlab.freedesktop.org/drm/intel/issues/9840
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7707 -> IGTPW_10652
CI-20190529: 20190529
CI_DRM_14244: 22d626404cb81d7818ab55e5b14885e31a998dfd @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10652: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/index.html
IGT_7707: 5303b43f485f7ba015adabc15b029532b1158aef @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/index.html
[-- Attachment #2: Type: text/html, Size: 2931 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.xeBAT: success for extend psr2_sf test for pr_sf (rev4)
2024-02-08 14:54 [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf Kunal Joshi
` (2 preceding siblings ...)
2024-02-08 19:04 ` ✓ Fi.CI.BAT: success for extend psr2_sf test for pr_sf (rev4) Patchwork
@ 2024-02-08 21:10 ` Patchwork
2024-02-08 22:51 ` ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-02-08 21:10 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 912 bytes --]
== Series Details ==
Series: extend psr2_sf test for pr_sf (rev4)
URL : https://patchwork.freedesktop.org/series/129004/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7707_BAT -> XEIGTPW_10652_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7707 -> IGTPW_10652
IGTPW_10652: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/index.html
IGT_7707: 5303b43f485f7ba015adabc15b029532b1158aef @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-750-22d626404cb81d7818ab55e5b14885e31a998dfd: 22d626404cb81d7818ab55e5b14885e31a998dfd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10652/index.html
[-- Attachment #2: Type: text/html, Size: 1457 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Fi.CI.IGT: failure for extend psr2_sf test for pr_sf (rev4)
2024-02-08 14:54 [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf Kunal Joshi
` (3 preceding siblings ...)
2024-02-08 21:10 ` ✓ CI.xeBAT: " Patchwork
@ 2024-02-08 22:51 ` Patchwork
4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-02-08 22:51 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 97776 bytes --]
== Series Details ==
Series: extend psr2_sf test for pr_sf (rev4)
URL : https://patchwork.freedesktop.org/series/129004/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7707_full -> IGTPW_10652_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10652_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10652_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_10652/index.html
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10652_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_capture@capture@bcs0-smem:
- shard-mtlp: NOTRUN -> [TIMEOUT][1] +2 other tests timeout
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@gem_exec_capture@capture@bcs0-smem.html
* igt@gem_softpin@softpin:
- shard-mtlp: [PASS][2] -> [TIMEOUT][3] +1 other test timeout
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-mtlp-5/igt@gem_softpin@softpin.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@gem_softpin@softpin.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* {igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2--pipe-a-edp-1} (NEW):
- shard-mtlp: NOTRUN -> [SKIP][5] +17 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-1/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2--pipe-a-edp-1.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-13/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
#### Warnings ####
* igt@gem_mmap_gtt@basic-wc:
- shard-mtlp: [SKIP][8] ([i915#4077]) -> [TIMEOUT][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-mtlp-2/igt@gem_mmap_gtt@basic-wc.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@gem_mmap_gtt@basic-wc.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: [SKIP][10] ([i915#6229]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-mtlp-8/igt@kms_async_flips@test-cursor.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@kms_async_flips@test-cursor.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][12] ([i915#9683]) -> [SKIP][13] +5 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-dg1: [SKIP][14] ([i915#9683]) -> [SKIP][15] +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg1-15/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-12/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg2: [SKIP][16] ([i915#9683]) -> [SKIP][17] +7 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg2-1/igt@kms_psr2_sf@cursor-plane-update-sf.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_psr2_sf@cursor-plane-update-sf.html
- shard-rkl: [SKIP][18] ([fdo#111068] / [i915#9683]) -> [SKIP][19] +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-6/igt@kms_psr2_sf@cursor-plane-update-sf.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-5/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg1: [SKIP][20] ([fdo#111068] / [i915#9683]) -> [SKIP][21] +4 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg1-16/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-12/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-tglu: [SKIP][22] ([fdo#111068] / [i915#9683]) -> [SKIP][23] +4 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-10/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu: [SKIP][24] ([i915#9683]) -> [SKIP][25] +5 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf}:
- shard-dg2: NOTRUN -> [SKIP][26] +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
* {igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf}:
- shard-dg2: [SKIP][27] ([i915#9683]) -> [SKIP][28] +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg2-2/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf.html
* {igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area}:
- shard-dg1: [SKIP][29] ([i915#9683]) -> [SKIP][30] +10 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg1-12/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-14/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* {igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area}:
- shard-tglu: [SKIP][31] ([i915#9683]) -> [SKIP][32] +10 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-9/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-2/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
* {igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area}:
- shard-rkl: [SKIP][33] ([i915#9683]) -> [SKIP][34] +9 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-1/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html
* {igt@kms_psr@psr2-cursor-render@edp-1}:
- shard-mtlp: [PASS][35] -> [FAIL][36] +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-mtlp-5/igt@kms_psr@psr2-cursor-render@edp-1.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@kms_psr@psr2-cursor-render@edp-1.html
New tests
---------
New tests have been introduced between IGT_7707_full and IGTPW_10652_full:
### New IGT tests (42) ###
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [11.85] s
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [11.86] s
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [11.55] s
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [11.54] s
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [11.24] s
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [11.20] s
* igt@kms_psr2_sf@cursor-plane-update-sf@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.40] s
* igt@kms_psr2_sf@cursor-plane-update-sf@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.42] s
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf@psr2--pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.83] s
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf@psr2--pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.18] s
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf@psr2--pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.83] s
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf@psr2--pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.21] s
* igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2--pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.84] s
* igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2--pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.27] s
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf@psr2--pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.88] s
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf@psr2--pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.21] s
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf@psr2--pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.83] s
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf@psr2--pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.24] s
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2--pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.87] s
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2--pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.21] s
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2--pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.83] s
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2--pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.22] s
* igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area@a-pipe-psr2--edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.82] s
* igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area@b-pipe-psr2--edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.22] s
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2--pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.83] s
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2--pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.23] s
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [17.28] s
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [17.26] s
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [12.10] s
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [12.10] s
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.85] s
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.84] s
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [6.83] s
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [6.82] s
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area@a-pipe-psr2--edp-1:
- Statuses : 1 pass(s)
- Exec time: [6.83] s
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area@b-pipe-psr2--edp-1:
- Statuses : 1 pass(s)
- Exec time: [6.84] s
* igt@kms_psr2_sf@plane-move-sf-dmg-area@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [5.51] s
* igt@kms_psr2_sf@plane-move-sf-dmg-area@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [5.48] s
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [8.02] s
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [7.89] s
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area@psr2--pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [6.83] s
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area@psr2--pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [6.84] s
Known issues
------------
Here are the changes found in IGTPW_10652_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#8411]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-2/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#7701])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-9/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#7701])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#8414]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][41] ([i915#7742])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-2/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#8414]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-13/igt@drm_fdinfo@isolation@vecs0.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4873])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-4/igt@gem_caching@writes.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#9323])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#9323])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][46] ([i915#7297])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][47] ([fdo#109314])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@gem_ctx_param@set-priority-not-supported.html
- shard-rkl: NOTRUN -> [SKIP][48] ([fdo#109314])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-2/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#8555]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#280])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][51] -> [FAIL][52] ([i915#5784])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg1-16/igt@gem_eio@kms.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-15/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg2: [PASS][53] -> [FAIL][54] ([i915#5784])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg2-1/igt@gem_eio@reset-stress.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4812])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-12/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4036])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4525])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@many-4k-zero:
- shard-mtlp: NOTRUN -> [FAIL][58] ([i915#9606])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@gem_exec_capture@many-4k-zero.html
- shard-dg2: NOTRUN -> [FAIL][59] ([i915#9606])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: NOTRUN -> [FAIL][60] ([i915#2842])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3539] / [i915#4852]) +6 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][62] -> [FAIL][63] ([i915#2842])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3539]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-13/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [PASS][65] -> [FAIL][66] ([i915#2842]) +2 other tests fail
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3539])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4812]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-2/igt@gem_exec_fence@submit3.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][69] ([fdo#109283] / [i915#5107])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-root:
- shard-mtlp: NOTRUN -> [SKIP][70] ([fdo#112283])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-7/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3281]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3281]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-active:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3281]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-14/igt@gem_exec_reloc@basic-wc-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3281]) +11 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4537] / [i915#4812]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#4613] / [i915#7582])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@massive:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4613])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4613])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][79] -> [TIMEOUT][80] ([i915#5493])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#4613])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#8289])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4077]) +11 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4077]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-12/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4077]) +6 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-7/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4083]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@invalid-flags:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4083]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-1/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3282])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-1/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#3282]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@uncached:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#3282])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-18/igt@gem_pread@uncached.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#4270]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4270])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#4270])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#8428])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#5190]) +9 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4079])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-17/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4885])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4885])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-15/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][100] ([i915#5889])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3297]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html
- shard-rkl: NOTRUN -> [SKIP][102] ([fdo#110542])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4880])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4958])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#3297])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen3_render_mixed_blits:
- shard-dg2: NOTRUN -> [SKIP][106] ([fdo#109289]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@gen3_render_mixed_blits.html
- shard-rkl: NOTRUN -> [SKIP][107] ([fdo#109289]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-4/igt@gen3_render_mixed_blits.html
* igt@gen9_exec_parse@basic-rejected:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#2527])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-17/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-6/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#2856]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][112] -> [INCOMPLETE][113] ([i915#10137] / [i915#9820] / [i915#9849])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][114] -> [INCOMPLETE][115] ([i915#10137] / [i915#9200])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6412])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][117] -> [FAIL][118] ([i915#3591])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#6621])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][120] -> [INCOMPLETE][121] ([i915#10137] / [i915#7790])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb1/igt@i915_pm_rps@reset.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#8925])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3555] / [i915#8925])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@i915_pm_rps@thresholds-park@gt1.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: NOTRUN -> [SKIP][124] ([fdo#109303])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#5723])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4212])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4215] / [i915#5190])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#3826])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][129] -> [FAIL][130] ([i915#2521])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-10/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#8709]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-vga-1-linear:
- shard-snb: NOTRUN -> [SKIP][132] ([fdo#109271]) +9 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-vga-1-linear.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#6228])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6228])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#9531])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#1769] / [i915#3555])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#1769] / [i915#3555])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5286]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][139] ([fdo#111614]) +6 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#5286]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#5286]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [FAIL][142] ([i915#5138])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][143] ([fdo#111614])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-1/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][144] ([fdo#111614] / [i915#3638]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3638])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +8 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-18/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][148] ([fdo#111615])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][149] ([fdo#111615]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][150] ([fdo#110723])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@2x-modeset:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#2705])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-2/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-ccs:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#5354] / [i915#6095]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-3/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y-tiled-gen12-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#5354] / [i915#6095]) +18 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@kms_ccs@pipe-a-random-ccs-data-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#5354]) +88 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#5354] / [i915#6095]) +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#5354]) +10 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-7/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-yf-tiled-ccs:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#5354] / [i915#6095]) +11 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-18/igt@kms_ccs@pipe-d-bad-pixel-format-yf-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3742])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-9/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#7213]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3742])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-mtlp: NOTRUN -> [SKIP][161] ([fdo#111827]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@kms_chamelium_color@ctm-0-75.html
- shard-dg2: NOTRUN -> [SKIP][162] ([fdo#111827]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#7828]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#7828]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-19/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#7828]) +7 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#7828]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#7828]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3299])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3116]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#9424])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#7118] / [i915#9424]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8814])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#3555])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3359])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#3359])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#3555]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8814])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3359]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-snb: [PASS][181] -> [SKIP][182] ([fdo#109271] / [fdo#111767])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][183] ([fdo#109274] / [i915#5354]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-snb: [PASS][184] -> [SKIP][185] ([fdo#109271]) +4 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#9809]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][187] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#4103] / [i915#4213])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#4103])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-snb: [PASS][190] -> [DMESG-WARN][191] ([i915#10166])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb5/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb6/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][192] ([fdo#110189] / [i915#9723])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1:
- shard-snb: NOTRUN -> [SKIP][193] ([fdo#109271] / [fdo#110189])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html
* igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][194] ([i915#9841]) +3 other tests fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb7/igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#8588])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#3804])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#1257])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3840])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#3840])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#4854])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#1839]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#1839])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#4881])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3637]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][207] ([fdo#109274] / [i915#3637])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-9/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][208] ([fdo#111825]) +6 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8381])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg1: NOTRUN -> [SKIP][210] ([fdo#111767] / [fdo#111825]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-13/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][211] ([fdo#109274]) +6 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip:
- shard-dg1: NOTRUN -> [SKIP][212] ([fdo#111825] / [i915#9934]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#2672])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#2672]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#2672]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#5274])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#5274])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#10055])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +15 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][222] ([fdo#110189]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][223] ([fdo#111825]) +5 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8708]) +5 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][225] ([fdo#109280] / [fdo#111767])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#1825]) +10 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#8708]) +15 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#8708]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#9766])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#3023]) +8 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][231] ([fdo#111825] / [i915#1825]) +16 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][232] ([fdo#109280]) +5 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#3458]) +7 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [PASS][234] -> [SKIP][235] ([i915#433])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-10/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-2/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-12/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg1: NOTRUN -> [SKIP][238] ([fdo#109289])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-14/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][239] ([i915#4573]) +1 other test fail
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][240] ([fdo#109274] / [i915#5354] / [i915#9423])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][241] ([i915#8292])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.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_10652/shard-dg1-16/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-3:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#9423]) +7 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#9423]) +5 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#5176] / [i915#9423]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#5176] / [i915#9423]) +3 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#9423]) +7 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-15/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#5235]) +6 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#5235]) +7 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#5235])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#5235] / [i915#9423]) +15 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/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-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#5235]) +7 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][253] ([fdo#109271]) +66 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-glk5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#9519])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: NOTRUN -> [FAIL][255] ([i915#8717])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-2/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#9519])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][257] -> [SKIP][258] ([i915#9519]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][259] -> [SKIP][260] ([i915#9519]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][261] ([fdo#109293] / [fdo#109506])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#6524] / [i915#6805]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#6524])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@kms_prime@d3hot.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][264] ([fdo#111068] / [i915#9683])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-12/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#9685]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#5289])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-19/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#5289])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#4235] / [i915#5190])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8809])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#8623])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-mtlp: [PASS][271] -> [FAIL][272] ([i915#9196])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [FAIL][273] ([i915#9196])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-2.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#9906])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#3555]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-6/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8808])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-8/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#2437]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#2437])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#2437] / [i915#9412])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#2436])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3708] / [i915#4077])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@prime_vgem@basic-gtt.html
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#3708] / [i915#4077])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@prime_vgem@basic-gtt.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#9917])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-mtlp: NOTRUN -> [FAIL][284] ([i915#9781])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-4/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#2575]) +12 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-1/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#2575]) +5 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-7/igt@v3d/v3d_perfmon@create-perfmon-exceed.html
* igt@v3d/v3d_perfmon@destroy-valid-perfmon:
- shard-tglu: NOTRUN -> [SKIP][287] ([fdo#109315] / [i915#2575]) +3 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-9/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html
* igt@v3d/v3d_perfmon@get-values-valid-perfmon:
- shard-rkl: NOTRUN -> [SKIP][288] ([fdo#109315]) +5 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-4/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html
* igt@v3d/v3d_submit_cl@bad-in-sync:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#2575]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-19/igt@v3d/v3d_submit_cl@bad-in-sync.html
* igt@vc4/vc4_create_bo@create-bo-0:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#7711]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-4/igt@vc4/vc4_create_bo@create-bo-0.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#7711]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-15/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#7711]) +9 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-6/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#7711]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-4/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#2575])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-6/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][295] ([i915#7742]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][297] ([i915#5784]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg1-19/igt@gem_eio@reset-stress.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][299] ([i915#2846]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [FAIL][301] ([i915#2842]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-5/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [FAIL][303] ([i915#2842]) -> [PASS][304] +2 other tests pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][305] ([i915#5493]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [INCOMPLETE][307] ([i915#9849]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb2/igt@i915_module_load@reload-no-display.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb4/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][309] ([i915#10131] / [i915#9697]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][311] ([i915#3743]) -> [PASS][312] +1 other test pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-snb: [SKIP][313] ([fdo#109271] / [fdo#111767]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [INCOMPLETE][315] -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][317] ([i915#2346]) -> [PASS][318] +1 other test pass
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-snb: [SKIP][319] ([fdo#109271]) -> [PASS][320] +13 other tests pass
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][321] ([i915#9519]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][323] ([i915#9519]) -> [PASS][324] +1 other test pass
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][325] ([i915#4349]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [ABORT][327] ([i915#9820]) -> [INCOMPLETE][328] ([i915#10137] / [i915#9849])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-tglu: [WARN][329] ([i915#2681]) -> [FAIL][330] ([i915#3591]) +1 other test fail
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-tglu: [FAIL][331] ([i915#3591]) -> [WARN][332] ([i915#2681])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@kms_content_protection@atomic-dpms:
- shard-snb: [INCOMPLETE][333] ([i915#8816]) -> [SKIP][334] ([fdo#109271])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb7/igt@kms_content_protection@atomic-dpms.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@mei-interface:
- shard-snb: [SKIP][335] ([fdo#109271]) -> [INCOMPLETE][336] ([i915#9878])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb4/igt@kms_content_protection@mei-interface.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb7/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][337] ([i915#3955]) -> [SKIP][338] ([fdo#110189] / [i915#3955])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:
- shard-snb: [SKIP][339] ([fdo#109271] / [fdo#111767]) -> [SKIP][340] ([fdo#109271])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-snb: [SKIP][341] ([fdo#109271]) -> [SKIP][342] ([fdo#109271] / [fdo#111767])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][343] ([i915#4070] / [i915#4816]) -> [SKIP][344] ([i915#4816])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][345] ([i915#3361]) -> [SKIP][346] ([i915#4281])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7707/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9841]: https://gitlab.freedesktop.org/drm/intel/issues/9841
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7707 -> IGTPW_10652
CI-20190529: 20190529
CI_DRM_14244: 22d626404cb81d7818ab55e5b14885e31a998dfd @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10652: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/index.html
IGT_7707: 5303b43f485f7ba015adabc15b029532b1158aef @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10652/index.html
[-- Attachment #2: Type: text/html, Size: 119435 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_psr: add support for PR selective update
2024-02-08 14:54 ` [PATCH i-g-t 1/2] lib/igt_psr: add support for PR selective update Kunal Joshi
@ 2024-02-16 7:01 ` Hogander, Jouni
2024-02-19 5:22 ` Joshi, Kunal1
0 siblings, 1 reply; 13+ messages in thread
From: Hogander, Jouni @ 2024-02-16 7:01 UTC (permalink / raw)
To: Joshi, Kunal1, igt-dev@lists.freedesktop.org
Cc: Murthy, Arun R, Manna, Animesh
Hello Kunal,
I think you should keep your set as three patches. This is now mixture
of adding support for multiple outputs and add support for PR selective
update. Please split. I think otherwise changes look ok.
BR,
Jouni Högander
On Thu, 2024-02-08 at 20:24 +0530, Kunal Joshi wrote:
> adapt to kmd changes to support PR selective update
> https://patchwork.freedesktop.org/patch/575163/?series=128193&rev=3
>
> v2: "PSR2 selective fetch: enable" valid for both cases (Jouni)
> v3: Organize patches according to title (Jouni)
> Use macro instead of function (Jouni)
>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Cc: Animesh Manna <animesh.manna@intel.com>
> Cc: Arun R Murthy <arun.r.murthy@intel.com>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> lib/igt_psr.c | 98 ++++++++++++++++--------
> --
> lib/igt_psr.h | 14 ++--
> tests/intel/kms_dirtyfb.c | 4 +-
> tests/intel/kms_fbcon_fbt.c | 4 +-
> tests/intel/kms_frontbuffer_tracking.c | 4 +-
> tests/intel/kms_pm_dc.c | 6 +-
> tests/intel/kms_psr.c | 4 +-
> tests/intel/kms_psr2_sf.c | 8 ---
> tests/intel/kms_psr2_su.c | 2 +-
> tests/intel/kms_psr_stress_test.c | 4 +-
> tests/kms_async_flips.c | 4 +-
> tests/kms_cursor_legacy.c | 4 +-
> 12 files changed, 84 insertions(+), 72 deletions(-)
>
> diff --git a/lib/igt_psr.c b/lib/igt_psr.c
> index ac214fcfc..9accd2047 100644
> --- a/lib/igt_psr.c
> +++ b/lib/igt_psr.c
> @@ -27,6 +27,10 @@
> #include "igt_sysfs.h"
> #include <errno.h>
>
> +#define SET_DEBUGFS_PATH(output, path) \
> + sprintf(path, "%s%s%s", output ? output->name : "", output ?
> "/" : "", \
> + output ? "i915_psr_status" :
> "i915_edp_psr_status")
> +
> bool psr_disabled_check(int debugfs_fd)
> {
> char buf[PSR_STATUS_MAX_LEN];
> @@ -37,11 +41,13 @@ bool psr_disabled_check(int debugfs_fd)
> return strstr(buf, "PSR mode: disabled\n");
> }
>
> -bool psr2_selective_fetch_check(int debugfs_fd)
> +bool selective_fetch_check(int debugfs_fd, igt_output_t *output)
> {
> char buf[PSR_STATUS_MAX_LEN];
> + char debugfs_file[128] = {0};
>
> - igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status",
> buf,
> + SET_DEBUGFS_PATH(output, debugfs_file);
> + igt_debugfs_simple_read(debugfs_fd, debugfs_file, buf,
> sizeof(buf));
>
> return strstr(buf, "PSR2 selective fetch: enabled");
> @@ -54,11 +60,7 @@ static bool psr_active_check(int debugfs_fd, enum
> psr_mode mode, igt_output_t *o
> const char *state = (mode == PSR_MODE_1 || mode == PR_MODE) ?
> "SRDENT" : "DEEP_SLEEP";
> int ret;
>
> - if (output)
> - sprintf(debugfs_file, "%s/i915_psr_status", output-
> >name);
> - else
> - sprintf(debugfs_file, "%s", "i915_edp_psr_status");
> -
> + SET_DEBUGFS_PATH(output, debugfs_file);
> ret = igt_debugfs_simple_read(debugfs_fd, debugfs_file,
> buf, sizeof(buf));
> if (ret < 0) {
> @@ -90,13 +92,18 @@ bool psr_long_wait_update(int debugfs_fd, enum
> psr_mode mode, igt_output_t *outp
> return igt_wait(!psr_active_check(debugfs_fd, mode, output),
> 500, 10);
> }
>
> -static ssize_t psr_write(int debugfs_fd, const char *buf)
> +static ssize_t psr_write(int debugfs_fd, const char *buf,
> igt_output_t *output)
> {
> + /*
> + * FIXME: Currently we don't have separate psr_debug file for
> each output.
> + * so, we are using i915_edp_psr_debug file for all outputs.
> + * Later we need to add support for separate psr_debug file
> for each output.
> + */
> return igt_sysfs_write(debugfs_fd, "i915_edp_psr_debug", buf,
> - strlen(buf));
> + strlen(buf));
> }
>
> -static int has_psr_debugfs(int debugfs_fd)
> +static int has_psr_debugfs(int debugfs_fd, igt_output_t *output)
> {
> int ret;
>
> @@ -105,7 +112,7 @@ static int has_psr_debugfs(int debugfs_fd)
> * Legacy mode will return OK here, debugfs api will return -
> EINVAL.
> * -ENODEV is returned when PSR is unavailable.
> */
> - ret = psr_write(debugfs_fd, "0xf");
> + ret = psr_write(debugfs_fd, "0xf", output);
> if (ret == -EINVAL) {
> errno = 0;
> return 0;
> @@ -113,7 +120,7 @@ static int has_psr_debugfs(int debugfs_fd)
> return ret;
>
> /* legacy debugfs api, we enabled irqs by writing, disable
> them. */
> - psr_write(debugfs_fd, "0");
> + psr_write(debugfs_fd, "0", output);
> return -EINVAL;
> }
>
> @@ -134,14 +141,14 @@ static int psr_restore_debugfs_fd = -1;
>
> static void restore_psr_debugfs(int sig)
> {
> - psr_write(psr_restore_debugfs_fd, "0");
> + psr_write(psr_restore_debugfs_fd, "0", NULL);
> }
>
> -static bool psr_set(int device, int debugfs_fd, int mode)
> +static bool psr_set(int device, int debugfs_fd, int mode,
> igt_output_t *output)
> {
> int ret;
>
> - ret = has_psr_debugfs(debugfs_fd);
> + ret = has_psr_debugfs(debugfs_fd, output);
> if (ret == -ENODEV) {
> igt_skip("PSR not available\n");
> return false;
> @@ -179,7 +186,7 @@ static bool psr_set(int device, int debugfs_fd,
> int mode)
> debug_val = "0x1";
> }
>
> - ret = psr_write(debugfs_fd, debug_val);
> + ret = psr_write(debugfs_fd, debug_val, output);
> igt_require_f(ret > 0, "PSR2 SF feature not
> available\n");
> }
>
> @@ -193,15 +200,15 @@ static bool psr_set(int device, int debugfs_fd,
> int mode)
> return ret;
> }
>
> -bool psr_enable(int device, int debugfs_fd, enum psr_mode mode)
> +bool psr_enable(int device, int debugfs_fd, enum psr_mode mode,
> igt_output_t *output)
> {
> - return psr_set(device, debugfs_fd, mode);
> + return psr_set(device, debugfs_fd, mode, output);
> }
>
> -bool psr_disable(int device, int debugfs_fd)
> +bool psr_disable(int device, int debugfs_fd, igt_output_t *output)
> {
> /* Any mode different than PSR_MODE_1/2 will disable PSR */
> - return psr_set(device, debugfs_fd, -1);
> + return psr_set(device, debugfs_fd, -1, output);
> }
>
> bool psr_sink_support(int device, int debugfs_fd, enum psr_mode
> mode, igt_output_t *output)
> @@ -211,11 +218,7 @@ bool psr_sink_support(int device, int
> debugfs_fd, enum psr_mode mode, igt_output
> char buf[PSR_STATUS_MAX_LEN];
> int ret;
>
> - if (output)
> - sprintf(debugfs_file, "%s/i915_psr_status", output-
> >name);
> - else
> - sprintf(debugfs_file, "%s", "i915_edp_psr_status");
> -
> + SET_DEBUGFS_PATH(output, debugfs_file);
> ret = igt_debugfs_simple_read(debugfs_fd, debugfs_file, buf,
> sizeof(buf));
> if (ret < 1)
> @@ -245,7 +248,9 @@ bool psr_sink_support(int device, int debugfs_fd,
> enum psr_mode mode, igt_output
> (strstr(line, "PSR = yes") &&
> (strstr(line, "[0x03]") || strstr(line,
> "[0x04]")));
> case PR_MODE:
> - return strstr(line, "Panel Replay = yes");
> + return strstr(line, "Panel Replay = yes, Panel Replay
> Selective Update = no");
> + case PR_MODE_SEL_FETCH:
> + return strstr(line, "Panel Replay = yes, Panel Replay
> Selective Update = yes");
> default:
> igt_assert_f(false, "Invalid psr mode\n");
> return false;
> @@ -305,7 +310,7 @@ void psr_print_debugfs(int debugfs_fd)
> igt_info("%s", buf);
> }
>
> -bool i915_psr2_selective_fetch_check(int drm_fd)
> +bool i915_psr2_selective_fetch_check(int drm_fd, igt_output_t
> *output)
> {
> int debugfs_fd;
> bool ret;
> @@ -314,7 +319,7 @@ bool i915_psr2_selective_fetch_check(int drm_fd)
> return false;
>
> debugfs_fd = igt_debugfs_dir(drm_fd);
> - ret = psr2_selective_fetch_check(debugfs_fd);
> + ret = selective_fetch_check(debugfs_fd, output);
> close(debugfs_fd);
>
> return ret;
> @@ -331,17 +336,24 @@ bool i915_psr2_selective_fetch_check(int
> drm_fd)
> * Returns:
> * True if PSR mode changed to PSR1, false otherwise.
> */
> -bool i915_psr2_sel_fetch_to_psr1(int drm_fd)
> +bool i915_pr_psr2_sel_fetch_to_pr_psr1(int drm_fd, igt_output_t
> *output)
> {
> int debugfs_fd;
> bool ret = false;
> + enum psr_mode mode;
>
> if (!is_intel_device(drm_fd))
> return ret;
>
> debugfs_fd = igt_debugfs_dir(drm_fd);
> - if (psr2_selective_fetch_check(debugfs_fd)) {
> - psr_set(drm_fd, debugfs_fd, PSR_MODE_1);
> + if (selective_fetch_check(debugfs_fd, output)) {
> + mode = psr_get_mode(debugfs_fd, output);
> + if (mode == PR_MODE_SEL_FETCH)
> + psr_set(drm_fd, debugfs_fd, PR_MODE, output);
> + else if (mode == PSR_MODE_2_SEL_FETCH)
> + psr_set(drm_fd, debugfs_fd, PSR_MODE_1,
> output);
> + else
> + igt_assert("switch not possible from current
> psr mode\n");
> ret = true;
> }
>
> @@ -355,12 +367,17 @@ bool i915_psr2_sel_fetch_to_psr1(int drm_fd)
> * Restore PSR2 selective fetch after tests were executed, this
> function should
> * only be called if i915_psr2_sel_fetch_to_psr1() returned true.
> */
> -void i915_psr2_sel_fetch_restore(int drm_fd)
> +void i915_pr_psr2_sel_fetch_restore(int drm_fd, igt_output_t
> *output)
> {
> int debugfs_fd;
> + enum psr_mode mode;
>
> debugfs_fd = igt_debugfs_dir(drm_fd);
> - psr_set(drm_fd, debugfs_fd, PSR_MODE_2_SEL_FETCH);
> + mode = psr_get_mode(debugfs_fd, output);
> + if (mode == PR_MODE)
> + psr_set(drm_fd, debugfs_fd, PR_MODE_SEL_FETCH,
> output);
> + else
> + psr_set(drm_fd, debugfs_fd, PSR_MODE_2_SEL_FETCH,
> output);
> close(debugfs_fd);
> }
>
> @@ -369,27 +386,30 @@ void i915_psr2_sel_fetch_restore(int drm_fd)
> *
> * Return the current PSR mode.
> */
> -enum psr_mode psr_get_mode(int debugfs_fd)
> +enum psr_mode psr_get_mode(int debugfs_fd, igt_output_t *output)
> {
> char buf[PSR_STATUS_MAX_LEN];
> + char debugfs_file[128] = {0};
> int ret;
>
> -
> - ret = igt_debugfs_simple_read(debugfs_fd,
> "i915_edp_psr_status", buf,
> + SET_DEBUGFS_PATH(output, debugfs_file);
> + ret = igt_debugfs_simple_read(debugfs_fd, debugfs_file, buf,
> sizeof(buf));
> if (ret < 0) {
> - igt_info("Could not read i915_edp_psr_status: %s\n",
> + igt_info("Could not read psr status: %s\n",
> strerror(-ret));
> return PSR_DISABLED;
> }
>
> if (strstr(buf, "Panel Replay Enabled"))
> return PR_MODE;
> + else if (strstr(buf, "Panel Replay Selective Update
> Enabled"))
> + return PR_MODE_SEL_FETCH;
> else if (strstr(buf, "PSR2 selective fetch: enabled"))
> return PSR_MODE_2_SEL_FETCH;
> - else if (strstr(buf, "PSR2 enabled"))
> + else if (strstr(buf, "PSR2"))
> return PSR_MODE_2;
> - else if (strstr(buf, "PSR1 enabled"))
> + else if (strstr(buf, "PSR1"))
> return PSR_MODE_1;
>
> return PSR_DISABLED;
> diff --git a/lib/igt_psr.h b/lib/igt_psr.h
> index 82a4e8c5e..36ba7f068 100644
> --- a/lib/igt_psr.h
> +++ b/lib/igt_psr.h
> @@ -46,21 +46,21 @@ enum fbc_mode {
> };
>
> bool psr_disabled_check(int debugfs_fd);
> -bool psr2_selective_fetch_check(int debugfs_fd);
> +bool selective_fetch_check(int debugfs_fd, igt_output_t *output);
> bool psr_wait_entry(int debugfs_fd, enum psr_mode mode, igt_output_t
> *output);
> bool psr_wait_update(int debugfs_fd, enum psr_mode mode,
> igt_output_t *output);
> bool psr_long_wait_update(int debugfs_fd, enum psr_mode mode,
> igt_output_t *output);
> -bool psr_enable(int device, int debugfs_fd, enum psr_mode);
> -bool psr_disable(int device, int debugfs_fd);
> +bool psr_enable(int device, int debugfs_fd, enum psr_mode,
> igt_output_t *output);
> +bool psr_disable(int device, int debugfs_fd, igt_output_t *output);
> bool psr_sink_support(int device, int debugfs_fd, enum psr_mode
> mode, igt_output_t *output);
> bool psr2_wait_su(int debugfs_fd, uint16_t *num_su_blocks);
> void psr_print_debugfs(int debugfs_fd);
> -enum psr_mode psr_get_mode(int debugfs_fd);
> +enum psr_mode psr_get_mode(int debugfs_fd, igt_output_t *output);
>
> -bool i915_psr2_selective_fetch_check(int drm_fd);
> +bool i915_psr2_selective_fetch_check(int drm_fd, igt_output_t
> *output);
>
> -bool i915_psr2_sel_fetch_to_psr1(int drm_fd);
> -void i915_psr2_sel_fetch_restore(int drm_fd);
> +bool i915_pr_psr2_sel_fetch_to_pr_psr1(int drm_fd, igt_output_t
> *output);
> +void i915_pr_psr2_sel_fetch_restore(int drm_fd, igt_output_t
> *output);
> bool is_psr_enable_possible(int drm_fd, enum psr_mode mode);
>
> #endif
> diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c
> index 7bf49cb15..22ca83305 100644
> --- a/tests/intel/kms_dirtyfb.c
> +++ b/tests/intel/kms_dirtyfb.c
> @@ -127,7 +127,7 @@ static void enable_feature(data_t *data)
> intel_fbc_enable(data->drm_fd);
> break;
> case FEATURE_PSR:
> - psr_enable(data->drm_fd, data->debugfs_fd,
> PSR_MODE_1);
> + psr_enable(data->drm_fd, data->debugfs_fd,
> PSR_MODE_1, NULL);
> break;
> case FEATURE_DRRS:
> intel_drrs_enable(data->drm_fd, data->pipe);
> @@ -167,7 +167,7 @@ static void check_feature(data_t *data)
> static void disable_features(data_t *data)
> {
> intel_fbc_disable(data->drm_fd);
> - psr_disable(data->drm_fd, data->debugfs_fd);
> + psr_disable(data->drm_fd, data->debugfs_fd, NULL);
> intel_drrs_disable(data->drm_fd, data->pipe);
> }
>
> diff --git a/tests/intel/kms_fbcon_fbt.c
> b/tests/intel/kms_fbcon_fbt.c
> index 90484dccf..71e42f19c 100644
> --- a/tests/intel/kms_fbcon_fbt.c
> +++ b/tests/intel/kms_fbcon_fbt.c
> @@ -277,7 +277,7 @@ static void disable_features(int device, int
> debugfs_fd)
> {
> igt_set_module_param_int(device, "enable_fbc", 0);
> if (psr_sink_support(device, debugfs_fd, PSR_MODE_1, NULL))
> - psr_disable(device, debugfs_fd);
> + psr_disable(device, debugfs_fd, NULL);
> }
>
> static inline void fbc_modparam_enable(int device, int debugfs_fd)
> @@ -287,7 +287,7 @@ static inline void fbc_modparam_enable(int
> device, int debugfs_fd)
>
> static inline void psr_debugfs_enable(int device, int debugfs_fd)
> {
> - psr_enable(device, debugfs_fd, PSR_MODE_1);
> + psr_enable(device, debugfs_fd, PSR_MODE_1, NULL);
> }
>
> static void fbc_skips_on_fbcon(int debugfs_fd)
> diff --git a/tests/intel/kms_frontbuffer_tracking.c
> b/tests/intel/kms_frontbuffer_tracking.c
> index 912cca3f8..023843161 100644
> --- a/tests/intel/kms_frontbuffer_tracking.c
> +++ b/tests/intel/kms_frontbuffer_tracking.c
> @@ -2234,7 +2234,7 @@ static bool disable_features(const struct
> test_mode *t)
> intel_fbc_disable(drm.fd);
> intel_drrs_disable(drm.fd, prim_mode_params.pipe);
>
> - return psr.can_test ? psr_disable(drm.fd, drm.debugfs) :
> false;
> + return psr.can_test ? psr_disable(drm.fd, drm.debugfs, NULL)
> : false;
> }
>
> static void *busy_thread_func(void *data)
> @@ -2867,7 +2867,7 @@ static bool enable_features_for_test(const
> struct test_mode *t)
> if (t->feature & FEATURE_FBC)
> intel_fbc_enable(drm.fd);
> if (t->feature & FEATURE_PSR)
> - ret = psr_enable(drm.fd, drm.debugfs, PSR_MODE_1);
> + ret = psr_enable(drm.fd, drm.debugfs, PSR_MODE_1,
> NULL);
> if (t->feature & FEATURE_DRRS)
> intel_drrs_enable(drm.fd, prim_mode_params.pipe);
>
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
> index 0d5824e67..7deebf83d 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -362,7 +362,7 @@ static void require_dc_counter(int debugfs_fd,
> int dc_flag)
> static void setup_dc3co(data_t *data)
> {
> data->op_psr_mode = PSR_MODE_2;
> - psr_enable(data->drm_fd, data->debugfs_fd, data-
> >op_psr_mode);
> + psr_enable(data->drm_fd, data->debugfs_fd, data->op_psr_mode,
> NULL);
> igt_require_f(psr_wait_entry(data->debugfs_fd, data-
> >op_psr_mode, NULL),
> "PSR2 is not enabled\n");
> }
> @@ -665,7 +665,7 @@ igt_main
> igt_require(psr_sink_support(data.drm_fd,
> data.debugfs_fd,
> PSR_MODE_1, NULL));
> data.op_psr_mode = PSR_MODE_1;
> - psr_enable(data.drm_fd, data.debugfs_fd,
> data.op_psr_mode);
> + psr_enable(data.drm_fd, data.debugfs_fd,
> data.op_psr_mode, NULL);
> test_dc_state_psr(&data, CHECK_DC5);
> }
>
> @@ -675,7 +675,7 @@ igt_main
> igt_require(psr_sink_support(data.drm_fd,
> data.debugfs_fd,
> PSR_MODE_1, NULL));
> data.op_psr_mode = PSR_MODE_1;
> - psr_enable(data.drm_fd, data.debugfs_fd,
> data.op_psr_mode);
> + psr_enable(data.drm_fd, data.debugfs_fd,
> data.op_psr_mode, NULL);
> igt_require_f(igt_pm_pc8_plus_residencies_enabled(dat
> a.msr_fd),
> "PC8+ residencies not supported\n");
> if (intel_display_ver(data.devid) >= 14)
> diff --git a/tests/intel/kms_psr.c b/tests/intel/kms_psr.c
> index 521d4c708..3822b3081 100644
> --- a/tests/intel/kms_psr.c
> +++ b/tests/intel/kms_psr.c
> @@ -519,7 +519,7 @@ static bool psr_enable_if_enabled(data_t *data)
> igt_skip("enable_psr modparam doesn't allow psr mode
> %d\n",
> data->op_psr_mode);
>
> - return psr_enable(data->drm_fd, data->debugfs_fd, data-
> >op_psr_mode);
> + return psr_enable(data->drm_fd, data->debugfs_fd, data-
> >op_psr_mode, data->output);
> }
>
> static inline void manual(const char *expected)
> @@ -658,6 +658,7 @@ static void test_cleanup(data_t *data)
>
> igt_remove_fb(data->drm_fd, &data->fb_green);
> igt_remove_fb(data->drm_fd, &data->fb_white);
> + psr_disable(data->drm_fd, data->debugfs_fd, data->output);
> }
>
> static void setup_test_plane(data_t *data, int test_plane)
> @@ -976,7 +977,6 @@ igt_main
> }
>
> igt_fixture {
> - psr_disable(data.drm_fd, data.debugfs_fd);
>
> close(data.debugfs_fd);
> buf_ops_destroy(data.bops);
> diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c
> index ecf9ad77f..8e6a9e02c 100644
> --- a/tests/intel/kms_psr2_sf.c
> +++ b/tests/intel/kms_psr2_sf.c
> @@ -1012,11 +1012,6 @@ igt_main
> data.fbc_flag = true;
> }
>
> - /* Test if PSR2 can be enabled */
> - igt_require_f(psr_enable(data.drm_fd,
> - data.debugfs_fd,
> PSR_MODE_2_SEL_FETCH),
> - "Error enabling PSR2\n");
> -
> data.damage_area_count = MAX_DAMAGE_AREAS;
> data.primary_format = DRM_FORMAT_XRGB8888;
>
> @@ -1026,9 +1021,6 @@ igt_main
> igt_info("Big framebuffer size %dx%d\n",
> data.big_fb_width, data.big_fb_height);
>
> -
> igt_require_f(psr2_selective_fetch_check(data.debugfs_f
> d),
> - "PSR2 selective fetch not enabled\n");
> -
> for_each_pipe_with_valid_output(&data.display,
> data.pipe, data.output) {
> coexist_features[n_pipes] = 0;
> if (check_psr2_support(&data)) {
> diff --git a/tests/intel/kms_psr2_su.c b/tests/intel/kms_psr2_su.c
> index 936b5beb3..437ee36f6 100644
> --- a/tests/intel/kms_psr2_su.c
> +++ b/tests/intel/kms_psr2_su.c
> @@ -338,7 +338,7 @@ igt_main
>
> /* Test if PSR2 can be enabled */
> igt_require_f(psr_enable(data.drm_fd,
> - data.debugfs_fd,
> PSR_MODE_2),
> + data.debugfs_fd, PSR_MODE_2,
> NULL),
> "Error enabling PSR2\n");
> data.op = FRONTBUFFER;
> data.format = DRM_FORMAT_XRGB8888;
> diff --git a/tests/intel/kms_psr_stress_test.c
> b/tests/intel/kms_psr_stress_test.c
> index 7aea8e8a5..bca3bd513 100644
> --- a/tests/intel/kms_psr_stress_test.c
> +++ b/tests/intel/kms_psr_stress_test.c
> @@ -230,7 +230,7 @@ static void prepare(data_t *data)
> r = timerfd_settime(data->completed_timerfd, 0, &interval,
> NULL);
> igt_require_f(r != -1, "Error setting completed_timerfd\n");
>
> - data->initial_state = psr_get_mode(data->debugfs_fd);
> + data->initial_state = psr_get_mode(data->debugfs_fd, NULL);
> igt_require(data->initial_state != PSR_DISABLED);
> igt_require(psr_wait_entry(data->debugfs_fd, data-
> >initial_state, NULL));
> }
> @@ -343,7 +343,7 @@ static void run(data_t *data)
> }
>
> /* Check if after all this stress the PSR is still in the
> same state */
> - igt_assert(psr_get_mode(data->debugfs_fd) == data-
> >initial_state);
> + igt_assert(psr_get_mode(data->debugfs_fd, NULL) == data-
> >initial_state);
> }
>
> igt_main
> diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
> index a0349fa03..2895168f7 100644
> --- a/tests/kms_async_flips.c
> +++ b/tests/kms_async_flips.c
> @@ -391,7 +391,7 @@ static void test_cursor(data_t *data)
> * necessary, causing the async flip to fail because async
> flip is not
> * supported in cursor plane.
> */
> - igt_skip_on_f(i915_psr2_selective_fetch_check(data->drm_fd),
> + igt_skip_on_f(i915_psr2_selective_fetch_check(data->drm_fd,
> NULL),
> "PSR2 sel fetch causes cursor to be added to
> primary plane " \
> "pages flips and async flip is not supported in
> cursor\n");
>
> @@ -704,7 +704,7 @@ igt_main
> * necessary, causing the async flip to fail because
> async flip is not
> * supported in cursor plane.
> */
> -
> igt_skip_on_f(i915_psr2_selective_fetch_check(data.drm_
> fd),
> + igt_skip_on_f(i915_psr2_selective_fetch_check(data.dr
> m_fd, NULL),
> "PSR2 sel fetch causes cursor to be
> added to primary plane " \
> "pages flips and async flip is not
> supported in cursor\n");
>
> diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
> index 0017659d4..91e5e9b07 100644
> --- a/tests/kms_cursor_legacy.c
> +++ b/tests/kms_cursor_legacy.c
> @@ -1849,7 +1849,7 @@ igt_main
> * page flip with cursor legacy APIS when Intel's
> PSR2 selective
> * fetch is enabled, so switching PSR1 for this whole
> test.
> */
> - intel_psr2_restore =
> i915_psr2_sel_fetch_to_psr1(display.drm_fd);
> + intel_psr2_restore =
> i915_pr_psr2_sel_fetch_to_pr_psr1(display.drm_fd, NULL);
> }
>
> igt_describe("Test checks how many cursor updates we can fit
> between vblanks "
> @@ -2074,7 +2074,7 @@ igt_main
>
> igt_fixture {
> if (intel_psr2_restore)
> - i915_psr2_sel_fetch_restore(display.drm_fd);
> + i915_pr_psr2_sel_fetch_restore(display.drm_fd
> , NULL);
> igt_display_fini(&display);
> drm_close_driver(display.drm_fd);
> }
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf
2024-02-08 14:54 ` [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf Kunal Joshi
@ 2024-02-16 8:25 ` Hogander, Jouni
2024-02-19 5:25 ` Joshi, Kunal1
0 siblings, 1 reply; 13+ messages in thread
From: Hogander, Jouni @ 2024-02-16 8:25 UTC (permalink / raw)
To: Joshi, Kunal1, igt-dev@lists.freedesktop.org
Cc: Murthy, Arun R, Manna, Animesh
On Thu, 2024-02-08 at 20:24 +0530, Kunal Joshi wrote:
> Extend the tests to cover panel replay selective fetch feature.
>
> From kms_psr2_sf test point of view we have
> check_pr_psr2_sel_fetch_support
> function to check if PR/PSR2 selective fetch is supported for an
> output
> if output supports selective fetch then we check we enter DEEP_SLEEP
> mode
> in run function
>
> v2: fixed dynamic test name
> v3: use check_psr2_support (Jouni)
> v4: correct order of checks in check_pr_psr2_sel_fetch_support
> (Jouni)
> use appropriate psr mode in psr_wait_entry (Jouni)
>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Cc: Animesh Manna <animesh.manna@intel.com>
> Cc: Arun R Murthy <arun.r.murthy@intel.com>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> tests/intel/kms_psr2_sf.c | 147 +++++++++++++++++++++++++++++++-----
> --
> 1 file changed, 120 insertions(+), 27 deletions(-)
>
> diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c
> index 8e6a9e02c..0595c1f11 100644
> --- a/tests/intel/kms_psr2_sf.c
> +++ b/tests/intel/kms_psr2_sf.c
> @@ -172,6 +172,7 @@ typedef struct {
> uint32_t screen_changes;
> int cur_x, cur_y;
> enum pipe pipe;
> + enum psr_mode psr_mode;
> enum {
> FEATURE_NONE = 0,
> FEATURE_DSC = 1,
> @@ -179,6 +180,34 @@ typedef struct {
> } coexist_feature;
> } data_t;
>
> +static enum psr_mode get_sel_fetch_mode_for_output(data_t *data,
> igt_output_t *output)
> +{
> + enum psr_mode mode = PSR_DISABLED;
> +
> + if (psr_sink_support(data->drm_fd, data->debugfs_fd,
> + PR_MODE_SEL_FETCH,
> output))
> + mode = PR_MODE_SEL_FETCH;
> + else if (psr_sink_support(data->drm_fd, data->debugfs_fd,
> + PSR_MODE_2,
> output))
> + mode = PSR_MODE_2;
> + else
> + igt_info("selective fetch not supported on output
> %s\n", output->name);
> +
> + return mode;
> +}
> +
> +static const char *get_psr_mode_str_for_output(data_t *data,
> igt_output_t *output)
> +{
> + const char *psr_mode = NULL;
If you are doing it this way this variable should be static. I'm not
sure if renaming these testcases to pr-* and psr2-* gives any benefit.
I'll guess it is ok, if you want to do that change.
> +
> + if (get_sel_fetch_mode_for_output(data, output) ==
> PR_MODE_SEL_FETCH)
> + psr_mode = "pr-";
> + else if (get_sel_fetch_mode_for_output(data, output) ==
> PSR_MODE_2)
> + psr_mode = "psr2-";
> + igt_assert_f(psr_mode, "Invalid psr mode\n");
> + return psr_mode;
> +}
> +
> static const char *op_str(enum operations op)
> {
> static const char * const name[] = {
> @@ -688,7 +717,7 @@ static void damaged_plane_move(data_t *data)
>
> igt_display_commit2(&data->display, COMMIT_ATOMIC);
>
> - igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2,
> NULL));
> + igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode,
> data->output));
Not really matter of this patch. I think at some point you need one
more patch to differentiate in psr_wait_entry (psr_active_check) based
on output type eDP vs. DP. See Bspec 68920 "Additional programming
considerations (registers common between eDP and DP)".
BR,
Jouni Högander
>
> expected_output(data);
> }
> @@ -788,7 +817,7 @@ static void plane_move_continuous(data_t *data)
> {
> int target_x, target_y;
>
> - igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2,
> NULL));
> + igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode,
> data->output));
>
> get_target_coords(data, &target_x, &target_y);
>
> @@ -865,7 +894,7 @@ static void damaged_plane_update(data_t *data)
> igt_plane_set_position(data->test_plane, 0, 0);
> igt_display_commit2(&data->display, COMMIT_ATOMIC);
>
> - igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2,
> NULL));
> + igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode,
> data->output));
>
> expected_output(data);
> }
> @@ -874,7 +903,7 @@ static void run(data_t *data)
> {
> int i;
>
> - igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2,
> NULL));
> + igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode,
> data->output));
>
> if (data->fbc_flag == true && data->op_fbc_mode ==
> FBC_ENABLED)
> igt_assert_f(intel_fbc_wait_until_enabled(data-
> >drm_fd,
> @@ -952,14 +981,24 @@ static void cleanup(data_t *data)
> igt_remove_fb(data->drm_fd, &data->fb_test);
> }
>
> -static int check_psr2_support(data_t *data)
> +static bool check_pr_psr2_sel_fetch_support(data_t *data)
> {
> - int status;
> + bool status = false;
> + enum psr_mode psr_mode;
> +
> + /* Check sink supports PR/PSR2 selective fetch */
> + psr_mode = get_sel_fetch_mode_for_output(data, data->output);
> + if (psr_mode == PSR_DISABLED)
> + return false;
> +
> + /* Check if selective fetch can be enabled */
> + if (!selective_fetch_check(data->debugfs_fd, data->output))
> + igt_assert("Selective fetch is not enabled even
> though panel should support it\n");
>
> prepare(data);
> - status = psr_wait_entry(data->debugfs_fd, PSR_MODE_2, NULL);
> + /* We enter into DEEP_SLEEP for both PSR2 and PR sel fetch */
> + status = psr_wait_entry(data->debugfs_fd, psr_mode, data-
> >output);
> cleanup(data);
> -
> return status;
> }
>
> @@ -981,6 +1020,8 @@ pipe_output_combo_valid(igt_display_t *display,
>
> igt_main
> {
> + bool output_supports_pr_psr2_sel_fetch = false;
> + bool pr_psr2_sel_fetch_supported = false;
> data_t data = {};
> igt_output_t *outputs[IGT_MAX_PIPES * IGT_MAX_PIPES];
> int i, j, k, y;
> @@ -1000,11 +1041,6 @@ igt_main
> data.debugfs_fd = igt_debugfs_dir(data.drm_fd);
> kmstest_set_vt_graphics_mode();
>
> - igt_require_f(psr_sink_support(data.drm_fd,
> - data.debugfs_fd,
> PSR_MODE_2,
> - NULL),
> - "Sink does not support PSR2\n");
> -
> display_init(&data);
>
> if
> ((intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20) &&
> @@ -1023,7 +1059,8 @@ igt_main
>
> for_each_pipe_with_valid_output(&data.display,
> data.pipe, data.output) {
> coexist_features[n_pipes] = 0;
> - if (check_psr2_support(&data)) {
> + output_supports_pr_psr2_sel_fetch =
> check_pr_psr2_sel_fetch_support(&data);
> + if (output_supports_pr_psr2_sel_fetch) {
> pipes[n_pipes] = data.pipe;
> outputs[n_pipes] = data.output;
>
> @@ -1032,7 +1069,10 @@ igt_main
>
> n_pipes++;
> }
> + pr_psr2_sel_fetch_supported |=
> output_supports_pr_psr2_sel_fetch;
> }
> + igt_require_f(pr_psr2_sel_fetch_supported,
> + "No output supports
> selective fetch\n");
> }
>
> for (y = 0; y < ARRAY_SIZE(fbc_status); y++) {
> @@ -1053,13 +1093,17 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_PRIMARY;
> data.coexist_feature
> = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr
> _mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> for (k = 1; k <=
> MAX_DAMAGE_AREAS; k++) {
> data.damage_a
> rea_count = k;
> prepare(&data
> );
> @@ -1086,7 +1130,8 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE
> && !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-
> %s-%s%s",
> + igt_dynamic_f("%s-
> pipe-%s-%s%s",
> +
> get_psr_mode_str_for_output(&data, outputs[i]),
>
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> @@ -1094,6 +1139,9 @@ igt_main
> data.output =
> outputs[i];
> data.test_pla
> ne_id = DRM_PLANE_TYPE_PRIMARY;
> data.coexist_
> feature = j;
> + data.psr_mode
> = get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(
> data.psr_mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> for (k = 1; k
> <= MAX_DAMAGE_AREAS; k++) {
> data.
> damage_area_count = k;
> prepa
> re(&data);
> @@ -1118,13 +1166,17 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> data.coexist_feature
> = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr
> _mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> for (k = 1; k <=
> MAX_DAMAGE_AREAS; k++) {
> data.damage_a
> rea_count = k;
> prepare(&data
> );
> @@ -1148,13 +1200,17 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_CURSOR;
> data.coexist_feature
> = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr
> _mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> prepare(&data);
> run(&data);
> cleanup(&data);
> @@ -1174,13 +1230,17 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_CURSOR;
> data.coexist_feature
> = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr
> _mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> prepare(&data);
> run(&data);
> cleanup(&data);
> @@ -1201,13 +1261,17 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_CURSOR;
> data.coexist_feature
> = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr
> _mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> prepare(&data);
> run(&data);
> cleanup(&data);
> @@ -1228,13 +1292,17 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_CURSOR;
> data.coexist_feature
> = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr
> _mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> prepare(&data);
> run(&data);
> cleanup(&data);
> @@ -1256,13 +1324,18 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s",
> +
> get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> data.coexist_feature
> = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr
> _mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> for (k =
> POS_TOP_LEFT; k <= POS_BOTTOM_RIGHT ; k++) {
> data.pos = k;
> prepare(&data
> );
> @@ -1285,13 +1358,17 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output = outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> data.coexist_feature = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr_mode !=
> PSR_DISABLED,
> +
> "Invalid psr mode\n");
> prepare(&data);
> run(&data);
> cleanup(&data);
> @@ -1312,13 +1389,17 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> data.coexist_feature
> = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr
> _mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> prepare(&data);
> run(&data);
> cleanup(&data);
> @@ -1339,13 +1420,17 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> data.output =
> outputs[i];
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> data.coexist_feature
> = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr
> _mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> prepare(&data);
> run(&data);
> cleanup(&data);
> @@ -1367,7 +1452,8 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", kmstest_pipe_name(pipes[i]),
> +
> get_psr_mode_str_for_output(&data, outputs[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> @@ -1376,6 +1462,9 @@ igt_main
> data.damage_a
> rea_count = k;
> data.test_pla
> ne_id = DRM_PLANE_TYPE_PRIMARY;
> data.coexist_
> feature = j;
> + data.psr_mode
> = get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(
> data.psr_mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> prepare(&data
> );
> run(&data);
> cleanup(&data
> );
> @@ -1400,7 +1489,8 @@ igt_main
> for (j = FEATURE_NONE; j <
> FEATURE_COUNT; j++) {
> if (j != FEATURE_NONE &&
> !(coexist_features[i] & j))
> continue;
> - igt_dynamic_f("pipe-%s-%s%s",
> kmstest_pipe_name(pipes[i]),
> + igt_dynamic_f("%s-pipe-%s-
> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
> +
> kmstest_pipe_name(pipes[i]),
>
> igt_output_name(outputs[i]),
>
> coexist_feature_str(j)) {
> data.pipe = pipes[i];
> @@ -1412,6 +1502,9 @@ igt_main
> data.primary_
> format = DRM_FORMAT_NV12;
> data.test_plane_id =
> DRM_PLANE_TYPE_OVERLAY;
> data.coexist_feature
> = j;
> + data.psr_mode =
> get_sel_fetch_mode_for_output(&data, data.output);
> + igt_assert_f(data.psr
> _mode != PSR_DISABLED,
> +
> "Invalid psr mode\n");
> prepare(&data);
> run(&data);
> cleanup(&data);
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_psr: add support for PR selective update
2024-02-16 7:01 ` Hogander, Jouni
@ 2024-02-19 5:22 ` Joshi, Kunal1
0 siblings, 0 replies; 13+ messages in thread
From: Joshi, Kunal1 @ 2024-02-19 5:22 UTC (permalink / raw)
To: Hogander, Jouni, igt-dev@lists.freedesktop.org
Cc: Murthy, Arun R, Manna, Animesh
Hello Jouni,
On 2/16/2024 12:31 PM, Hogander, Jouni wrote:
> Hello Kunal,
>
> I think you should keep your set as three patches. This is now mixture
> of adding support for multiple outputs and add support for PR selective
> update. Please split. I think otherwise changes look ok.
>
> BR,
>
> Jouni Högander
Thanks for looking, have sent next revision separating patch as you
suggested.
Regards
Kunal Joshi
>
> On Thu, 2024-02-08 at 20:24 +0530, Kunal Joshi wrote:
>> adapt to kmd changes to support PR selective update
>> https://patchwork.freedesktop.org/patch/575163/?series=128193&rev=3
>>
>> v2: "PSR2 selective fetch: enable" valid for both cases (Jouni)
>> v3: Organize patches according to title (Jouni)
>> Use macro instead of function (Jouni)
>>
>> Cc: Jouni Högander <jouni.hogander@intel.com>
>> Cc: Animesh Manna <animesh.manna@intel.com>
>> Cc: Arun R Murthy <arun.r.murthy@intel.com>
>> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
>> ---
>> lib/igt_psr.c | 98 ++++++++++++++++--------
>> --
>> lib/igt_psr.h | 14 ++--
>> tests/intel/kms_dirtyfb.c | 4 +-
>> tests/intel/kms_fbcon_fbt.c | 4 +-
>> tests/intel/kms_frontbuffer_tracking.c | 4 +-
>> tests/intel/kms_pm_dc.c | 6 +-
>> tests/intel/kms_psr.c | 4 +-
>> tests/intel/kms_psr2_sf.c | 8 ---
>> tests/intel/kms_psr2_su.c | 2 +-
>> tests/intel/kms_psr_stress_test.c | 4 +-
>> tests/kms_async_flips.c | 4 +-
>> tests/kms_cursor_legacy.c | 4 +-
>> 12 files changed, 84 insertions(+), 72 deletions(-)
>>
>> diff --git a/lib/igt_psr.c b/lib/igt_psr.c
>> index ac214fcfc..9accd2047 100644
>> --- a/lib/igt_psr.c
>> +++ b/lib/igt_psr.c
>> @@ -27,6 +27,10 @@
>> #include "igt_sysfs.h"
>> #include <errno.h>
>>
>> +#define SET_DEBUGFS_PATH(output, path) \
>> + sprintf(path, "%s%s%s", output ? output->name : "", output ?
>> "/" : "", \
>> + output ? "i915_psr_status" :
>> "i915_edp_psr_status")
>> +
>> bool psr_disabled_check(int debugfs_fd)
>> {
>> char buf[PSR_STATUS_MAX_LEN];
>> @@ -37,11 +41,13 @@ bool psr_disabled_check(int debugfs_fd)
>> return strstr(buf, "PSR mode: disabled\n");
>> }
>>
>> -bool psr2_selective_fetch_check(int debugfs_fd)
>> +bool selective_fetch_check(int debugfs_fd, igt_output_t *output)
>> {
>> char buf[PSR_STATUS_MAX_LEN];
>> + char debugfs_file[128] = {0};
>>
>> - igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status",
>> buf,
>> + SET_DEBUGFS_PATH(output, debugfs_file);
>> + igt_debugfs_simple_read(debugfs_fd, debugfs_file, buf,
>> sizeof(buf));
>>
>> return strstr(buf, "PSR2 selective fetch: enabled");
>> @@ -54,11 +60,7 @@ static bool psr_active_check(int debugfs_fd, enum
>> psr_mode mode, igt_output_t *o
>> const char *state = (mode == PSR_MODE_1 || mode == PR_MODE) ?
>> "SRDENT" : "DEEP_SLEEP";
>> int ret;
>>
>> - if (output)
>> - sprintf(debugfs_file, "%s/i915_psr_status", output-
>>> name);
>> - else
>> - sprintf(debugfs_file, "%s", "i915_edp_psr_status");
>> -
>> + SET_DEBUGFS_PATH(output, debugfs_file);
>> ret = igt_debugfs_simple_read(debugfs_fd, debugfs_file,
>> buf, sizeof(buf));
>> if (ret < 0) {
>> @@ -90,13 +92,18 @@ bool psr_long_wait_update(int debugfs_fd, enum
>> psr_mode mode, igt_output_t *outp
>> return igt_wait(!psr_active_check(debugfs_fd, mode, output),
>> 500, 10);
>> }
>>
>> -static ssize_t psr_write(int debugfs_fd, const char *buf)
>> +static ssize_t psr_write(int debugfs_fd, const char *buf,
>> igt_output_t *output)
>> {
>> + /*
>> + * FIXME: Currently we don't have separate psr_debug file for
>> each output.
>> + * so, we are using i915_edp_psr_debug file for all outputs.
>> + * Later we need to add support for separate psr_debug file
>> for each output.
>> + */
>> return igt_sysfs_write(debugfs_fd, "i915_edp_psr_debug", buf,
>> - strlen(buf));
>> + strlen(buf));
>> }
>>
>> -static int has_psr_debugfs(int debugfs_fd)
>> +static int has_psr_debugfs(int debugfs_fd, igt_output_t *output)
>> {
>> int ret;
>>
>> @@ -105,7 +112,7 @@ static int has_psr_debugfs(int debugfs_fd)
>> * Legacy mode will return OK here, debugfs api will return -
>> EINVAL.
>> * -ENODEV is returned when PSR is unavailable.
>> */
>> - ret = psr_write(debugfs_fd, "0xf");
>> + ret = psr_write(debugfs_fd, "0xf", output);
>> if (ret == -EINVAL) {
>> errno = 0;
>> return 0;
>> @@ -113,7 +120,7 @@ static int has_psr_debugfs(int debugfs_fd)
>> return ret;
>>
>> /* legacy debugfs api, we enabled irqs by writing, disable
>> them. */
>> - psr_write(debugfs_fd, "0");
>> + psr_write(debugfs_fd, "0", output);
>> return -EINVAL;
>> }
>>
>> @@ -134,14 +141,14 @@ static int psr_restore_debugfs_fd = -1;
>>
>> static void restore_psr_debugfs(int sig)
>> {
>> - psr_write(psr_restore_debugfs_fd, "0");
>> + psr_write(psr_restore_debugfs_fd, "0", NULL);
>> }
>>
>> -static bool psr_set(int device, int debugfs_fd, int mode)
>> +static bool psr_set(int device, int debugfs_fd, int mode,
>> igt_output_t *output)
>> {
>> int ret;
>>
>> - ret = has_psr_debugfs(debugfs_fd);
>> + ret = has_psr_debugfs(debugfs_fd, output);
>> if (ret == -ENODEV) {
>> igt_skip("PSR not available\n");
>> return false;
>> @@ -179,7 +186,7 @@ static bool psr_set(int device, int debugfs_fd,
>> int mode)
>> debug_val = "0x1";
>> }
>>
>> - ret = psr_write(debugfs_fd, debug_val);
>> + ret = psr_write(debugfs_fd, debug_val, output);
>> igt_require_f(ret > 0, "PSR2 SF feature not
>> available\n");
>> }
>>
>> @@ -193,15 +200,15 @@ static bool psr_set(int device, int debugfs_fd,
>> int mode)
>> return ret;
>> }
>>
>> -bool psr_enable(int device, int debugfs_fd, enum psr_mode mode)
>> +bool psr_enable(int device, int debugfs_fd, enum psr_mode mode,
>> igt_output_t *output)
>> {
>> - return psr_set(device, debugfs_fd, mode);
>> + return psr_set(device, debugfs_fd, mode, output);
>> }
>>
>> -bool psr_disable(int device, int debugfs_fd)
>> +bool psr_disable(int device, int debugfs_fd, igt_output_t *output)
>> {
>> /* Any mode different than PSR_MODE_1/2 will disable PSR */
>> - return psr_set(device, debugfs_fd, -1);
>> + return psr_set(device, debugfs_fd, -1, output);
>> }
>>
>> bool psr_sink_support(int device, int debugfs_fd, enum psr_mode
>> mode, igt_output_t *output)
>> @@ -211,11 +218,7 @@ bool psr_sink_support(int device, int
>> debugfs_fd, enum psr_mode mode, igt_output
>> char buf[PSR_STATUS_MAX_LEN];
>> int ret;
>>
>> - if (output)
>> - sprintf(debugfs_file, "%s/i915_psr_status", output-
>>> name);
>> - else
>> - sprintf(debugfs_file, "%s", "i915_edp_psr_status");
>> -
>> + SET_DEBUGFS_PATH(output, debugfs_file);
>> ret = igt_debugfs_simple_read(debugfs_fd, debugfs_file, buf,
>> sizeof(buf));
>> if (ret < 1)
>> @@ -245,7 +248,9 @@ bool psr_sink_support(int device, int debugfs_fd,
>> enum psr_mode mode, igt_output
>> (strstr(line, "PSR = yes") &&
>> (strstr(line, "[0x03]") || strstr(line,
>> "[0x04]")));
>> case PR_MODE:
>> - return strstr(line, "Panel Replay = yes");
>> + return strstr(line, "Panel Replay = yes, Panel Replay
>> Selective Update = no");
>> + case PR_MODE_SEL_FETCH:
>> + return strstr(line, "Panel Replay = yes, Panel Replay
>> Selective Update = yes");
>> default:
>> igt_assert_f(false, "Invalid psr mode\n");
>> return false;
>> @@ -305,7 +310,7 @@ void psr_print_debugfs(int debugfs_fd)
>> igt_info("%s", buf);
>> }
>>
>> -bool i915_psr2_selective_fetch_check(int drm_fd)
>> +bool i915_psr2_selective_fetch_check(int drm_fd, igt_output_t
>> *output)
>> {
>> int debugfs_fd;
>> bool ret;
>> @@ -314,7 +319,7 @@ bool i915_psr2_selective_fetch_check(int drm_fd)
>> return false;
>>
>> debugfs_fd = igt_debugfs_dir(drm_fd);
>> - ret = psr2_selective_fetch_check(debugfs_fd);
>> + ret = selective_fetch_check(debugfs_fd, output);
>> close(debugfs_fd);
>>
>> return ret;
>> @@ -331,17 +336,24 @@ bool i915_psr2_selective_fetch_check(int
>> drm_fd)
>> * Returns:
>> * True if PSR mode changed to PSR1, false otherwise.
>> */
>> -bool i915_psr2_sel_fetch_to_psr1(int drm_fd)
>> +bool i915_pr_psr2_sel_fetch_to_pr_psr1(int drm_fd, igt_output_t
>> *output)
>> {
>> int debugfs_fd;
>> bool ret = false;
>> + enum psr_mode mode;
>>
>> if (!is_intel_device(drm_fd))
>> return ret;
>>
>> debugfs_fd = igt_debugfs_dir(drm_fd);
>> - if (psr2_selective_fetch_check(debugfs_fd)) {
>> - psr_set(drm_fd, debugfs_fd, PSR_MODE_1);
>> + if (selective_fetch_check(debugfs_fd, output)) {
>> + mode = psr_get_mode(debugfs_fd, output);
>> + if (mode == PR_MODE_SEL_FETCH)
>> + psr_set(drm_fd, debugfs_fd, PR_MODE, output);
>> + else if (mode == PSR_MODE_2_SEL_FETCH)
>> + psr_set(drm_fd, debugfs_fd, PSR_MODE_1,
>> output);
>> + else
>> + igt_assert("switch not possible from current
>> psr mode\n");
>> ret = true;
>> }
>>
>> @@ -355,12 +367,17 @@ bool i915_psr2_sel_fetch_to_psr1(int drm_fd)
>> * Restore PSR2 selective fetch after tests were executed, this
>> function should
>> * only be called if i915_psr2_sel_fetch_to_psr1() returned true.
>> */
>> -void i915_psr2_sel_fetch_restore(int drm_fd)
>> +void i915_pr_psr2_sel_fetch_restore(int drm_fd, igt_output_t
>> *output)
>> {
>> int debugfs_fd;
>> + enum psr_mode mode;
>>
>> debugfs_fd = igt_debugfs_dir(drm_fd);
>> - psr_set(drm_fd, debugfs_fd, PSR_MODE_2_SEL_FETCH);
>> + mode = psr_get_mode(debugfs_fd, output);
>> + if (mode == PR_MODE)
>> + psr_set(drm_fd, debugfs_fd, PR_MODE_SEL_FETCH,
>> output);
>> + else
>> + psr_set(drm_fd, debugfs_fd, PSR_MODE_2_SEL_FETCH,
>> output);
>> close(debugfs_fd);
>> }
>>
>> @@ -369,27 +386,30 @@ void i915_psr2_sel_fetch_restore(int drm_fd)
>> *
>> * Return the current PSR mode.
>> */
>> -enum psr_mode psr_get_mode(int debugfs_fd)
>> +enum psr_mode psr_get_mode(int debugfs_fd, igt_output_t *output)
>> {
>> char buf[PSR_STATUS_MAX_LEN];
>> + char debugfs_file[128] = {0};
>> int ret;
>>
>> -
>> - ret = igt_debugfs_simple_read(debugfs_fd,
>> "i915_edp_psr_status", buf,
>> + SET_DEBUGFS_PATH(output, debugfs_file);
>> + ret = igt_debugfs_simple_read(debugfs_fd, debugfs_file, buf,
>> sizeof(buf));
>> if (ret < 0) {
>> - igt_info("Could not read i915_edp_psr_status: %s\n",
>> + igt_info("Could not read psr status: %s\n",
>> strerror(-ret));
>> return PSR_DISABLED;
>> }
>>
>> if (strstr(buf, "Panel Replay Enabled"))
>> return PR_MODE;
>> + else if (strstr(buf, "Panel Replay Selective Update
>> Enabled"))
>> + return PR_MODE_SEL_FETCH;
>> else if (strstr(buf, "PSR2 selective fetch: enabled"))
>> return PSR_MODE_2_SEL_FETCH;
>> - else if (strstr(buf, "PSR2 enabled"))
>> + else if (strstr(buf, "PSR2"))
>> return PSR_MODE_2;
>> - else if (strstr(buf, "PSR1 enabled"))
>> + else if (strstr(buf, "PSR1"))
>> return PSR_MODE_1;
>>
>> return PSR_DISABLED;
>> diff --git a/lib/igt_psr.h b/lib/igt_psr.h
>> index 82a4e8c5e..36ba7f068 100644
>> --- a/lib/igt_psr.h
>> +++ b/lib/igt_psr.h
>> @@ -46,21 +46,21 @@ enum fbc_mode {
>> };
>>
>> bool psr_disabled_check(int debugfs_fd);
>> -bool psr2_selective_fetch_check(int debugfs_fd);
>> +bool selective_fetch_check(int debugfs_fd, igt_output_t *output);
>> bool psr_wait_entry(int debugfs_fd, enum psr_mode mode, igt_output_t
>> *output);
>> bool psr_wait_update(int debugfs_fd, enum psr_mode mode,
>> igt_output_t *output);
>> bool psr_long_wait_update(int debugfs_fd, enum psr_mode mode,
>> igt_output_t *output);
>> -bool psr_enable(int device, int debugfs_fd, enum psr_mode);
>> -bool psr_disable(int device, int debugfs_fd);
>> +bool psr_enable(int device, int debugfs_fd, enum psr_mode,
>> igt_output_t *output);
>> +bool psr_disable(int device, int debugfs_fd, igt_output_t *output);
>> bool psr_sink_support(int device, int debugfs_fd, enum psr_mode
>> mode, igt_output_t *output);
>> bool psr2_wait_su(int debugfs_fd, uint16_t *num_su_blocks);
>> void psr_print_debugfs(int debugfs_fd);
>> -enum psr_mode psr_get_mode(int debugfs_fd);
>> +enum psr_mode psr_get_mode(int debugfs_fd, igt_output_t *output);
>>
>> -bool i915_psr2_selective_fetch_check(int drm_fd);
>> +bool i915_psr2_selective_fetch_check(int drm_fd, igt_output_t
>> *output);
>>
>> -bool i915_psr2_sel_fetch_to_psr1(int drm_fd);
>> -void i915_psr2_sel_fetch_restore(int drm_fd);
>> +bool i915_pr_psr2_sel_fetch_to_pr_psr1(int drm_fd, igt_output_t
>> *output);
>> +void i915_pr_psr2_sel_fetch_restore(int drm_fd, igt_output_t
>> *output);
>> bool is_psr_enable_possible(int drm_fd, enum psr_mode mode);
>>
>> #endif
>> diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c
>> index 7bf49cb15..22ca83305 100644
>> --- a/tests/intel/kms_dirtyfb.c
>> +++ b/tests/intel/kms_dirtyfb.c
>> @@ -127,7 +127,7 @@ static void enable_feature(data_t *data)
>> intel_fbc_enable(data->drm_fd);
>> break;
>> case FEATURE_PSR:
>> - psr_enable(data->drm_fd, data->debugfs_fd,
>> PSR_MODE_1);
>> + psr_enable(data->drm_fd, data->debugfs_fd,
>> PSR_MODE_1, NULL);
>> break;
>> case FEATURE_DRRS:
>> intel_drrs_enable(data->drm_fd, data->pipe);
>> @@ -167,7 +167,7 @@ static void check_feature(data_t *data)
>> static void disable_features(data_t *data)
>> {
>> intel_fbc_disable(data->drm_fd);
>> - psr_disable(data->drm_fd, data->debugfs_fd);
>> + psr_disable(data->drm_fd, data->debugfs_fd, NULL);
>> intel_drrs_disable(data->drm_fd, data->pipe);
>> }
>>
>> diff --git a/tests/intel/kms_fbcon_fbt.c
>> b/tests/intel/kms_fbcon_fbt.c
>> index 90484dccf..71e42f19c 100644
>> --- a/tests/intel/kms_fbcon_fbt.c
>> +++ b/tests/intel/kms_fbcon_fbt.c
>> @@ -277,7 +277,7 @@ static void disable_features(int device, int
>> debugfs_fd)
>> {
>> igt_set_module_param_int(device, "enable_fbc", 0);
>> if (psr_sink_support(device, debugfs_fd, PSR_MODE_1, NULL))
>> - psr_disable(device, debugfs_fd);
>> + psr_disable(device, debugfs_fd, NULL);
>> }
>>
>> static inline void fbc_modparam_enable(int device, int debugfs_fd)
>> @@ -287,7 +287,7 @@ static inline void fbc_modparam_enable(int
>> device, int debugfs_fd)
>>
>> static inline void psr_debugfs_enable(int device, int debugfs_fd)
>> {
>> - psr_enable(device, debugfs_fd, PSR_MODE_1);
>> + psr_enable(device, debugfs_fd, PSR_MODE_1, NULL);
>> }
>>
>> static void fbc_skips_on_fbcon(int debugfs_fd)
>> diff --git a/tests/intel/kms_frontbuffer_tracking.c
>> b/tests/intel/kms_frontbuffer_tracking.c
>> index 912cca3f8..023843161 100644
>> --- a/tests/intel/kms_frontbuffer_tracking.c
>> +++ b/tests/intel/kms_frontbuffer_tracking.c
>> @@ -2234,7 +2234,7 @@ static bool disable_features(const struct
>> test_mode *t)
>> intel_fbc_disable(drm.fd);
>> intel_drrs_disable(drm.fd, prim_mode_params.pipe);
>>
>> - return psr.can_test ? psr_disable(drm.fd, drm.debugfs) :
>> false;
>> + return psr.can_test ? psr_disable(drm.fd, drm.debugfs, NULL)
>> : false;
>> }
>>
>> static void *busy_thread_func(void *data)
>> @@ -2867,7 +2867,7 @@ static bool enable_features_for_test(const
>> struct test_mode *t)
>> if (t->feature & FEATURE_FBC)
>> intel_fbc_enable(drm.fd);
>> if (t->feature & FEATURE_PSR)
>> - ret = psr_enable(drm.fd, drm.debugfs, PSR_MODE_1);
>> + ret = psr_enable(drm.fd, drm.debugfs, PSR_MODE_1,
>> NULL);
>> if (t->feature & FEATURE_DRRS)
>> intel_drrs_enable(drm.fd, prim_mode_params.pipe);
>>
>> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
>> index 0d5824e67..7deebf83d 100644
>> --- a/tests/intel/kms_pm_dc.c
>> +++ b/tests/intel/kms_pm_dc.c
>> @@ -362,7 +362,7 @@ static void require_dc_counter(int debugfs_fd,
>> int dc_flag)
>> static void setup_dc3co(data_t *data)
>> {
>> data->op_psr_mode = PSR_MODE_2;
>> - psr_enable(data->drm_fd, data->debugfs_fd, data-
>>> op_psr_mode);
>> + psr_enable(data->drm_fd, data->debugfs_fd, data->op_psr_mode,
>> NULL);
>> igt_require_f(psr_wait_entry(data->debugfs_fd, data-
>>> op_psr_mode, NULL),
>> "PSR2 is not enabled\n");
>> }
>> @@ -665,7 +665,7 @@ igt_main
>> igt_require(psr_sink_support(data.drm_fd,
>> data.debugfs_fd,
>> PSR_MODE_1, NULL));
>> data.op_psr_mode = PSR_MODE_1;
>> - psr_enable(data.drm_fd, data.debugfs_fd,
>> data.op_psr_mode);
>> + psr_enable(data.drm_fd, data.debugfs_fd,
>> data.op_psr_mode, NULL);
>> test_dc_state_psr(&data, CHECK_DC5);
>> }
>>
>> @@ -675,7 +675,7 @@ igt_main
>> igt_require(psr_sink_support(data.drm_fd,
>> data.debugfs_fd,
>> PSR_MODE_1, NULL));
>> data.op_psr_mode = PSR_MODE_1;
>> - psr_enable(data.drm_fd, data.debugfs_fd,
>> data.op_psr_mode);
>> + psr_enable(data.drm_fd, data.debugfs_fd,
>> data.op_psr_mode, NULL);
>> igt_require_f(igt_pm_pc8_plus_residencies_enabled(dat
>> a.msr_fd),
>> "PC8+ residencies not supported\n");
>> if (intel_display_ver(data.devid) >= 14)
>> diff --git a/tests/intel/kms_psr.c b/tests/intel/kms_psr.c
>> index 521d4c708..3822b3081 100644
>> --- a/tests/intel/kms_psr.c
>> +++ b/tests/intel/kms_psr.c
>> @@ -519,7 +519,7 @@ static bool psr_enable_if_enabled(data_t *data)
>> igt_skip("enable_psr modparam doesn't allow psr mode
>> %d\n",
>> data->op_psr_mode);
>>
>> - return psr_enable(data->drm_fd, data->debugfs_fd, data-
>>> op_psr_mode);
>> + return psr_enable(data->drm_fd, data->debugfs_fd, data-
>>> op_psr_mode, data->output);
>> }
>>
>> static inline void manual(const char *expected)
>> @@ -658,6 +658,7 @@ static void test_cleanup(data_t *data)
>>
>> igt_remove_fb(data->drm_fd, &data->fb_green);
>> igt_remove_fb(data->drm_fd, &data->fb_white);
>> + psr_disable(data->drm_fd, data->debugfs_fd, data->output);
>> }
>>
>> static void setup_test_plane(data_t *data, int test_plane)
>> @@ -976,7 +977,6 @@ igt_main
>> }
>>
>> igt_fixture {
>> - psr_disable(data.drm_fd, data.debugfs_fd);
>>
>> close(data.debugfs_fd);
>> buf_ops_destroy(data.bops);
>> diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c
>> index ecf9ad77f..8e6a9e02c 100644
>> --- a/tests/intel/kms_psr2_sf.c
>> +++ b/tests/intel/kms_psr2_sf.c
>> @@ -1012,11 +1012,6 @@ igt_main
>> data.fbc_flag = true;
>> }
>>
>> - /* Test if PSR2 can be enabled */
>> - igt_require_f(psr_enable(data.drm_fd,
>> - data.debugfs_fd,
>> PSR_MODE_2_SEL_FETCH),
>> - "Error enabling PSR2\n");
>> -
>> data.damage_area_count = MAX_DAMAGE_AREAS;
>> data.primary_format = DRM_FORMAT_XRGB8888;
>>
>> @@ -1026,9 +1021,6 @@ igt_main
>> igt_info("Big framebuffer size %dx%d\n",
>> data.big_fb_width, data.big_fb_height);
>>
>> -
>> igt_require_f(psr2_selective_fetch_check(data.debugfs_f
>> d),
>> - "PSR2 selective fetch not enabled\n");
>> -
>> for_each_pipe_with_valid_output(&data.display,
>> data.pipe, data.output) {
>> coexist_features[n_pipes] = 0;
>> if (check_psr2_support(&data)) {
>> diff --git a/tests/intel/kms_psr2_su.c b/tests/intel/kms_psr2_su.c
>> index 936b5beb3..437ee36f6 100644
>> --- a/tests/intel/kms_psr2_su.c
>> +++ b/tests/intel/kms_psr2_su.c
>> @@ -338,7 +338,7 @@ igt_main
>>
>> /* Test if PSR2 can be enabled */
>> igt_require_f(psr_enable(data.drm_fd,
>> - data.debugfs_fd,
>> PSR_MODE_2),
>> + data.debugfs_fd, PSR_MODE_2,
>> NULL),
>> "Error enabling PSR2\n");
>> data.op = FRONTBUFFER;
>> data.format = DRM_FORMAT_XRGB8888;
>> diff --git a/tests/intel/kms_psr_stress_test.c
>> b/tests/intel/kms_psr_stress_test.c
>> index 7aea8e8a5..bca3bd513 100644
>> --- a/tests/intel/kms_psr_stress_test.c
>> +++ b/tests/intel/kms_psr_stress_test.c
>> @@ -230,7 +230,7 @@ static void prepare(data_t *data)
>> r = timerfd_settime(data->completed_timerfd, 0, &interval,
>> NULL);
>> igt_require_f(r != -1, "Error setting completed_timerfd\n");
>>
>> - data->initial_state = psr_get_mode(data->debugfs_fd);
>> + data->initial_state = psr_get_mode(data->debugfs_fd, NULL);
>> igt_require(data->initial_state != PSR_DISABLED);
>> igt_require(psr_wait_entry(data->debugfs_fd, data-
>>> initial_state, NULL));
>> }
>> @@ -343,7 +343,7 @@ static void run(data_t *data)
>> }
>>
>> /* Check if after all this stress the PSR is still in the
>> same state */
>> - igt_assert(psr_get_mode(data->debugfs_fd) == data-
>>> initial_state);
>> + igt_assert(psr_get_mode(data->debugfs_fd, NULL) == data-
>>> initial_state);
>> }
>>
>> igt_main
>> diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
>> index a0349fa03..2895168f7 100644
>> --- a/tests/kms_async_flips.c
>> +++ b/tests/kms_async_flips.c
>> @@ -391,7 +391,7 @@ static void test_cursor(data_t *data)
>> * necessary, causing the async flip to fail because async
>> flip is not
>> * supported in cursor plane.
>> */
>> - igt_skip_on_f(i915_psr2_selective_fetch_check(data->drm_fd),
>> + igt_skip_on_f(i915_psr2_selective_fetch_check(data->drm_fd,
>> NULL),
>> "PSR2 sel fetch causes cursor to be added to
>> primary plane " \
>> "pages flips and async flip is not supported in
>> cursor\n");
>>
>> @@ -704,7 +704,7 @@ igt_main
>> * necessary, causing the async flip to fail because
>> async flip is not
>> * supported in cursor plane.
>> */
>> -
>> igt_skip_on_f(i915_psr2_selective_fetch_check(data.drm_
>> fd),
>> + igt_skip_on_f(i915_psr2_selective_fetch_check(data.dr
>> m_fd, NULL),
>> "PSR2 sel fetch causes cursor to be
>> added to primary plane " \
>> "pages flips and async flip is not
>> supported in cursor\n");
>>
>> diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
>> index 0017659d4..91e5e9b07 100644
>> --- a/tests/kms_cursor_legacy.c
>> +++ b/tests/kms_cursor_legacy.c
>> @@ -1849,7 +1849,7 @@ igt_main
>> * page flip with cursor legacy APIS when Intel's
>> PSR2 selective
>> * fetch is enabled, so switching PSR1 for this whole
>> test.
>> */
>> - intel_psr2_restore =
>> i915_psr2_sel_fetch_to_psr1(display.drm_fd);
>> + intel_psr2_restore =
>> i915_pr_psr2_sel_fetch_to_pr_psr1(display.drm_fd, NULL);
>> }
>>
>> igt_describe("Test checks how many cursor updates we can fit
>> between vblanks "
>> @@ -2074,7 +2074,7 @@ igt_main
>>
>> igt_fixture {
>> if (intel_psr2_restore)
>> - i915_psr2_sel_fetch_restore(display.drm_fd);
>> + i915_pr_psr2_sel_fetch_restore(display.drm_fd
>> , NULL);
>> igt_display_fini(&display);
>> drm_close_driver(display.drm_fd);
>> }
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf
2024-02-16 8:25 ` Hogander, Jouni
@ 2024-02-19 5:25 ` Joshi, Kunal1
0 siblings, 0 replies; 13+ messages in thread
From: Joshi, Kunal1 @ 2024-02-19 5:25 UTC (permalink / raw)
To: Hogander, Jouni, igt-dev@lists.freedesktop.org
Cc: Murthy, Arun R, Manna, Animesh
[-- Attachment #1: Type: text/plain, Size: 37964 bytes --]
Hello Jouni,
On 2/16/2024 1:55 PM, Hogander, Jouni wrote:
> On Thu, 2024-02-08 at 20:24 +0530, Kunal Joshi wrote:
>> Extend the tests to cover panel replay selective fetch feature.
>>
>> From kms_psr2_sf test point of view we have
>> check_pr_psr2_sel_fetch_support
>> function to check if PR/PSR2 selective fetch is supported for an
>> output
>> if output supports selective fetch then we check we enter DEEP_SLEEP
>> mode
>> in run function
>>
>> v2: fixed dynamic test name
>> v3: use check_psr2_support (Jouni)
>> v4: correct order of checks in check_pr_psr2_sel_fetch_support
>> (Jouni)
>> use appropriate psr mode in psr_wait_entry (Jouni)
>>
>> Cc: Jouni Högander<jouni.hogander@intel.com>
>> Cc: Animesh Manna<animesh.manna@intel.com>
>> Cc: Arun R Murthy<arun.r.murthy@intel.com>
>> Signed-off-by: Kunal Joshi<kunal1.joshi@intel.com>
>> ---
>> tests/intel/kms_psr2_sf.c | 147 +++++++++++++++++++++++++++++++-----
>> --
>> 1 file changed, 120 insertions(+), 27 deletions(-)
>>
>> diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c
>> index 8e6a9e02c..0595c1f11 100644
>> --- a/tests/intel/kms_psr2_sf.c
>> +++ b/tests/intel/kms_psr2_sf.c
>> @@ -172,6 +172,7 @@ typedef struct {
>> uint32_t screen_changes;
>> int cur_x, cur_y;
>> enum pipe pipe;
>> + enum psr_mode psr_mode;
>> enum {
>> FEATURE_NONE = 0,
>> FEATURE_DSC = 1,
>> @@ -179,6 +180,34 @@ typedef struct {
>> } coexist_feature;
>> } data_t;
>>
>> +static enum psr_mode get_sel_fetch_mode_for_output(data_t *data,
>> igt_output_t *output)
>> +{
>> + enum psr_mode mode = PSR_DISABLED;
>> +
>> + if (psr_sink_support(data->drm_fd, data->debugfs_fd,
>> + PR_MODE_SEL_FETCH,
>> output))
>> + mode = PR_MODE_SEL_FETCH;
>> + else if (psr_sink_support(data->drm_fd, data->debugfs_fd,
>> + PSR_MODE_2,
>> output))
>> + mode = PSR_MODE_2;
>> + else
>> + igt_info("selective fetch not supported on output
>> %s\n", output->name);
>> +
>> + return mode;
>> +}
>> +
>> +static const char *get_psr_mode_str_for_output(data_t *data,
>> igt_output_t *output)
>> +{
>> + const char *psr_mode = NULL;
> If you are doing it this way this variable should be static. I'm not
> sure if renaming these testcases to pr-* and psr2-* gives any benefit.
> I'll guess it is ok, if you want to do that change.
Have addressed your comment in the next revision, kept the naming just
to know
test executed on PR or PSR panel.
>
>> +
>> + if (get_sel_fetch_mode_for_output(data, output) ==
>> PR_MODE_SEL_FETCH)
>> + psr_mode = "pr-";
>> + else if (get_sel_fetch_mode_for_output(data, output) ==
>> PSR_MODE_2)
>> + psr_mode = "psr2-";
>> + igt_assert_f(psr_mode, "Invalid psr mode\n");
>> + return psr_mode;
>> +}
>> +
>> static const char *op_str(enum operations op)
>> {
>> static const char * const name[] = {
>> @@ -688,7 +717,7 @@ static void damaged_plane_move(data_t *data)
>>
>> igt_display_commit2(&data->display, COMMIT_ATOMIC);
>>
>> - igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2,
>> NULL));
>> + igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode,
>> data->output));
> Not really matter of this patch. I think at some point you need one
> more patch to differentiate in psr_wait_entry (psr_active_check) based
> on output type eDP vs. DP. See Bspec 68920 "Additional programming
> considerations (registers common between eDP and DP)".
>
Sure will send this changes as separate later.
>
> BR,
>
> Jouni Högander
>
>>
>> expected_output(data);
>> }
>> @@ -788,7 +817,7 @@ static void plane_move_continuous(data_t *data)
>> {
>> int target_x, target_y;
>>
>> - igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2,
>> NULL));
>> + igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode,
>> data->output));
>>
>> get_target_coords(data, &target_x, &target_y);
>>
>> @@ -865,7 +894,7 @@ static void damaged_plane_update(data_t *data)
>> igt_plane_set_position(data->test_plane, 0, 0);
>> igt_display_commit2(&data->display, COMMIT_ATOMIC);
>>
>> - igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2,
>> NULL));
>> + igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode,
>> data->output));
>>
>> expected_output(data);
>> }
>> @@ -874,7 +903,7 @@ static void run(data_t *data)
>> {
>> int i;
>>
>> - igt_assert(psr_wait_entry(data->debugfs_fd, PSR_MODE_2,
>> NULL));
>> + igt_assert(psr_wait_entry(data->debugfs_fd, data->psr_mode,
>> data->output));
>>
>> if (data->fbc_flag == true && data->op_fbc_mode ==
>> FBC_ENABLED)
>> igt_assert_f(intel_fbc_wait_until_enabled(data-
>>> drm_fd,
>> @@ -952,14 +981,24 @@ static void cleanup(data_t *data)
>> igt_remove_fb(data->drm_fd, &data->fb_test);
>> }
>>
>> -static int check_psr2_support(data_t *data)
>> +static bool check_pr_psr2_sel_fetch_support(data_t *data)
>> {
>> - int status;
>> + bool status = false;
>> + enum psr_mode psr_mode;
>> +
>> + /* Check sink supports PR/PSR2 selective fetch */
>> + psr_mode = get_sel_fetch_mode_for_output(data, data->output);
>> + if (psr_mode == PSR_DISABLED)
>> + return false;
>> +
>> + /* Check if selective fetch can be enabled */
>> + if (!selective_fetch_check(data->debugfs_fd, data->output))
>> + igt_assert("Selective fetch is not enabled even
>> though panel should support it\n");
>>
>> prepare(data);
>> - status = psr_wait_entry(data->debugfs_fd, PSR_MODE_2, NULL);
>> + /* We enter into DEEP_SLEEP for both PSR2 and PR sel fetch */
>> + status = psr_wait_entry(data->debugfs_fd, psr_mode, data-
>>> output);
>> cleanup(data);
>> -
>> return status;
>> }
>>
>> @@ -981,6 +1020,8 @@ pipe_output_combo_valid(igt_display_t *display,
>>
>> igt_main
>> {
>> + bool output_supports_pr_psr2_sel_fetch = false;
>> + bool pr_psr2_sel_fetch_supported = false;
>> data_t data = {};
>> igt_output_t *outputs[IGT_MAX_PIPES * IGT_MAX_PIPES];
>> int i, j, k, y;
>> @@ -1000,11 +1041,6 @@ igt_main
>> data.debugfs_fd = igt_debugfs_dir(data.drm_fd);
>> kmstest_set_vt_graphics_mode();
>>
>> - igt_require_f(psr_sink_support(data.drm_fd,
>> - data.debugfs_fd,
>> PSR_MODE_2,
>> - NULL),
>> - "Sink does not support PSR2\n");
>> -
>> display_init(&data);
>>
>> if
>> ((intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20) &&
>> @@ -1023,7 +1059,8 @@ igt_main
>>
>> for_each_pipe_with_valid_output(&data.display,
>> data.pipe, data.output) {
>> coexist_features[n_pipes] = 0;
>> - if (check_psr2_support(&data)) {
>> + output_supports_pr_psr2_sel_fetch =
>> check_pr_psr2_sel_fetch_support(&data);
>> + if (output_supports_pr_psr2_sel_fetch) {
>> pipes[n_pipes] = data.pipe;
>> outputs[n_pipes] = data.output;
>>
>> @@ -1032,7 +1069,10 @@ igt_main
>>
>> n_pipes++;
>> }
>> + pr_psr2_sel_fetch_supported |=
>> output_supports_pr_psr2_sel_fetch;
>> }
>> + igt_require_f(pr_psr2_sel_fetch_supported,
>> + "No output supports
>> selective fetch\n");
>> }
>>
>> for (y = 0; y < ARRAY_SIZE(fbc_status); y++) {
>> @@ -1053,13 +1093,17 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> data.output =
>> outputs[i];
>> data.test_plane_id =
>> DRM_PLANE_TYPE_PRIMARY;
>> data.coexist_feature
>> = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr
>> _mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> for (k = 1; k <=
>> MAX_DAMAGE_AREAS; k++) {
>> data.damage_a
>> rea_count = k;
>> prepare(&data
>> );
>> @@ -1086,7 +1130,8 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE
>> && !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-
>> %s-%s%s",
>> + igt_dynamic_f("%s-
>> pipe-%s-%s%s",
>> +
>> get_psr_mode_str_for_output(&data, outputs[i]),
>>
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> @@ -1094,6 +1139,9 @@ igt_main
>> data.output =
>> outputs[i];
>> data.test_pla
>> ne_id = DRM_PLANE_TYPE_PRIMARY;
>> data.coexist_
>> feature = j;
>> + data.psr_mode
>> = get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(
>> data.psr_mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> for (k = 1; k
>> <= MAX_DAMAGE_AREAS; k++) {
>> data.
>> damage_area_count = k;
>> prepa
>> re(&data);
>> @@ -1118,13 +1166,17 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> data.output =
>> outputs[i];
>> data.test_plane_id =
>> DRM_PLANE_TYPE_OVERLAY;
>> data.coexist_feature
>> = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr
>> _mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> for (k = 1; k <=
>> MAX_DAMAGE_AREAS; k++) {
>> data.damage_a
>> rea_count = k;
>> prepare(&data
>> );
>> @@ -1148,13 +1200,17 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> data.output =
>> outputs[i];
>> data.test_plane_id =
>> DRM_PLANE_TYPE_CURSOR;
>> data.coexist_feature
>> = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr
>> _mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> prepare(&data);
>> run(&data);
>> cleanup(&data);
>> @@ -1174,13 +1230,17 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> data.output =
>> outputs[i];
>> data.test_plane_id =
>> DRM_PLANE_TYPE_CURSOR;
>> data.coexist_feature
>> = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr
>> _mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> prepare(&data);
>> run(&data);
>> cleanup(&data);
>> @@ -1201,13 +1261,17 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> data.output =
>> outputs[i];
>> data.test_plane_id =
>> DRM_PLANE_TYPE_CURSOR;
>> data.coexist_feature
>> = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr
>> _mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> prepare(&data);
>> run(&data);
>> cleanup(&data);
>> @@ -1228,13 +1292,17 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> data.output =
>> outputs[i];
>> data.test_plane_id =
>> DRM_PLANE_TYPE_CURSOR;
>> data.coexist_feature
>> = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr
>> _mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> prepare(&data);
>> run(&data);
>> cleanup(&data);
>> @@ -1256,13 +1324,18 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s",
>> +
>> get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> data.output =
>> outputs[i];
>> data.test_plane_id =
>> DRM_PLANE_TYPE_OVERLAY;
>> data.coexist_feature
>> = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr
>> _mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> for (k =
>> POS_TOP_LEFT; k <= POS_BOTTOM_RIGHT ; k++) {
>> data.pos = k;
>> prepare(&data
>> );
>> @@ -1285,13 +1358,17 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> data.output = outputs[i];
>> data.test_plane_id =
>> DRM_PLANE_TYPE_OVERLAY;
>> data.coexist_feature = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr_mode !=
>> PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> prepare(&data);
>> run(&data);
>> cleanup(&data);
>> @@ -1312,13 +1389,17 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> data.output =
>> outputs[i];
>> data.test_plane_id =
>> DRM_PLANE_TYPE_OVERLAY;
>> data.coexist_feature
>> = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr
>> _mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> prepare(&data);
>> run(&data);
>> cleanup(&data);
>> @@ -1339,13 +1420,17 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> data.output =
>> outputs[i];
>> data.test_plane_id =
>> DRM_PLANE_TYPE_OVERLAY;
>> data.coexist_feature
>> = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr
>> _mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> prepare(&data);
>> run(&data);
>> cleanup(&data);
>> @@ -1367,7 +1452,8 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", kmstest_pipe_name(pipes[i]),
>> +
>> get_psr_mode_str_for_output(&data, outputs[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> @@ -1376,6 +1462,9 @@ igt_main
>> data.damage_a
>> rea_count = k;
>> data.test_pla
>> ne_id = DRM_PLANE_TYPE_PRIMARY;
>> data.coexist_
>> feature = j;
>> + data.psr_mode
>> = get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(
>> data.psr_mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> prepare(&data
>> );
>> run(&data);
>> cleanup(&data
>> );
>> @@ -1400,7 +1489,8 @@ igt_main
>> for (j = FEATURE_NONE; j <
>> FEATURE_COUNT; j++) {
>> if (j != FEATURE_NONE &&
>> !(coexist_features[i] & j))
>> continue;
>> - igt_dynamic_f("pipe-%s-%s%s",
>> kmstest_pipe_name(pipes[i]),
>> + igt_dynamic_f("%s-pipe-%s-
>> %s%s", get_psr_mode_str_for_output(&data, outputs[i]),
>> +
>> kmstest_pipe_name(pipes[i]),
>>
>> igt_output_name(outputs[i]),
>>
>> coexist_feature_str(j)) {
>> data.pipe = pipes[i];
>> @@ -1412,6 +1502,9 @@ igt_main
>> data.primary_
>> format = DRM_FORMAT_NV12;
>> data.test_plane_id =
>> DRM_PLANE_TYPE_OVERLAY;
>> data.coexist_feature
>> = j;
>> + data.psr_mode =
>> get_sel_fetch_mode_for_output(&data, data.output);
>> + igt_assert_f(data.psr
>> _mode != PSR_DISABLED,
>> +
>> "Invalid psr mode\n");
>> prepare(&data);
>> run(&data);
>> cleanup(&data);
Regards
Kunal Joshi
[-- Attachment #2: Type: text/html, Size: 94293 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-02-19 5:25 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-08 14:54 [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf Kunal Joshi
2024-02-08 14:54 ` [PATCH i-g-t 1/2] lib/igt_psr: add support for PR selective update Kunal Joshi
2024-02-16 7:01 ` Hogander, Jouni
2024-02-19 5:22 ` Joshi, Kunal1
2024-02-08 14:54 ` [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf Kunal Joshi
2024-02-16 8:25 ` Hogander, Jouni
2024-02-19 5:25 ` Joshi, Kunal1
2024-02-08 19:04 ` ✓ Fi.CI.BAT: success for extend psr2_sf test for pr_sf (rev4) Patchwork
2024-02-08 21:10 ` ✓ CI.xeBAT: " Patchwork
2024-02-08 22:51 ` ✗ Fi.CI.IGT: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-01-22 7:49 [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf Kunal Joshi
2024-01-22 7:49 ` [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf Kunal Joshi
2024-02-05 12:28 ` Hogander, Jouni
2024-01-21 12:57 [PATCH i-g-t 0/2] extend psr2_sf test for pr_sf Kunal Joshi
2024-01-21 12:57 ` [PATCH i-g-t 2/2] tests/intel/kms_psr2_sf: extend tests for panel replay sf Kunal Joshi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox