* [PATCH 0/2] add force bigjoiner test
@ 2024-01-10 11:39 Kunal Joshi
2024-01-10 11:39 ` [PATCH 1/2] lib/igt_kms: add helpers for big joiner debugfs Kunal Joshi
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Kunal Joshi @ 2024-01-10 11:39 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Earlier bigjoiner was enabled only for below cases
a) for mode having hdisplay > 5k
b) if clock requirement were higher than 1 pipe could handle
https://patchwork.freedesktop.org/series/124730/
With above series we can force bigjoiner without such constraints.
Kunal Joshi (1):
tests/intel/kms_big_joiner: add new test for force bigjoiner
Swati Sharma (1):
lib/igt_kms: add helpers for big joiner debugfs
lib/igt_kms.c | 75 +++++++++++++++++++++++++++++++++
lib/igt_kms.h | 3 ++
tests/intel/kms_big_joiner.c | 82 +++++++++++++++++++++++++++++++++---
3 files changed, 154 insertions(+), 6 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 1/2] lib/igt_kms: add helpers for big joiner debugfs
2024-01-10 11:39 [PATCH 0/2] add force bigjoiner test Kunal Joshi
@ 2024-01-10 11:39 ` Kunal Joshi
2024-01-17 18:16 ` Modem, Bhanuprakash
2024-01-10 11:39 ` [PATCH 2/2] tests/intel/kms_big_joiner: add new test for force bigjoiner Kunal Joshi
` (4 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Kunal Joshi @ 2024-01-10 11:39 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
From: Swati Sharma <swati2.sharma@intel.com>
Add helpers for big joiner debugfs.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
lib/igt_kms.c | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 3 +++
2 files changed, 78 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index e4dea1a60..0208eccc4 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6368,3 +6368,78 @@ int get_num_scalers(int drm_fd, enum pipe pipe)
return num_scalers;
}
+
+static int write_bigjoiner_debugfs(int drmfd, char *connector_name, const char *file_name,
+ const char *write_buf)
+{
+ int debugfs_fd = igt_debugfs_dir(drmfd);
+ int len = strlen(write_buf);
+ int ret;
+ char file_path[128] = {0};
+
+ sprintf(file_path, "%s/%s", connector_name, file_name);
+
+ ret = igt_sysfs_write(debugfs_fd, file_path, write_buf, len);
+
+ close(debugfs_fd);
+
+ if (ret > 0)
+ return 0;
+
+ return ret;
+}
+
+static bool check_bigjoiner_debugfs(int drmfd, char *connector_name,
+ const char *check_str)
+{
+ char file_name[128] = {0};
+ char buf[512];
+
+ sprintf(file_name, "%s/i915_bigjoiner_force_enable", connector_name);
+
+ igt_debugfs_read(drmfd, file_name, buf);
+
+ return strstr(buf, check_str);
+}
+
+/**
+ * igt_is_force_bigjoiner_enabled:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: True if Big Joiner is force enabled (via debugfs) for the given connector,
+ * false otherwise.
+ */
+bool igt_is_force_bigjoiner_enabled(int drmfd, char *connector_name)
+{
+ return check_bigjoiner_debugfs(drmfd, connector_name, "Bigjoiner enable: 1");
+}
+
+/**
+ * igt_force_bigjoiner_enable:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: 0 on success or negative error code, in case of failure.
+ */
+int igt_force_bigjoiner_enable(int drmfd, char *connector_name, bool enable)
+{
+ return write_bigjoiner_debugfs(drmfd, connector_name, "i915_bigjoiner_force_enable", enable ? "1" : "0");
+}
+
+/**
+ * igt_get_bigjoiner_debugfs_fd:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: fd of the Big Joiner debugfs for the given connector,
+ * else returns -1.
+ */
+int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name)
+{
+ char file_name[128] = {0};
+
+ sprintf(file_name, "%s/i915_bigjoiner_force_enable", connector_name);
+
+ return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
+}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index b3882808b..2d000d54d 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1218,5 +1218,8 @@ bool intel_pipe_output_combo_valid(igt_display_t *display);
bool igt_check_output_is_dp_mst(igt_output_t *output);
int igt_get_dp_mst_connector_id(igt_output_t *output);
int get_num_scalers(int drm_fd, enum pipe pipe);
+bool igt_is_force_bigjoiner_enabled(int drmfd, char *connector_name);
+int igt_force_bigjoiner_enable(int drmfd, char *connector_name, bool enable);
+int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name);
#endif /* __IGT_KMS_H__ */
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/2] tests/intel/kms_big_joiner: add new test for force bigjoiner
2024-01-10 11:39 [PATCH 0/2] add force bigjoiner test Kunal Joshi
2024-01-10 11:39 ` [PATCH 1/2] lib/igt_kms: add helpers for big joiner debugfs Kunal Joshi
@ 2024-01-10 11:39 ` Kunal Joshi
2024-01-10 13:09 ` ✗ GitLab.Pipeline: warning for add force bigjoiner test Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Kunal Joshi @ 2024-01-10 11:39 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Earlier bigjoiner was enabled only for below cases
a) for mode having hdisplay > 5k
b) if clock requirement were higher than 1 pipe could handle
https://patchwork.freedesktop.org/series/124730/
With above series we can force bigjoiner without such constraints.
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/intel/kms_big_joiner.c | 82 +++++++++++++++++++++++++++++++++---
1 file changed, 76 insertions(+), 6 deletions(-)
diff --git a/tests/intel/kms_big_joiner.c b/tests/intel/kms_big_joiner.c
index aba2adfbe..33b3c4114 100644
--- a/tests/intel/kms_big_joiner.c
+++ b/tests/intel/kms_big_joiner.c
@@ -46,8 +46,10 @@
*
* SUBTEST: 2x-modeset
* Description: Verify simultaneous modeset on 2 big joiner outputs
+ *
+ * SUBTEST: force-bigjoiner
+ * Description: Verify bigjoiner on non bigjoiner outputs by force
*/
-
IGT_TEST_DESCRIPTION("Test big joiner");
struct bigjoiner_output {
@@ -67,6 +69,18 @@ typedef struct {
static int max_dotclock;
+static void force_big_joiner_on_all_outputs(data_t *data, bool enable)
+{
+ igt_output_t *output;
+
+ for_each_connected_output(&data->display, output)
+ /*
+ * Force big joiner on output
+ */
+ igt_force_bigjoiner_enable(data->drm_fd, output->name, enable);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
static void test_invalid_modeset(data_t *data)
{
igt_output_t *output;
@@ -107,6 +121,48 @@ static void test_invalid_modeset(data_t *data)
igt_assert_lt(ret, 0);
}
+static void force_bigjoiner_basic(data_t *data, int simultaneous_bigjoner)
+{
+ int no_of_outputs;
+ drmModeModeInfo *mode;
+ igt_output_t *output;
+ igt_display_t *display = &data->display;
+ enum pipe pipe;
+ struct igt_fb *primary_fb = malloc(data->n_pipes * sizeof(struct igt_fb));
+ igt_plane_t **primary = malloc(data->n_pipes * sizeof(igt_plane_t *));
+
+ igt_display_reset(display);
+ pipe = 0;
+ no_of_outputs = 0;
+
+ force_big_joiner_on_all_outputs(data, true);
+ for_each_connected_output(display, output) {
+ igt_sort_connector_modes(output->config.connector, sort_drm_modes_by_clk_dsc);
+ mode = &output->config.connector->modes[0];
+ igt_create_color_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, 1.0, 0.0, 0.0, &primary_fb[no_of_outputs]);
+ igt_output_override_mode(output, mode);
+ igt_output_set_pipe(output, pipe);
+ primary[no_of_outputs] = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ igt_plane_set_fb(primary[no_of_outputs], &primary_fb[no_of_outputs]);
+ igt_info("Using (pipe %s + %s) to run the subtest with mode %dx%d@%d.\n",
+ kmstest_pipe_name(pipe), igt_output_name(output),
+ output->override_mode.hdisplay, output->override_mode.vdisplay, output->override_mode.vrefresh);
+ no_of_outputs++;
+ pipe = pipe + 2;
+ if (pipe >= data->n_pipes || no_of_outputs >= simultaneous_bigjoner)
+ break;
+ }
+ if (no_of_outputs != simultaneous_bigjoner)
+ igt_skip("Can't test all outputs\n");
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ for_each_connected_output(display, output) {
+ igt_output_set_pipe(output, PIPE_NONE);
+ }
+ force_big_joiner_on_all_outputs(data, false);
+}
+
static void test_basic_modeset(data_t *data)
{
drmModeModeInfo *mode;
@@ -257,24 +313,27 @@ igt_main
j++;
}
- igt_require_f(count > 0, "No output with 5k+ mode (or) clock > max-dot-clock found\n");
-
- igt_create_pattern_fb(data.drm_fd, width, height, DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR, &data.fb);
}
igt_describe("Verify the basic modeset on big joiner mode on all pipes");
igt_subtest_with_dynamic("basic") {
+ igt_require_f(count > 0, "No output with 5k+ mode (or) clock > max-dot-clock found\n");
+ igt_create_pattern_fb(data.drm_fd, width, height, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, &data.fb);
for (i = 0; i < data.n_pipes - 1; i++) {
data.pipe1 = pipe_seq[i];
igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe_seq[i]))
test_basic_modeset(&data);
}
+ igt_remove_fb(data.drm_fd, &data.fb);
}
igt_describe("Verify if the modeset on the adjoining pipe is rejected "
"when the pipe is active with a big joiner modeset");
igt_subtest_with_dynamic("invalid-modeset") {
+ igt_require_f(count > 0, "No output with 5k+ mode (or) clock > max-dot-clock found\n");
+ igt_create_pattern_fb(data.drm_fd, width, height, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, &data.fb);
data.pipe1 = pipe_seq[j - 1];
igt_display_reset(&data.display);
@@ -323,11 +382,15 @@ igt_main
test_invalid_modeset(&data);
}
}
+ igt_remove_fb(data.drm_fd, &data.fb);
}
igt_describe("Verify simultaneous modeset on 2 big joiner outputs");
igt_subtest_with_dynamic("2x-modeset") {
igt_require_f(count > 1, "2 outputs with big joiner modes are required\n");
+ igt_create_pattern_fb(data.drm_fd, width, height, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, &data.fb);
+
igt_require_f(data.n_pipes > 3, "Minumum of 4 pipes are required\n");
for (i = 0; (i + 2) < data.n_pipes - 1; i++) {
data.pipe1 = pipe_seq[i];
@@ -335,10 +398,17 @@ igt_main
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe_seq[i]), kmstest_pipe_name(pipe_seq[i + 2]))
test_dual_display(&data);
}
+ igt_remove_fb(data.drm_fd, &data.fb);
+ }
+
+ igt_describe("Verify bigjoiner on non bigjoiner outputs by force");
+ igt_subtest_with_dynamic("force-bigjoiner") {
+ for (i = 1; i < valid_output+1; i++)
+ igt_dynamic_f("%dx", i)
+ force_bigjoiner_basic(&data, i);
}
igt_fixture {
- igt_remove_fb(data.drm_fd, &data.fb);
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✗ GitLab.Pipeline: warning for add force bigjoiner test
2024-01-10 11:39 [PATCH 0/2] add force bigjoiner test Kunal Joshi
2024-01-10 11:39 ` [PATCH 1/2] lib/igt_kms: add helpers for big joiner debugfs Kunal Joshi
2024-01-10 11:39 ` [PATCH 2/2] tests/intel/kms_big_joiner: add new test for force bigjoiner Kunal Joshi
@ 2024-01-10 13:09 ` Patchwork
2024-01-10 13:34 ` ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-01-10 13:09 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
== Series Details ==
Series: add force bigjoiner test
URL : https://patchwork.freedesktop.org/series/128426/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1074724 for the overview.
build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/53570581):
Checking if the user of the pipeline is allowed...
Checking if the job's project is part of a well-known group...
Thank you for contributing to freedesktop.org
Fetching changes...
Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
Checking out 3ab49f9e as detached HEAD (ref is intel/IGTPW_10501)...
Removing build/
Removing lib/i915/perf-configs/__pycache__/
Removing scripts/__pycache__/
Skipping Git submodules setup
section_end:1704891789:get_sources
section_start:1704891789:step_script
Executing "step_script" stage of the job script
Using docker image sha256:7360075a71dacfc66f0b49b3271b9a459904dbe51c5760efac48fe52da27946c for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-arm64:commit-3ab49f9e5214070391356577d100df8a81b76c31 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-arm64@sha256:df8438cd0e218646c3bdc2eb6abccb43c4e884bfd40a1a4dd0365f1f8031d21f ...
section_end:1704891795:step_script
section_start:1704891795:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1704891796:cleanup_file_variables
ERROR: Job failed (system failure): Error response from daemon: container create: reading image "7360075a71dacfc66f0b49b3271b9a459904dbe51c5760efac48fe52da27946c": locating image with ID "7360075a71dacfc66f0b49b3271b9a459904dbe51c5760efac48fe52da27946c": image not known (docker.go:570:0s)
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1074724
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.BAT: success for add force bigjoiner test
2024-01-10 11:39 [PATCH 0/2] add force bigjoiner test Kunal Joshi
` (2 preceding siblings ...)
2024-01-10 13:09 ` ✗ GitLab.Pipeline: warning for add force bigjoiner test Patchwork
@ 2024-01-10 13:34 ` Patchwork
2024-01-10 13:36 ` ✗ CI.xeBAT: failure " Patchwork
2024-01-10 16:14 ` ✗ Fi.CI.IGT: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-01-10 13:34 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6908 bytes --]
== Series Details ==
Series: add force bigjoiner test
URL : https://patchwork.freedesktop.org/series/128426/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14108 -> IGTPW_10501
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/index.html
Participating hosts (38 -> 38)
------------------------------
Additional (1): bat-mtlp-8
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10501 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#6645])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#5190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4212]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#4213]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840] / [i915#9159])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([fdo#109285])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#5274])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- bat-atsm-1: NOTRUN -> [SKIP][14] ([i915#1836])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-atsm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#8809])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#3708] / [i915#4077]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#3708]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3@lmem0:
- bat-atsm-1: [ABORT][18] -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/bat-atsm-1/igt@gem_exec_suspend@basic-s3@lmem0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/bat-atsm-1/igt@gem_exec_suspend@basic-s3@lmem0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7666 -> IGTPW_10501
CI-20190529: 20190529
CI_DRM_14108: c58d1352dd193d8df380a14e95c05455acaf5b82 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10501: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/index.html
IGT_7666: 5f97adfd0e1636788a6af5b592f0d15b4f1027c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_big_joiner@force-bigjoiner
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/index.html
[-- Attachment #2: Type: text/html, Size: 8095 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ CI.xeBAT: failure for add force bigjoiner test
2024-01-10 11:39 [PATCH 0/2] add force bigjoiner test Kunal Joshi
` (3 preceding siblings ...)
2024-01-10 13:34 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-01-10 13:36 ` Patchwork
2024-01-10 16:14 ` ✗ Fi.CI.IGT: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-01-10 13:36 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3669 bytes --]
== Series Details ==
Series: add force bigjoiner test
URL : https://patchwork.freedesktop.org/series/128426/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7666_BAT -> XEIGTPW_10501_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10501_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10501_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 3)
------------------------------
Missing (1): bat-dg2-oem2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_10501_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_fault_mode@twice-userptr-rebind:
- bat-pvc-2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7666/bat-pvc-2/igt@xe_exec_fault_mode@twice-userptr-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10501/bat-pvc-2/igt@xe_exec_fault_mode@twice-userptr-rebind.html
Known issues
------------
Here are the changes found in XEIGTPW_10501_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_create@create-execqueues-leak:
- bat-atsm-2: [PASS][3] -> [FAIL][4] ([Intel XE#1099])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7666/bat-atsm-2/igt@xe_create@create-execqueues-leak.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10501/bat-atsm-2/igt@xe_create@create-execqueues-leak.html
#### Possible fixes ####
* igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
- bat-adlp-7: [FAIL][5] ([Intel XE#692] / [Intel XE#773]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7666/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10501/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [FAIL][7] ([Intel XE#480]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7666/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10501/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
* igt@xe_create@create-execqueues-noleak:
- bat-atsm-2: [FAIL][9] ([Intel XE#1099]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7666/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10501/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html
[Intel XE#1099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1099
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/692
[Intel XE#773]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/773
Build changes
-------------
* IGT: IGT_7666 -> IGTPW_10501
IGTPW_10501: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/index.html
IGT_7666: 5f97adfd0e1636788a6af5b592f0d15b4f1027c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-613-c170f452b2634a920b2251f825648abaca53e5cb: c170f452b2634a920b2251f825648abaca53e5cb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10501/index.html
[-- Attachment #2: Type: text/html, Size: 4423 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for add force bigjoiner test
2024-01-10 11:39 [PATCH 0/2] add force bigjoiner test Kunal Joshi
` (4 preceding siblings ...)
2024-01-10 13:36 ` ✗ CI.xeBAT: failure " Patchwork
@ 2024-01-10 16:14 ` Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-01-10 16:14 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 93671 bytes --]
== Series Details ==
Series: add force bigjoiner test
URL : https://patchwork.freedesktop.org/series/128426/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14108_full -> IGTPW_10501_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10501_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10501_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_10501/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_10501_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_mmap_offset@close-race:
- shard-snb: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb6/igt@gem_mmap_offset@close-race.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-snb4/igt@gem_mmap_offset@close-race.html
* igt@kms_big_joiner@2x-modeset:
- shard-rkl: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-7/igt@kms_big_joiner@2x-modeset.html
* igt@sysfs_heartbeat_interval@nopreempt@vecs0:
- shard-mtlp: [PASS][4] -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-mtlp-8/igt@sysfs_heartbeat_interval@nopreempt@vecs0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-4/igt@sysfs_heartbeat_interval@nopreempt@vecs0.html
#### Warnings ####
* igt@kms_big_joiner@2x-modeset:
- shard-dg1: [SKIP][6] ([i915#2705]) -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-19/igt@kms_big_joiner@2x-modeset.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-13/igt@kms_big_joiner@2x-modeset.html
- shard-tglu: [SKIP][8] ([i915#2705]) -> [SKIP][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-9/igt@kms_big_joiner@2x-modeset.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-5/igt@kms_big_joiner@2x-modeset.html
New tests
---------
New tests have been introduced between CI_DRM_14108_full and IGTPW_10501_full:
### New IGT tests (2) ###
* igt@kms_big_joiner@force-bigjoiner@1x:
- Statuses : 7 pass(s)
- Exec time: [0.15, 1.50] s
* igt@kms_big_joiner@force-bigjoiner@2x:
- Statuses : 1 pass(s)
- Exec time: [0.84] s
Known issues
------------
Here are the changes found in IGTPW_10501_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-12/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8411]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-3/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8411]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#7701])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-3/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@busy-idle-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +11 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@drm_fdinfo@busy-idle-check-all@ccs3.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-13/igt@drm_fdinfo@virtual-busy-idle.html
* igt@fbdev@pan:
- shard-snb: [PASS][17] -> [FAIL][18] ([i915#4435])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb2/igt@fbdev@pan.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-snb7/igt@fbdev@pan.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#3281]) +7 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-19/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3936])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-8/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#9323]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#6335])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-13/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#280])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][31] ([i915#7975] / [i915#8213])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg2: [PASS][32] -> [FAIL][33] ([i915#5784])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-2/igt@gem_eio@reset-stress.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4771])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-1/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][36] ([i915#9606])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-6/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-glk: NOTRUN -> [FAIL][37] ([i915#9606])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk9/igt@gem_exec_capture@many-4k-zero.html
- shard-mtlp: NOTRUN -> [FAIL][38] ([i915#9606])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-2/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +5 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][40] -> [FAIL][41] ([i915#2842])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-4/igt@gem_exec_fair@basic-none-share@rcs0.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-tglu: NOTRUN -> [FAIL][42] ([i915#2842])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-4/igt@gem_exec_fair@basic-none-solo@rcs0.html
- shard-glk: NOTRUN -> [FAIL][43] ([i915#2842])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk1/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-17/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][45] -> [FAIL][46] ([i915#2842])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-glk: [PASS][47] -> [FAIL][48] ([i915#2842])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4812]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@gem_exec_fence@submit67.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#7697])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-3/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][51] ([fdo#112283]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@gem_exec_params@secure-non-root.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([fdo#112283])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-7/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3281]) +7 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +7 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3281]) +9 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-2/igt@gem_fenced_exec_thrash@too-many-fences.html
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-19/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: NOTRUN -> [DMESG-WARN][63] ([i915#4936] / [i915#5493])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#4613]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8289])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-1/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@basic-small-bo:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) +6 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-8/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-19/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +12 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +10 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@gem_mmap_gtt@big-copy-odd.html
* igt@gem_mmap_wc@bad-size:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-12/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +7 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-6/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-18/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#4270])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4270]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@beyond-eob:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-19/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#8411])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4079])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#3282]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4885])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4885])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-8/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][92] ([fdo#109289]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-4/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-dg2: NOTRUN -> [SKIP][93] ([fdo#109289]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#2856]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: NOTRUN -> [INCOMPLETE][95] ([i915#5566])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk7/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-16/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#2527]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-7/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#6227])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-15/igt@i915_module_load@load.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6227])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [INCOMPLETE][102] ([i915#9820] / [i915#9849])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [PASS][103] -> [INCOMPLETE][104] ([i915#9849])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#8436])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#8399])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][107] -> [INCOMPLETE][108] ([i915#9407])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglu: NOTRUN -> [SKIP][109] ([fdo#109289])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][110] -> [FAIL][111] ([i915#3591])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rpm@gem-mmap-type@gtt-smem0:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#8431])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#6621])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][114] -> [INCOMPLETE][115] ([i915#7790])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb6/igt@i915_pm_rps@reset.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-snb5/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#8925])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park@gt0.html
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#8925])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-16/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3555] / [i915#8925])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park@gt1.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#8925])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#8437])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-1/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: NOTRUN -> [SKIP][121] ([fdo#109303])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@i915_query@query-topology-known-pci-ids.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4212])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4212]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-16/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4212])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8709]) +11 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#8709]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][127] ([i915#8247]) +3 other tests fail
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][128] ([i915#8247]) +3 other tests fail
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-7/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5286]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111615] / [i915#5286]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#3638])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-15/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][133] ([fdo#111614] / [i915#3638]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][134] ([fdo#111614])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][135] ([fdo#111614]) +7 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][136] ([fdo#111614]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][137] -> [FAIL][138] ([i915#3743])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#5190]) +15 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6187])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][141] ([fdo#110723]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5190]) +6 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][144] ([fdo#111615]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][145] ([fdo#111615]) +9 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#5354] / [i915#6095]) +20 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#5354] / [i915#6095]) +15 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-6/igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#5354]) +95 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#5354] / [i915#6095]) +34 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#5354]) +22 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#5354] / [i915#6095]) +19 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-12/igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#7828]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-8/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg1: NOTRUN -> [SKIP][153] ([fdo#111827])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-17/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][154] ([fdo#111827]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111827])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-6/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#7828]) +7 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#7828]) +8 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#7828]) +10 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#7828]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@atomic-dpms:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6944])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-8/igt@kms_content_protection@atomic-dpms.html
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#7118]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#9424])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-12/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3299])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#3299])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3299])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#9424])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-7/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3555]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3359])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3359])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8814]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3359])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8814]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109274] / [i915#5354]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][175] ([fdo#109274]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][176] ([fdo#111767])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
- shard-dg2: NOTRUN -> [SKIP][177] ([fdo#109274] / [fdo#111767] / [i915#5354])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][178] -> [FAIL][179] ([i915#2346])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#9067])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#4103] / [i915#4213]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#4103])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#9723])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#9723])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][185] ([i915#9841]) +3 other tests fail
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/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-rkl: NOTRUN -> [SKIP][186] ([i915#8588])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3804])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#1257])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-15/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8812])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-4/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3469])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3469])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-13/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#1839])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][194] ([fdo#109274] / [i915#3637]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: NOTRUN -> [SKIP][195] ([fdo#111767] / [fdo#111825]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][196] ([fdo#111767] / [i915#3637])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][197] ([fdo#111767] / [fdo#111825])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-12/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8381]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][199] ([fdo#111825] / [i915#9934]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-15/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3637]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][201] ([fdo#109274]) +9 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#2672]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8810]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#2672]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#2587] / [i915#2672]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#2672]) +8 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8810])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8708]) +6 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8708]) +25 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][210] ([fdo#111825]) +8 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-snb: [PASS][211] -> [SKIP][212] ([fdo#109271]) +11 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#10055])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#3458]) +9 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3458]) +14 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][216] ([fdo#111825] / [i915#1825]) +25 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#1825]) +22 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][218] ([fdo#111825]) +12 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#10055])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#10070])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3023]) +18 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
- shard-tglu: NOTRUN -> [SKIP][222] ([fdo#110189]) +7 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][223] ([fdo#109280]) +15 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#8708]) +8 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#6118])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#433])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-16/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#6301])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][231] ([fdo#109289])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-8/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#3555]) +4 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-1/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8806])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][234] ([i915#8292])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-3/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: [PASS][235] -> [FAIL][236] ([i915#8292])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#9423]) +7 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#9423]) +5 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#5176]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#5176] / [i915#9423]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/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][241] ([i915#5176] / [i915#9423]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/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-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#9423]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#9423]) +11 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#5235]) +9 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#5235]) +7 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/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@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5235]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#5235])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#5235] / [i915#9423]) +11 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][249] ([fdo#109271]) +187 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][250] -> [SKIP][251] ([i915#9519]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][252] -> [SKIP][253] ([i915#9519]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#6524])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#9683])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-6/igt@kms_psr2_sf@cursor-plane-update-sf.html
- shard-rkl: NOTRUN -> [SKIP][256] ([fdo#111068] / [i915#9683]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-6/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#9683])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#9683])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#4884])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#5289])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-16/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#4235])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][262] ([fdo#111615] / [i915#5289])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#5289])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#4235]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#3555]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8809])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][267] ([IGT#2])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#8623])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2: NOTRUN -> [SKIP][269] ([fdo#109309])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-6/igt@kms_tv_load_detect@load-detect.html
- shard-rkl: NOTRUN -> [SKIP][270] ([fdo#109309])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-6/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic-fastset:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#9906])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-4/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#9906])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#2437])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#2437])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-7/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#2437] / [i915#9412])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#2437])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-18/igt@kms_writeback@writeback-invalid-parameters.html
- shard-glk: NOTRUN -> [SKIP][277] ([fdo#109271] / [i915#2437])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][278] ([i915#7484])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][279] -> [FAIL][280] ([i915#4349])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-mtlp-3/igt@perf_pmu@busy-double-start@ccs0.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#8850])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@perf_pmu@cpu-hotplug.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#8850])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-13/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg1: NOTRUN -> [FAIL][283] ([i915#6806])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-12/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#8516])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-17/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#3291] / [i915#3708]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@prime_vgem@basic-fence-read.html
- shard-rkl: NOTRUN -> [SKIP][286] ([fdo#109295] / [i915#3291] / [i915#3708])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3708] / [i915#4077])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-3/igt@prime_vgem@basic-gtt.html
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#3708] / [i915#4077])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3708])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3708])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-12/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][291] ([fdo#109295] / [i915#3708])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#9917])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#9917])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-1/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-tglu: NOTRUN -> [FAIL][294] ([i915#9781])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-4/igt@syncobj_timeline@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][295] ([i915#9781])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk4/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][296] ([fdo#109307])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#4818])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#2575]) +13 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#2575]) +11 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-1/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_cl@bad-in-sync:
- shard-snb: NOTRUN -> [SKIP][300] ([fdo#109271]) +18 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-snb4/igt@v3d/v3d_submit_cl@bad-in-sync.html
* igt@v3d/v3d_submit_cl@single-in-sync:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#2575]) +6 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-16/igt@v3d/v3d_submit_cl@single-in-sync.html
* igt@v3d/v3d_submit_csd@bad-multisync-extension:
- shard-rkl: NOTRUN -> [SKIP][302] ([fdo#109315]) +8 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-5/igt@v3d/v3d_submit_csd@bad-multisync-extension.html
* igt@v3d/v3d_wait_bo@bad-pad:
- shard-tglu: NOTRUN -> [SKIP][303] ([fdo#109315] / [i915#2575]) +4 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-6/igt@v3d/v3d_wait_bo@bad-pad.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#2575]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-10/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#7711]) +7 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-4/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#7711]) +8 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@vc4/vc4_wait_bo@bad-pad.html
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#7711]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-3/igt@vc4/vc4_wait_bo@bad-pad.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#7711]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-16/igt@vc4/vc4_wait_bo@used-bo-0ns.html
#### Possible fixes ####
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][309] ([i915#5784]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-16/igt@gem_eio@unwedge-stress.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg1-12/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][311] ([i915#2842]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [INCOMPLETE][313] ([i915#9275]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-6/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [INCOMPLETE][315] ([i915#9200]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-glk: [INCOMPLETE][317] ([i915#9200] / [i915#9849]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [DMESG-FAIL][319] -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-4/igt@i915_selftest@live@gt_pm.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-1/igt@i915_selftest@live@gt_pm.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][321] ([i915#5138]) -> [PASS][322] +1 other test pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [FAIL][323] ([i915#3743]) -> [PASS][324] +2 other tests pass
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-dg2: [FAIL][325] ([i915#6880]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-snb: [SKIP][327] ([fdo#109271]) -> [PASS][328] +7 other tests pass
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][329] ([i915#9519]) -> [PASS][330] +2 other tests pass
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][331] ([i915#9196]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][333] ([i915#9196]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@tools_test@tools_test:
- shard-dg2: [INCOMPLETE][335] ([i915#2295]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-5/igt@tools_test@tools_test.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-5/igt@tools_test@tools_test.html
#### Warnings ####
* igt@gem_pread@exhaustion:
- shard-glk: [INCOMPLETE][337] ([i915#10042]) -> [WARN][338] ([i915#2658])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk4/igt@gem_pread@exhaustion.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-glk8/igt@gem_pread@exhaustion.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-tglu: [FAIL][339] ([i915#3591]) -> [WARN][340] ([i915#2681])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_content_protection@lic:
- shard-snb: [INCOMPLETE][341] ([i915#8816]) -> [SKIP][342] ([fdo#109271])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb7/igt@kms_content_protection@lic.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-snb6/igt@kms_content_protection@lic.html
* igt@kms_content_protection@mei-interface:
- shard-snb: [SKIP][343] ([fdo#109271]) -> [INCOMPLETE][344] ([i915#9878])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb6/igt@kms_content_protection@mei-interface.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-snb7/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][345] ([fdo#110189] / [i915#3955]) -> [SKIP][346] ([i915#3955])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-5/igt@kms_fbcon_fbt@psr.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][347] ([i915#4070] / [i915#4816]) -> [SKIP][348] ([i915#4816])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [CRASH][349] ([i915#9351]) -> [INCOMPLETE][350] ([i915#5493])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[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#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[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#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[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#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[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#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435
[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#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[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#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#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[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#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[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#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431
[i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[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#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407
[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#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[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_7666 -> IGTPW_10501
CI-20190529: 20190529
CI_DRM_14108: c58d1352dd193d8df380a14e95c05455acaf5b82 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10501: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/index.html
IGT_7666: 5f97adfd0e1636788a6af5b592f0d15b4f1027c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10501/index.html
[-- Attachment #2: Type: text/html, Size: 114513 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/2] lib/igt_kms: add helpers for big joiner debugfs
2024-01-10 11:39 ` [PATCH 1/2] lib/igt_kms: add helpers for big joiner debugfs Kunal Joshi
@ 2024-01-17 18:16 ` Modem, Bhanuprakash
2024-01-17 18:16 ` Modem, Bhanuprakash
2024-01-18 6:22 ` Sharma, Swati2
0 siblings, 2 replies; 11+ messages in thread
From: Modem, Bhanuprakash @ 2024-01-17 18:16 UTC (permalink / raw)
To: Kunal Joshi, igt-dev, Swati Sharma
On 10-01-2024 05:09 pm, Kunal Joshi wrote:
> From: Swati Sharma <swati2.sharma@intel.com>
>
> Add helpers for big joiner debugfs.
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> lib/igt_kms.c | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_kms.h | 3 +++
> 2 files changed, 78 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index e4dea1a60..0208eccc4 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6368,3 +6368,78 @@ int get_num_scalers(int drm_fd, enum pipe pipe)
>
> return num_scalers;
> }
> +
> +static int write_bigjoiner_debugfs(int drmfd, char *connector_name, const char *file_name,
> + const char *write_buf)
IMHO, we need to drop this static function and move the logic to
igt_force_bigjoiner_enable()
> +{
> + int debugfs_fd = igt_debugfs_dir(drmfd);
> + int len = strlen(write_buf);
> + int ret;
> + char file_path[128] = {0};
> +
> + sprintf(file_path, "%s/%s", connector_name, file_name);
> +
> + ret = igt_sysfs_write(debugfs_fd, file_path, write_buf, len);
> +
> + close(debugfs_fd);
> +
> + if (ret > 0)
> + return 0;
> +
> + return ret;
> +}
> +
> +static bool check_bigjoiner_debugfs(int drmfd, char *connector_name,
> + const char *check_str)
we need to drop this static function and move the logic to
igt_is_force_bigjoiner_enabled()
> +{
> + char file_name[128] = {0};
> + char buf[512];
> +
> + sprintf(file_name, "%s/i915_bigjoiner_force_enable", connector_name);
> +
> + igt_debugfs_read(drmfd, file_name, buf);
> +
> + return strstr(buf, check_str);
> +}
> +
> +/**
> + * igt_is_force_bigjoiner_enabled:
> + * @drmfd: A drm file descriptor
> + * @connector_name: Name of the libdrm connector we're going to use
> + *
> + * Returns: True if Big Joiner is force enabled (via debugfs) for the given connector,
> + * false otherwise.
> + */
> +bool igt_is_force_bigjoiner_enabled(int drmfd, char *connector_name)
> +{
> + return check_bigjoiner_debugfs(drmfd, connector_name, "Bigjoiner enable: 1");
> +}
> +
> +/**
> + * igt_force_bigjoiner_enable:
> + * @drmfd: A drm file descriptor
> + * @connector_name: Name of the libdrm connector we're going to use
> + *
> + * Returns: 0 on success or negative error code, in case of failure.
> + */
> +int igt_force_bigjoiner_enable(int drmfd, char *connector_name, bool enable)
> +{
> + return write_bigjoiner_debugfs(drmfd, connector_name, "i915_bigjoiner_force_enable", enable ? "1" : "0");
> +}
> +
> +/**
> + * igt_get_bigjoiner_debugfs_fd:
Not understood the purpose of this helper.
igt_debugfs_connector_dir() will give the directory fd, then we can
perform igt_debugfs_simple_read() or igt_sysfs_write() with that fd.
- Bhanu
> + * @drmfd: A drm file descriptor
> + * @connector_name: Name of the libdrm connector we're going to use
> + *
> + * Returns: fd of the Big Joiner debugfs for the given connector,
> + * else returns -1.
> + */
> +int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name)
> +{
> + char file_name[128] = {0};
> +
> + sprintf(file_name, "%s/i915_bigjoiner_force_enable", connector_name);
> +
> + return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
> +}
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index b3882808b..2d000d54d 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1218,5 +1218,8 @@ bool intel_pipe_output_combo_valid(igt_display_t *display);
> bool igt_check_output_is_dp_mst(igt_output_t *output);
> int igt_get_dp_mst_connector_id(igt_output_t *output);
> int get_num_scalers(int drm_fd, enum pipe pipe);
> +bool igt_is_force_bigjoiner_enabled(int drmfd, char *connector_name);
> +int igt_force_bigjoiner_enable(int drmfd, char *connector_name, bool enable);
> +int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name);
>
> #endif /* __IGT_KMS_H__ */
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/2] lib/igt_kms: add helpers for big joiner debugfs
2024-01-17 18:16 ` Modem, Bhanuprakash
@ 2024-01-17 18:16 ` Modem, Bhanuprakash
2024-01-18 6:22 ` Sharma, Swati2
1 sibling, 0 replies; 11+ messages in thread
From: Modem, Bhanuprakash @ 2024-01-17 18:16 UTC (permalink / raw)
To: Kunal Joshi, igt-dev, Swati Sharma
On 10-01-2024 05:09 pm, Kunal Joshi wrote:
> From: Swati Sharma <swati2.sharma@intel.com>
>
> Add helpers for big joiner debugfs.
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> lib/igt_kms.c | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_kms.h | 3 +++
> 2 files changed, 78 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index e4dea1a60..0208eccc4 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6368,3 +6368,78 @@ int get_num_scalers(int drm_fd, enum pipe pipe)
>
> return num_scalers;
> }
> +
> +static int write_bigjoiner_debugfs(int drmfd, char *connector_name, const char *file_name,
> + const char *write_buf)
IMHO, we need to drop this static function and move the logic to
igt_force_bigjoiner_enable()
> +{
> + int debugfs_fd = igt_debugfs_dir(drmfd);
> + int len = strlen(write_buf);
> + int ret;
> + char file_path[128] = {0};
> +
> + sprintf(file_path, "%s/%s", connector_name, file_name);
> +
> + ret = igt_sysfs_write(debugfs_fd, file_path, write_buf, len);
> +
> + close(debugfs_fd);
> +
> + if (ret > 0)
> + return 0;
> +
> + return ret;
> +}
> +
> +static bool check_bigjoiner_debugfs(int drmfd, char *connector_name,
> + const char *check_str)
we need to drop this static function and move the logic to
igt_is_force_bigjoiner_enabled()
> +{
> + char file_name[128] = {0};
> + char buf[512];
> +
> + sprintf(file_name, "%s/i915_bigjoiner_force_enable", connector_name);
> +
> + igt_debugfs_read(drmfd, file_name, buf);
> +
> + return strstr(buf, check_str);
> +}
> +
> +/**
> + * igt_is_force_bigjoiner_enabled:
> + * @drmfd: A drm file descriptor
> + * @connector_name: Name of the libdrm connector we're going to use
> + *
> + * Returns: True if Big Joiner is force enabled (via debugfs) for the given connector,
> + * false otherwise.
> + */
> +bool igt_is_force_bigjoiner_enabled(int drmfd, char *connector_name)
> +{
> + return check_bigjoiner_debugfs(drmfd, connector_name, "Bigjoiner enable: 1");
> +}
> +
> +/**
> + * igt_force_bigjoiner_enable:
> + * @drmfd: A drm file descriptor
> + * @connector_name: Name of the libdrm connector we're going to use
> + *
> + * Returns: 0 on success or negative error code, in case of failure.
> + */
> +int igt_force_bigjoiner_enable(int drmfd, char *connector_name, bool enable)
> +{
> + return write_bigjoiner_debugfs(drmfd, connector_name, "i915_bigjoiner_force_enable", enable ? "1" : "0");
> +}
> +
> +/**
> + * igt_get_bigjoiner_debugfs_fd:
Not understood the purpose of this helper.
igt_debugfs_connector_dir() will give the directory fd, then we can
perform igt_debugfs_simple_read() or igt_sysfs_write() with that fd.
- Bhanu
> + * @drmfd: A drm file descriptor
> + * @connector_name: Name of the libdrm connector we're going to use
> + *
> + * Returns: fd of the Big Joiner debugfs for the given connector,
> + * else returns -1.
> + */
> +int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name)
> +{
> + char file_name[128] = {0};
> +
> + sprintf(file_name, "%s/i915_bigjoiner_force_enable", connector_name);
> +
> + return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
> +}
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index b3882808b..2d000d54d 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1218,5 +1218,8 @@ bool intel_pipe_output_combo_valid(igt_display_t *display);
> bool igt_check_output_is_dp_mst(igt_output_t *output);
> int igt_get_dp_mst_connector_id(igt_output_t *output);
> int get_num_scalers(int drm_fd, enum pipe pipe);
> +bool igt_is_force_bigjoiner_enabled(int drmfd, char *connector_name);
> +int igt_force_bigjoiner_enable(int drmfd, char *connector_name, bool enable);
> +int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name);
>
> #endif /* __IGT_KMS_H__ */
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/2] lib/igt_kms: add helpers for big joiner debugfs
2024-01-17 18:16 ` Modem, Bhanuprakash
2024-01-17 18:16 ` Modem, Bhanuprakash
@ 2024-01-18 6:22 ` Sharma, Swati2
2024-01-18 8:50 ` Modem, Bhanuprakash
1 sibling, 1 reply; 11+ messages in thread
From: Sharma, Swati2 @ 2024-01-18 6:22 UTC (permalink / raw)
To: Modem, Bhanuprakash, Kunal Joshi, igt-dev
Hi Bhanu,
On 17-Jan-24 11:46 PM, Modem, Bhanuprakash wrote:
>
> On 10-01-2024 05:09 pm, Kunal Joshi wrote:
>> From: Swati Sharma <swati2.sharma@intel.com>
>>
>> Add helpers for big joiner debugfs.
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
>> ---
>> lib/igt_kms.c | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++
>> lib/igt_kms.h | 3 +++
>> 2 files changed, 78 insertions(+)
>>
>> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
>> index e4dea1a60..0208eccc4 100644
>> --- a/lib/igt_kms.c
>> +++ b/lib/igt_kms.c
>> @@ -6368,3 +6368,78 @@ int get_num_scalers(int drm_fd, enum pipe pipe)
>> return num_scalers;
>> }
>> +
>> +static int write_bigjoiner_debugfs(int drmfd, char *connector_name,
>> const char *file_name,
>> + const char *write_buf)
>
> IMHO, we need to drop this static function and move the logic to
> igt_force_bigjoiner_enable()
Why?
>
>> +{
>> + int debugfs_fd = igt_debugfs_dir(drmfd);
>> + int len = strlen(write_buf);
>> + int ret;
>> + char file_path[128] = {0};
>> +
>> + sprintf(file_path, "%s/%s", connector_name, file_name);
>> +
>> + ret = igt_sysfs_write(debugfs_fd, file_path, write_buf, len);
>> +
>> + close(debugfs_fd);
>> +
>> + if (ret > 0)
>> + return 0;
>> +
>> + return ret;
>> +}
>> +
>> +static bool check_bigjoiner_debugfs(int drmfd, char *connector_name,
>> + const char *check_str)
>
> we need to drop this static function and move the logic to
> igt_is_force_bigjoiner_enabled()
>
>> +{
>> + char file_name[128] = {0};
>> + char buf[512];
>> +
>> + sprintf(file_name, "%s/i915_bigjoiner_force_enable",
>> connector_name);
>> +
>> + igt_debugfs_read(drmfd, file_name, buf);
>> +
>> + return strstr(buf, check_str);
>> +}
>> +
>> +/**
>> + * igt_is_force_bigjoiner_enabled:
>> + * @drmfd: A drm file descriptor
>> + * @connector_name: Name of the libdrm connector we're going to use
>> + *
>> + * Returns: True if Big Joiner is force enabled (via debugfs) for the
>> given connector,
>> + * false otherwise.
>> + */
>> +bool igt_is_force_bigjoiner_enabled(int drmfd, char *connector_name)
>> +{
>> + return check_bigjoiner_debugfs(drmfd, connector_name, "Bigjoiner
>> enable: 1");
>> +}
>> +
>> +/**
>> + * igt_force_bigjoiner_enable:
>> + * @drmfd: A drm file descriptor
>> + * @connector_name: Name of the libdrm connector we're going to use
>> + *
>> + * Returns: 0 on success or negative error code, in case of failure.
>> + */
>> +int igt_force_bigjoiner_enable(int drmfd, char *connector_name, bool
>> enable)
>> +{
>> + return write_bigjoiner_debugfs(drmfd, connector_name,
>> "i915_bigjoiner_force_enable", enable ? "1" : "0");
>> +}
>> +
>> +/**
>> + * igt_get_bigjoiner_debugfs_fd:
>
> Not understood the purpose of this helper.
>
> igt_debugfs_connector_dir() will give the directory fd, then we can
> perform igt_debugfs_simple_read() or igt_sysfs_write() with that fd.
This is getting used here
https://patchwork.freedesktop.org/patch/574033/?series=128266&rev=2
>
> - Bhanu
>
>> + * @drmfd: A drm file descriptor
>> + * @connector_name: Name of the libdrm connector we're going to use
>> + *
>> + * Returns: fd of the Big Joiner debugfs for the given connector,
>> + * else returns -1.
>> + */
>> +int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name)
>> +{
>> + char file_name[128] = {0};
>> +
>> + sprintf(file_name, "%s/i915_bigjoiner_force_enable",
>> connector_name);
>> +
>> + return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
>> +}
>> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
>> index b3882808b..2d000d54d 100644
>> --- a/lib/igt_kms.h
>> +++ b/lib/igt_kms.h
>> @@ -1218,5 +1218,8 @@ bool intel_pipe_output_combo_valid(igt_display_t
>> *display);
>> bool igt_check_output_is_dp_mst(igt_output_t *output);
>> int igt_get_dp_mst_connector_id(igt_output_t *output);
>> int get_num_scalers(int drm_fd, enum pipe pipe);
>> +bool igt_is_force_bigjoiner_enabled(int drmfd, char *connector_name);
>> +int igt_force_bigjoiner_enable(int drmfd, char *connector_name, bool
>> enable);
>> +int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name);
>> #endif /* __IGT_KMS_H__ */
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/2] lib/igt_kms: add helpers for big joiner debugfs
2024-01-18 6:22 ` Sharma, Swati2
@ 2024-01-18 8:50 ` Modem, Bhanuprakash
0 siblings, 0 replies; 11+ messages in thread
From: Modem, Bhanuprakash @ 2024-01-18 8:50 UTC (permalink / raw)
To: Sharma, Swati2, Kunal Joshi, igt-dev
Hi Swati,
On 18-01-2024 11:52 am, Sharma, Swati2 wrote:
> Hi Bhanu,
>
> On 17-Jan-24 11:46 PM, Modem, Bhanuprakash wrote:
>>
>> On 10-01-2024 05:09 pm, Kunal Joshi wrote:
>>> From: Swati Sharma <swati2.sharma@intel.com>
>>>
>>> Add helpers for big joiner debugfs.
>>>
>>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>>> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
>>> ---
>>> lib/igt_kms.c | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++
>>> lib/igt_kms.h | 3 +++
>>> 2 files changed, 78 insertions(+)
>>>
>>> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
>>> index e4dea1a60..0208eccc4 100644
>>> --- a/lib/igt_kms.c
>>> +++ b/lib/igt_kms.c
>>> @@ -6368,3 +6368,78 @@ int get_num_scalers(int drm_fd, enum pipe pipe)
>>> return num_scalers;
>>> }
>>> +
>>> +static int write_bigjoiner_debugfs(int drmfd, char *connector_name,
>>> const char *file_name,
>>> + const char *write_buf)
>>
>> IMHO, we need to drop this static function and move the logic to
>> igt_force_bigjoiner_enable()
>
> Why?
I don't see any advantage of having this static function, since
igt_force_bigjoiner_enable() is the only one who is using this function.
>
>>
>>> +{
>>> + int debugfs_fd = igt_debugfs_dir(drmfd);
>>> + int len = strlen(write_buf);
>>> + int ret;
>>> + char file_path[128] = {0};
>>> +
>>> + sprintf(file_path, "%s/%s", connector_name, file_name);
>>> +
>>> + ret = igt_sysfs_write(debugfs_fd, file_path, write_buf, len);
>>> +
>>> + close(debugfs_fd);
>>> +
>>> + if (ret > 0)
>>> + return 0;
>>> +
>>> + return ret;
>>> +}
>>> +
>>> +static bool check_bigjoiner_debugfs(int drmfd, char *connector_name,
>>> + const char *check_str)
>>
>> we need to drop this static function and move the logic to
>> igt_is_force_bigjoiner_enabled()
>>
>>> +{
>>> + char file_name[128] = {0};
>>> + char buf[512];
>>> +
>>> + sprintf(file_name, "%s/i915_bigjoiner_force_enable",
>>> connector_name);
>>> +
>>> + igt_debugfs_read(drmfd, file_name, buf);
>>> +
>>> + return strstr(buf, check_str);
>>> +}
>>> +
>>> +/**
>>> + * igt_is_force_bigjoiner_enabled:
>>> + * @drmfd: A drm file descriptor
>>> + * @connector_name: Name of the libdrm connector we're going to use
>>> + *
>>> + * Returns: True if Big Joiner is force enabled (via debugfs) for
>>> the given connector,
>>> + * false otherwise.
>>> + */
>>> +bool igt_is_force_bigjoiner_enabled(int drmfd, char *connector_name)
>>> +{
>>> + return check_bigjoiner_debugfs(drmfd, connector_name, "Bigjoiner
>>> enable: 1");
>>> +}
>>> +
>>> +/**
>>> + * igt_force_bigjoiner_enable:
>>> + * @drmfd: A drm file descriptor
>>> + * @connector_name: Name of the libdrm connector we're going to use
>>> + *
>>> + * Returns: 0 on success or negative error code, in case of failure.
>>> + */
>>> +int igt_force_bigjoiner_enable(int drmfd, char *connector_name, bool
>>> enable)
>>> +{
>>> + return write_bigjoiner_debugfs(drmfd, connector_name,
>>> "i915_bigjoiner_force_enable", enable ? "1" : "0");
>>> +}
>>> +
>>> +/**
>>> + * igt_get_bigjoiner_debugfs_fd:
>>
>> Not understood the purpose of this helper.
>>
>> igt_debugfs_connector_dir() will give the directory fd, then we can
>> perform igt_debugfs_simple_read() or igt_sysfs_write() with that fd.
>
> This is getting used here
> https://patchwork.freedesktop.org/patch/574033/?series=128266&rev=2
After all it is just a connector debugfs, and I am still not understood
the purpose of this helper.
- Bhanu
>
>>
>> - Bhanu
>>
>>> + * @drmfd: A drm file descriptor
>>> + * @connector_name: Name of the libdrm connector we're going to use
>>> + *
>>> + * Returns: fd of the Big Joiner debugfs for the given connector,
>>> + * else returns -1.
>>> + */
>>> +int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name)
>>> +{
>>> + char file_name[128] = {0};
>>> +
>>> + sprintf(file_name, "%s/i915_bigjoiner_force_enable",
>>> connector_name);
>>> +
>>> + return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
>>> +}
>>> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
>>> index b3882808b..2d000d54d 100644
>>> --- a/lib/igt_kms.h
>>> +++ b/lib/igt_kms.h
>>> @@ -1218,5 +1218,8 @@ bool
>>> intel_pipe_output_combo_valid(igt_display_t *display);
>>> bool igt_check_output_is_dp_mst(igt_output_t *output);
>>> int igt_get_dp_mst_connector_id(igt_output_t *output);
>>> int get_num_scalers(int drm_fd, enum pipe pipe);
>>> +bool igt_is_force_bigjoiner_enabled(int drmfd, char *connector_name);
>>> +int igt_force_bigjoiner_enable(int drmfd, char *connector_name, bool
>>> enable);
>>> +int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name);
>>> #endif /* __IGT_KMS_H__ */
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-01-18 8:50 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-10 11:39 [PATCH 0/2] add force bigjoiner test Kunal Joshi
2024-01-10 11:39 ` [PATCH 1/2] lib/igt_kms: add helpers for big joiner debugfs Kunal Joshi
2024-01-17 18:16 ` Modem, Bhanuprakash
2024-01-17 18:16 ` Modem, Bhanuprakash
2024-01-18 6:22 ` Sharma, Swati2
2024-01-18 8:50 ` Modem, Bhanuprakash
2024-01-10 11:39 ` [PATCH 2/2] tests/intel/kms_big_joiner: add new test for force bigjoiner Kunal Joshi
2024-01-10 13:09 ` ✗ GitLab.Pipeline: warning for add force bigjoiner test Patchwork
2024-01-10 13:34 ` ✓ Fi.CI.BAT: success " Patchwork
2024-01-10 13:36 ` ✗ CI.xeBAT: failure " Patchwork
2024-01-10 16:14 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox