* [igt-dev] [PATCH v3 1/2] lib/amdgpu: Add helper functions to return MALL support
@ 2023-08-08 15:24 Aurabindo Pillai
2023-08-08 15:24 ` [igt-dev] [PATCH v3 2/2] tests/amdgpu: Add test for MALL static screen cache scanout Aurabindo Pillai
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Aurabindo Pillai @ 2023-08-08 15:24 UTC (permalink / raw)
To: igt-dev
Reads the debugfs file exposed by AMDGPU DM that can be used to find out
whether the hardware supports certain features, like MALL (Memory access
at last level)
Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
---
lib/igt_amd.c | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_amd.h | 3 +++
2 files changed, 55 insertions(+)
diff --git a/lib/igt_amd.c b/lib/igt_amd.c
index 8da405649..a4dba6bad 100644
--- a/lib/igt_amd.c
+++ b/lib/igt_amd.c
@@ -1144,6 +1144,57 @@ void igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool ena
close(hpd_fd);
}
+static bool get_dm_capabilites(int drm_fd, char *buf, size_t size) {
+ int ret, fd;
+ bool has_capablities = amd_has_debugfs(drm_fd, DEBUGFS_DM_CAPABILITIES);
+
+ if (!has_capablities)
+ return false;
+
+ fd = igt_debugfs_dir(drm_fd);
+ if (fd < 0) {
+ igt_warn("Couldn't open debugfs directory\n");
+ return -1;
+ }
+
+ ret = igt_debugfs_simple_read(fd, DEBUGFS_DM_CAPABILITIES, buf, (int) size);
+ igt_assert_f(ret >= 0, "Reading %s failed.\n", DEBUGFS_DM_CAPABILITIES);
+
+ close(fd);
+
+ if (ret < 0)
+ return false;
+
+ return true;
+}
+
+/**
+ * @brief check if AMDGPU mall_capable interface entry exist and defined
+ *
+ * @param drm_fd DRM file descriptor
+ * @return true if mall_capable debugfs interface exists and defined
+ * @return false otherwise
+ */
+bool igt_amd_is_mall_capable(int drm_fd)
+{
+ char buf[1024], mall_read[10];
+ char *mall_loc;
+
+ if (!get_dm_capabilites(drm_fd, buf, 1024))
+ return false;
+
+ mall_loc = strstr(buf,"mall: ");
+ if (!mall_loc)
+ return false;
+
+ sscanf(mall_loc, "mall: %s", mall_read);
+
+ if (!strcmp(mall_read, "yes"))
+ return true;
+
+ return false;
+}
+
/**
* @brief check if AMDGPU DM visual confirm debugfs interface entry exist and defined
*
@@ -1156,6 +1207,7 @@ bool igt_amd_has_visual_confirm(int drm_fd)
return amd_has_debugfs(drm_fd, DEBUGFS_DM_VISUAL_CONFIRM);
}
+
/**
* @brief Read amdgpu DM visual confirm debugfs interface
*
diff --git a/lib/igt_amd.h b/lib/igt_amd.h
index d57390405..6f538a195 100644
--- a/lib/igt_amd.h
+++ b/lib/igt_amd.h
@@ -52,6 +52,7 @@
/* amdgpu DM interface entries */
#define DEBUGFS_DM_VISUAL_CONFIRM "amdgpu_dm_visual_confirm"
+#define DEBUGFS_DM_CAPABILITIES "amdgpu_dm_capabilities"
enum amd_dsc_clock_force {
DSC_AUTOMATIC = 0,
@@ -194,4 +195,6 @@ void igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool ena
bool igt_amd_has_visual_confirm(int drm_fd);
int igt_amd_get_visual_confirm(int drm_fd);
bool igt_amd_set_visual_confirm(int drm_fd, enum amdgpu_debug_visual_confirm option);
+
+bool igt_amd_is_mall_capable(int drm_fd);
#endif /* IGT_AMD_H */
--
2.41.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH v3 2/2] tests/amdgpu: Add test for MALL static screen cache scanout
2023-08-08 15:24 [igt-dev] [PATCH v3 1/2] lib/amdgpu: Add helper functions to return MALL support Aurabindo Pillai
@ 2023-08-08 15:24 ` Aurabindo Pillai
2023-08-08 20:34 ` Alex Hung
2023-08-08 17:42 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [v3,1/2] lib/amdgpu: Add helper functions to return MALL support Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Aurabindo Pillai @ 2023-08-08 15:24 UTC (permalink / raw)
To: igt-dev
MALL stands for memory access at last level.
This test is to verify that the display scanout is triggered from MALL cache instead
of GPU VRAM when the contents of the screen is idle for some time.
Requires UMR userspace utility from
https://gitlab.freedesktop.org/tomstdenis/umr to read MALL register
value.
This test commits a test pattern FB, sleeps for some
time, and then reads back the MALL status register to check if display
refresh from static screen is triggered.
Changes in v2:
Added possibility to skip the test on Asics that do not support MALL
Changes in v3:
Aded comment in source code about the MALL delay time necessary to
trigger idle optimizations.
Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
---
tests/amdgpu/amd_mall.c | 169 +++++++++++++++++++++++++++++++++++++++
tests/amdgpu/meson.build | 1 +
2 files changed, 170 insertions(+)
create mode 100644 tests/amdgpu/amd_mall.c
diff --git a/tests/amdgpu/amd_mall.c b/tests/amdgpu/amd_mall.c
new file mode 100644
index 000000000..c50d046ee
--- /dev/null
+++ b/tests/amdgpu/amd_mall.c
@@ -0,0 +1,169 @@
+/*
+ * Copyright 2023 Advanced Micro Devices, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
+ * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ * OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+#include "igt.h"
+#include "igt_amd.h"
+#include "igt_core.h"
+#include <fcntl.h>
+
+IGT_TEST_DESCRIPTION("Test display refresh from MALL cache");
+
+/*
+ * Time needed in seconds for vblank irq count to reach 0.
+ * Typically about 5 seconds.
+ */
+
+#define MALL_SETTLE_DELAY 10
+
+/* Common test data. */
+typedef struct data {
+ igt_display_t display;
+ igt_plane_t *primary;
+ igt_output_t *output;
+ igt_pipe_t *pipe;
+ igt_pipe_crc_t *pipe_crc;
+ drmModeModeInfo *mode;
+ enum pipe pipe_id;
+ int fd;
+ int w;
+ int h;
+} data_t;
+
+struct line_check {
+ int found;
+ const char *substr;
+};
+
+/* Common test setup. */
+static void test_init(data_t *data)
+{
+ igt_display_t *display = &data->display;
+ bool mall_capable = false;
+
+ /* It doesn't matter which pipe we choose on amdpgu. */
+ data->pipe_id = PIPE_A;
+ data->pipe = &data->display.pipes[data->pipe_id];
+
+ igt_display_reset(display);
+
+ mall_capable = igt_amd_is_mall_capable(data->fd);
+ igt_require_f(mall_capable, "Requires hardware that supports MALL cache\n");
+
+ /* find a connected output */
+ data->output = NULL;
+ for (int i=0; i < data->display.n_outputs; ++i) {
+ drmModeConnector *connector = data->display.outputs[i].config.connector;
+ if (connector->connection == DRM_MODE_CONNECTED) {
+ data->output = &data->display.outputs[i];
+ }
+ }
+ igt_require_f(data->output, "Requires a connected display\n");
+
+ data->mode = igt_output_get_mode(data->output);
+ igt_assert(data->mode);
+
+ data->primary =
+ igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
+
+ data->pipe_crc = igt_pipe_crc_new(data->fd, data->pipe_id,
+ IGT_PIPE_CRC_SOURCE_AUTO);
+
+ igt_output_set_pipe(data->output, data->pipe_id);
+
+ data->w = data->mode->hdisplay;
+ data->h = data->mode->vdisplay;
+}
+
+/* Common test cleanup. */
+static void test_fini(data_t *data)
+{
+ igt_pipe_crc_free(data->pipe_crc);
+ igt_display_reset(&data->display);
+ igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
+}
+
+static bool check_cmd_output(const char *line, void *data)
+{
+ struct line_check *check = data;
+
+ if (strstr(line, check->substr)) {
+ check->found++;
+ }
+
+ return false;
+}
+static void test_mall_ss(data_t *data)
+{
+ igt_display_t *display = &data->display;
+ igt_fb_t rfb;
+ int exec_ret;
+ struct line_check line = {0};
+
+ test_init(data);
+
+ igt_create_pattern_fb(data->fd, data->w, data->h, DRM_FORMAT_XRGB8888, 0, &rfb);
+ igt_plane_set_fb(data->primary, &rfb);
+ igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+
+ sleep(MALL_SETTLE_DELAY);
+
+ igt_system_cmd(exec_ret, "umr -O bits -r *.*.HUBP0_HUBP_MALL_STATUS | grep MALL_IN_USE");
+
+ igt_skip_on_f(exec_ret != IGT_EXIT_SUCCESS, "Error running UMR\n");
+
+ line.substr = "1 (0x00000001)";
+ igt_log_buffer_inspect(check_cmd_output, &line);
+
+ igt_assert_eq(line.found, 1);
+
+ igt_remove_fb(data->fd, &rfb);
+ test_fini(data);
+}
+
+igt_main
+{
+ data_t data;
+
+ igt_skip_on_simulation();
+
+ memset(&data, 0, sizeof(data));
+
+ igt_fixture
+ {
+ data.fd = drm_open_driver_master(DRIVER_AMDGPU);
+
+ kmstest_set_vt_graphics_mode();
+
+ igt_display_require(&data.display, data.fd);
+ igt_require(data.display.is_atomic);
+ igt_display_require_output(&data.display);
+ }
+
+ igt_describe("Tests whether display scanout is triggered from MALL cache instead "
+ "of GPU VRAM when screen contents are idle");
+ igt_subtest("static-screen") test_mall_ss(&data);
+
+ igt_fixture
+ {
+ igt_display_fini(&data.display);
+ }
+}
diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
index 336acdb00..6c6166167 100644
--- a/tests/amdgpu/meson.build
+++ b/tests/amdgpu/meson.build
@@ -34,6 +34,7 @@ if libdrm_amdgpu.found()
'amd_vcn',
'amd_vm',
'amd_vrr_range',
+ 'amd_mall',
]
amdgpu_deps += libdrm_amdgpu
endif
--
2.41.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [v3,1/2] lib/amdgpu: Add helper functions to return MALL support
2023-08-08 15:24 [igt-dev] [PATCH v3 1/2] lib/amdgpu: Add helper functions to return MALL support Aurabindo Pillai
2023-08-08 15:24 ` [igt-dev] [PATCH v3 2/2] tests/amdgpu: Add test for MALL static screen cache scanout Aurabindo Pillai
@ 2023-08-08 17:42 ` Patchwork
2023-08-08 20:33 ` [igt-dev] [PATCH v3 1/2] " Alex Hung
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-08-08 17:42 UTC (permalink / raw)
To: Aurabindo Pillai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9170 bytes --]
== Series Details ==
Series: series starting with [v3,1/2] lib/amdgpu: Add helper functions to return MALL support
URL : https://patchwork.freedesktop.org/series/122164/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13492 -> IGTPW_9544
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/index.html
Participating hosts (43 -> 40)
------------------------------
Missing (3): fi-kbl-soraka fi-skl-guc fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9544 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adlp-9: NOTRUN -> [SKIP][1] ([i915#4613]) +3 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-adlp-9/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_pm_rpm@module-reload:
- bat-adlp-9: NOTRUN -> [FAIL][2] ([i915#7940])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-adlp-9: NOTRUN -> [SKIP][3] ([i915#6621])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-adlp-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#7059])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@migrate:
- bat-mtlp-8: [PASS][6] -> [DMESG-FAIL][7] ([i915#7699])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-mtlp-8/igt@i915_selftest@live@migrate.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-mtlp-8/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@live@slpc:
- bat-rpls-1: NOTRUN -> [DMESG-WARN][8] ([i915#6367])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-rpls-1: NOTRUN -> [ABORT][9] ([i915#6687] / [i915#7978] / [i915#8668])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-adlp-9: NOTRUN -> [SKIP][10] ([i915#7828])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-adlp-9/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
- bat-jsl-3: NOTRUN -> [SKIP][11] ([i915#7828])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-jsl-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-adlp-9: NOTRUN -> [SKIP][12] ([i915#3546]) +2 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-adlp-9/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
- bat-rplp-1: [PASS][13] -> [ABORT][14] ([i915#8442] / [i915#8668])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
* igt@prime_vgem@basic-fence-read:
- bat-adlp-9: NOTRUN -> [SKIP][15] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-adlp-9/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-jsl-3: [ABORT][16] ([i915#5122]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
* igt@i915_pm_rpm@basic-rte:
- fi-cfl-8109u: [FAIL][18] ([i915#7940]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
- bat-adlp-9: [ABORT][20] ([i915#7977] / [i915#8668]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-adlp-9/igt@i915_pm_rpm@basic-rte.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-adlp-9/igt@i915_pm_rpm@basic-rte.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-6: [DMESG-FAIL][22] ([i915#7059]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@reset:
- bat-rpls-1: [ABORT][24] ([i915#4983] / [i915#7461] / [i915#8347] / [i915#8384]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-rpls-1/igt@i915_selftest@live@reset.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-rpls-1/igt@i915_selftest@live@reset.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-6: [DMESG-WARN][26] ([i915#6367]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-mtlp-6/igt@i915_selftest@live@slpc.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-mtlp-6/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-jsl-3: [FAIL][28] ([fdo#103375]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
#### Warnings ####
* igt@core_auth@basic-auth:
- bat-adlp-11: [ABORT][30] ([i915#4423] / [i915#8011]) -> [ABORT][31] ([i915#8011])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-adlp-11/igt@core_auth@basic-auth.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-adlp-11/igt@core_auth@basic-auth.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: [ABORT][32] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#7981] / [i915#8347]) -> [ABORT][33] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/bat-rpls-2/igt@i915_selftest@live@reset.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/bat-rpls-2/igt@i915_selftest@live@reset.html
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7422 -> IGTPW_9544
CI-20190529: 20190529
CI_DRM_13492: 525b387a224ced0a360fcbf92794392999de7208 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9544: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/index.html
IGT_7422: a7b9e93b67f02d17b99f9331fdcda14e21172c8c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/index.html
[-- Attachment #2: Type: text/html, Size: 11181 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH v3 1/2] lib/amdgpu: Add helper functions to return MALL support
2023-08-08 15:24 [igt-dev] [PATCH v3 1/2] lib/amdgpu: Add helper functions to return MALL support Aurabindo Pillai
2023-08-08 15:24 ` [igt-dev] [PATCH v3 2/2] tests/amdgpu: Add test for MALL static screen cache scanout Aurabindo Pillai
2023-08-08 17:42 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [v3,1/2] lib/amdgpu: Add helper functions to return MALL support Patchwork
@ 2023-08-08 20:33 ` Alex Hung
2023-08-08 22:20 ` [igt-dev] ○ CI.xeBAT: info for series starting with [v3,1/2] " Patchwork
2023-08-09 3:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Alex Hung @ 2023-08-08 20:33 UTC (permalink / raw)
To: Aurabindo Pillai, igt-dev
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 2023-08-08 09:24, Aurabindo Pillai wrote:
> Reads the debugfs file exposed by AMDGPU DM that can be used to find out
> whether the hardware supports certain features, like MALL (Memory access
> at last level)
>
> Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
> ---
> lib/igt_amd.c | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_amd.h | 3 +++
> 2 files changed, 55 insertions(+)
>
> diff --git a/lib/igt_amd.c b/lib/igt_amd.c
> index 8da405649..a4dba6bad 100644
> --- a/lib/igt_amd.c
> +++ b/lib/igt_amd.c
> @@ -1144,6 +1144,57 @@ void igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool ena
> close(hpd_fd);
> }
>
> +static bool get_dm_capabilites(int drm_fd, char *buf, size_t size) {
> + int ret, fd;
> + bool has_capablities = amd_has_debugfs(drm_fd, DEBUGFS_DM_CAPABILITIES);
> +
> + if (!has_capablities)
> + return false;
> +
> + fd = igt_debugfs_dir(drm_fd);
> + if (fd < 0) {
> + igt_warn("Couldn't open debugfs directory\n");
> + return -1;
> + }
> +
> + ret = igt_debugfs_simple_read(fd, DEBUGFS_DM_CAPABILITIES, buf, (int) size);
> + igt_assert_f(ret >= 0, "Reading %s failed.\n", DEBUGFS_DM_CAPABILITIES);
> +
> + close(fd);
> +
> + if (ret < 0)
> + return false;
> +
> + return true;
> +}
> +
> +/**
> + * @brief check if AMDGPU mall_capable interface entry exist and defined
> + *
> + * @param drm_fd DRM file descriptor
> + * @return true if mall_capable debugfs interface exists and defined
> + * @return false otherwise
> + */
> +bool igt_amd_is_mall_capable(int drm_fd)
> +{
> + char buf[1024], mall_read[10];
> + char *mall_loc;
> +
> + if (!get_dm_capabilites(drm_fd, buf, 1024))
> + return false;
> +
> + mall_loc = strstr(buf,"mall: ");
> + if (!mall_loc)
> + return false;
> +
> + sscanf(mall_loc, "mall: %s", mall_read);
> +
> + if (!strcmp(mall_read, "yes"))
> + return true;
> +
> + return false;
> +}
> +
> /**
> * @brief check if AMDGPU DM visual confirm debugfs interface entry exist and defined
> *
> @@ -1156,6 +1207,7 @@ bool igt_amd_has_visual_confirm(int drm_fd)
> return amd_has_debugfs(drm_fd, DEBUGFS_DM_VISUAL_CONFIRM);
> }
>
> +
> /**
> * @brief Read amdgpu DM visual confirm debugfs interface
> *
> diff --git a/lib/igt_amd.h b/lib/igt_amd.h
> index d57390405..6f538a195 100644
> --- a/lib/igt_amd.h
> +++ b/lib/igt_amd.h
> @@ -52,6 +52,7 @@
>
> /* amdgpu DM interface entries */
> #define DEBUGFS_DM_VISUAL_CONFIRM "amdgpu_dm_visual_confirm"
> +#define DEBUGFS_DM_CAPABILITIES "amdgpu_dm_capabilities"
>
> enum amd_dsc_clock_force {
> DSC_AUTOMATIC = 0,
> @@ -194,4 +195,6 @@ void igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool ena
> bool igt_amd_has_visual_confirm(int drm_fd);
> int igt_amd_get_visual_confirm(int drm_fd);
> bool igt_amd_set_visual_confirm(int drm_fd, enum amdgpu_debug_visual_confirm option);
> +
> +bool igt_amd_is_mall_capable(int drm_fd);
> #endif /* IGT_AMD_H */
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH v3 2/2] tests/amdgpu: Add test for MALL static screen cache scanout
2023-08-08 15:24 ` [igt-dev] [PATCH v3 2/2] tests/amdgpu: Add test for MALL static screen cache scanout Aurabindo Pillai
@ 2023-08-08 20:34 ` Alex Hung
0 siblings, 0 replies; 7+ messages in thread
From: Alex Hung @ 2023-08-08 20:34 UTC (permalink / raw)
To: Aurabindo Pillai, igt-dev
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 2023-08-08 09:24, Aurabindo Pillai wrote:
> MALL stands for memory access at last level.
>
> This test is to verify that the display scanout is triggered from MALL cache instead
> of GPU VRAM when the contents of the screen is idle for some time.
>
> Requires UMR userspace utility from
> https://gitlab.freedesktop.org/tomstdenis/umr to read MALL register
> value.
>
> This test commits a test pattern FB, sleeps for some
> time, and then reads back the MALL status register to check if display
> refresh from static screen is triggered.
>
> Changes in v2:
>
> Added possibility to skip the test on Asics that do not support MALL
>
> Changes in v3:
>
> Aded comment in source code about the MALL delay time necessary to
> trigger idle optimizations.
>
> Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
> ---
> tests/amdgpu/amd_mall.c | 169 +++++++++++++++++++++++++++++++++++++++
> tests/amdgpu/meson.build | 1 +
> 2 files changed, 170 insertions(+)
> create mode 100644 tests/amdgpu/amd_mall.c
>
> diff --git a/tests/amdgpu/amd_mall.c b/tests/amdgpu/amd_mall.c
> new file mode 100644
> index 000000000..c50d046ee
> --- /dev/null
> +++ b/tests/amdgpu/amd_mall.c
> @@ -0,0 +1,169 @@
> +/*
> + * Copyright 2023 Advanced Micro Devices, Inc.
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> + * and/or sell copies of the Software, and to permit persons to whom the
> + * Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice shall be included in
> + * all copies or substantial portions of the Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
> + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
> + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
> + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
> + * OTHER DEALINGS IN THE SOFTWARE.
> + */
> +
> +#include "igt.h"
> +#include "igt_amd.h"
> +#include "igt_core.h"
> +#include <fcntl.h>
> +
> +IGT_TEST_DESCRIPTION("Test display refresh from MALL cache");
> +
> +/*
> + * Time needed in seconds for vblank irq count to reach 0.
> + * Typically about 5 seconds.
> + */
> +
> +#define MALL_SETTLE_DELAY 10
> +
> +/* Common test data. */
> +typedef struct data {
> + igt_display_t display;
> + igt_plane_t *primary;
> + igt_output_t *output;
> + igt_pipe_t *pipe;
> + igt_pipe_crc_t *pipe_crc;
> + drmModeModeInfo *mode;
> + enum pipe pipe_id;
> + int fd;
> + int w;
> + int h;
> +} data_t;
> +
> +struct line_check {
> + int found;
> + const char *substr;
> +};
> +
> +/* Common test setup. */
> +static void test_init(data_t *data)
> +{
> + igt_display_t *display = &data->display;
> + bool mall_capable = false;
> +
> + /* It doesn't matter which pipe we choose on amdpgu. */
> + data->pipe_id = PIPE_A;
> + data->pipe = &data->display.pipes[data->pipe_id];
> +
> + igt_display_reset(display);
> +
> + mall_capable = igt_amd_is_mall_capable(data->fd);
> + igt_require_f(mall_capable, "Requires hardware that supports MALL cache\n");
> +
> + /* find a connected output */
> + data->output = NULL;
> + for (int i=0; i < data->display.n_outputs; ++i) {
> + drmModeConnector *connector = data->display.outputs[i].config.connector;
> + if (connector->connection == DRM_MODE_CONNECTED) {
> + data->output = &data->display.outputs[i];
> + }
> + }
> + igt_require_f(data->output, "Requires a connected display\n");
> +
> + data->mode = igt_output_get_mode(data->output);
> + igt_assert(data->mode);
> +
> + data->primary =
> + igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
> +
> + data->pipe_crc = igt_pipe_crc_new(data->fd, data->pipe_id,
> + IGT_PIPE_CRC_SOURCE_AUTO);
> +
> + igt_output_set_pipe(data->output, data->pipe_id);
> +
> + data->w = data->mode->hdisplay;
> + data->h = data->mode->vdisplay;
> +}
> +
> +/* Common test cleanup. */
> +static void test_fini(data_t *data)
> +{
> + igt_pipe_crc_free(data->pipe_crc);
> + igt_display_reset(&data->display);
> + igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
> +}
> +
> +static bool check_cmd_output(const char *line, void *data)
> +{
> + struct line_check *check = data;
> +
> + if (strstr(line, check->substr)) {
> + check->found++;
> + }
> +
> + return false;
> +}
> +static void test_mall_ss(data_t *data)
> +{
> + igt_display_t *display = &data->display;
> + igt_fb_t rfb;
> + int exec_ret;
> + struct line_check line = {0};
> +
> + test_init(data);
> +
> + igt_create_pattern_fb(data->fd, data->w, data->h, DRM_FORMAT_XRGB8888, 0, &rfb);
> + igt_plane_set_fb(data->primary, &rfb);
> + igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> +
> + sleep(MALL_SETTLE_DELAY);
> +
> + igt_system_cmd(exec_ret, "umr -O bits -r *.*.HUBP0_HUBP_MALL_STATUS | grep MALL_IN_USE");
> +
> + igt_skip_on_f(exec_ret != IGT_EXIT_SUCCESS, "Error running UMR\n");
> +
> + line.substr = "1 (0x00000001)";
> + igt_log_buffer_inspect(check_cmd_output, &line);
> +
> + igt_assert_eq(line.found, 1);
> +
> + igt_remove_fb(data->fd, &rfb);
> + test_fini(data);
> +}
> +
> +igt_main
> +{
> + data_t data;
> +
> + igt_skip_on_simulation();
> +
> + memset(&data, 0, sizeof(data));
> +
> + igt_fixture
> + {
> + data.fd = drm_open_driver_master(DRIVER_AMDGPU);
> +
> + kmstest_set_vt_graphics_mode();
> +
> + igt_display_require(&data.display, data.fd);
> + igt_require(data.display.is_atomic);
> + igt_display_require_output(&data.display);
> + }
> +
> + igt_describe("Tests whether display scanout is triggered from MALL cache instead "
> + "of GPU VRAM when screen contents are idle");
> + igt_subtest("static-screen") test_mall_ss(&data);
> +
> + igt_fixture
> + {
> + igt_display_fini(&data.display);
> + }
> +}
> diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
> index 336acdb00..6c6166167 100644
> --- a/tests/amdgpu/meson.build
> +++ b/tests/amdgpu/meson.build
> @@ -34,6 +34,7 @@ if libdrm_amdgpu.found()
> 'amd_vcn',
> 'amd_vm',
> 'amd_vrr_range',
> + 'amd_mall',
> ]
> amdgpu_deps += libdrm_amdgpu
> endif
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for series starting with [v3,1/2] lib/amdgpu: Add helper functions to return MALL support
2023-08-08 15:24 [igt-dev] [PATCH v3 1/2] lib/amdgpu: Add helper functions to return MALL support Aurabindo Pillai
` (2 preceding siblings ...)
2023-08-08 20:33 ` [igt-dev] [PATCH v3 1/2] " Alex Hung
@ 2023-08-08 22:20 ` Patchwork
2023-08-09 3:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-08-08 22:20 UTC (permalink / raw)
To: Aurabindo Pillai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 407 bytes --]
== Series Details ==
Series: series starting with [v3,1/2] lib/amdgpu: Add helper functions to return MALL support
URL : https://patchwork.freedesktop.org/series/122164/
State : info
== Summary ==
Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[2]:
bat-dg2-oem2
bat-adlp-7
Results: [IGTPW_9544](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9544/index.html)
[-- Attachment #2: Type: text/html, Size: 935 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [v3,1/2] lib/amdgpu: Add helper functions to return MALL support
2023-08-08 15:24 [igt-dev] [PATCH v3 1/2] lib/amdgpu: Add helper functions to return MALL support Aurabindo Pillai
` (3 preceding siblings ...)
2023-08-08 22:20 ` [igt-dev] ○ CI.xeBAT: info for series starting with [v3,1/2] " Patchwork
@ 2023-08-09 3:41 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-08-09 3:41 UTC (permalink / raw)
To: Aurabindo Pillai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 77788 bytes --]
== Series Details ==
Series: series starting with [v3,1/2] lib/amdgpu: Add helper functions to return MALL support
URL : https://patchwork.freedesktop.org/series/122164/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13492_full -> IGTPW_9544_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9544_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9544_full, please notify your bug team 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_9544/index.html
Participating hosts (11 -> 9)
------------------------------
Missing (2): shard-rkl0 pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9544_full:
### IGT changes ###
#### Possible regressions ####
* igt@sysfs_timeslice_duration@timeout@ccs0:
- shard-dg2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-2/igt@sysfs_timeslice_duration@timeout@ccs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-2/igt@sysfs_timeslice_duration@timeout@ccs0.html
Known issues
------------
Here are the changes found in IGTPW_9544_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-1/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#7456])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#7701])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-4/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#7697]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#5325])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-1/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-14/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@hog-create@smem0:
- shard-snb: [PASS][12] -> [ABORT][13] ([i915#8865])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-snb4/igt@gem_create@hog-create@smem0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-snb7/igt@gem_create@hog-create@smem0.html
* igt@gem_ctx_persistence@engines-hang@vcs0:
- shard-mtlp: [PASS][14] -> [FAIL][15] ([i915#2410])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-7/igt@gem_ctx_persistence@engines-hang@vcs0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-3/igt@gem_ctx_persistence@engines-hang@vcs0.html
* igt@gem_ctx_persistence@legacy-engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#1099]) +2 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-snb5/igt@gem_ctx_persistence@legacy-engines-cleanup.html
* igt@gem_ctx_persistence@saturated-hostile@vecs0:
- shard-mtlp: [PASS][17] -> [FAIL][18] ([i915#7816]) +2 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-6/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][20] ([i915#7975] / [i915#8213])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-5/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][21] ([i915#8898])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-snb5/igt@gem_eio@reset-stress.html
- shard-dg1: [PASS][22] -> [FAIL][23] ([i915#5784])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg1-19/igt@gem_eio@reset-stress.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-6/igt@gem_exec_balancer@bonded-semaphore.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4812])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][26] -> [FAIL][27] ([i915#2846])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-glk4/igt@gem_exec_fair@basic-deadline.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-glk6/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-16/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: NOTRUN -> [FAIL][29] ([i915#2842])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +2 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-10/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +2 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +9 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][37] ([i915#7975] / [i915#8213])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-mtlp: [PASS][38] -> [ABORT][39] ([i915#7392] / [i915#8131])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-forked-all.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +2 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4565])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#8289])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-5/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@bad-offset:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4083]) +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-17/igt@gem_mmap@bad-offset.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4077]) +2 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-16/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4077]) +3 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-2/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4083]) +1 similar issue
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-2/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4083])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-10/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-2/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pread@exhaustion:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3282]) +3 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4270])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-2/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4270]) +2 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4270])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-15/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4270])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-1/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@y-tiled-ccs-to-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#8428]) +2 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html
* igt@gem_tiling_max_stride:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +5 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-8/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3297] / [i915#4880])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3297]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-1/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3281]) +6 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@gem_userptr_blits@relocations.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-dg2: [PASS][60] -> [FAIL][61] ([fdo#103375]) +2 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-6/igt@gem_workarounds@suspend-resume-fd.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][62] ([fdo#109289]) +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-5/igt@gen7_exec_parse@basic-rejected.html
- shard-rkl: NOTRUN -> [SKIP][63] ([fdo#109289]) +1 similar issue
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@gen7_exec_parse@basic-rejected.html
- shard-dg1: NOTRUN -> [SKIP][64] ([fdo#109289]) +1 similar issue
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-17/igt@gen7_exec_parse@basic-rejected.html
* igt@gen7_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][65] ([fdo#109289])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-8/igt@gen7_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@allowed-single:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#2856])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-4/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#2527])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#2856]) +1 similar issue
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@gen9_exec_parse@valid-registers.html
* igt@i915_hangman@engine-engine-error@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][69] ([i915#7069]) +1 similar issue
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-1/igt@i915_hangman@engine-engine-error@vcs0.html
* igt@i915_pm_backlight@basic-brightness:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#5354] / [i915#7561])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#658]) +1 similar issue
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [PASS][72] -> [WARN][73] ([i915#2681])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [PASS][74] -> [FAIL][75] ([i915#3591]) +1 similar issue
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@debugfs-forcewake-user:
- shard-dg1: [PASS][76] -> [FAIL][77] ([i915#7940]) +2 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg1-17/igt@i915_pm_rpm@debugfs-forcewake-user.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-18/igt@i915_pm_rpm@debugfs-forcewake-user.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [PASS][78] -> [SKIP][79] ([i915#1397])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg1-15/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@drm-resources-equal:
- shard-rkl: [PASS][80] -> [FAIL][81] ([i915#7940])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-rkl-4/igt@i915_pm_rpm@drm-resources-equal.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@i915_pm_rpm@drm-resources-equal.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][82] -> [SKIP][83] ([i915#1397])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-3/igt@i915_pm_rpm@modeset-non-lpsp.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
- shard-rkl: [PASS][84] -> [SKIP][85] ([i915#1397])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-rkl: NOTRUN -> [SKIP][86] ([fdo#109506])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rpm@system-suspend:
- shard-dg1: NOTRUN -> [FAIL][87] ([i915#7940])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-15/igt@i915_pm_rpm@system-suspend.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][88] ([fdo#109302])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-10/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [PASS][89] -> [DMESG-FAIL][90] ([i915#7059])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-8/igt@i915_selftest@live@gt_mocs.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4212]) +2 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-1/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4212])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-3/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#8502] / [i915#8709]) +11 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc.html
* igt@kms_async_flips@crc@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [FAIL][94] ([i915#8247]) +3 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][95] ([i915#8561]) +3 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-7/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#1769])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#5286])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][98] -> [FAIL][99] ([i915#5138]) +1 similar issue
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) +2 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#4538] / [i915#5286])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][102] ([fdo#111614])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-7/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][103] -> [DMESG-WARN][104] ([i915#1982] / [i915#2017])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][105] ([fdo#111614])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-8/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#3638])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-16/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#111615]) +3 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][108] ([fdo#111614] / [i915#3638]) +4 similar issues
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6187])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#5190]) +3 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][111] ([fdo#110723]) +4 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538]) +2 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-15/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +3 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111615])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#3689] / [i915#5354]) +8 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#3886] / [i915#6095]) +3 similar issues
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-14/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-1/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#5354] / [i915#6095]) +1 similar issue
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-10/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#5354] / [i915#6095]) +10 similar issues
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-16/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#3689] / [i915#3886] / [i915#5354]) +2 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-3/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +12 similar issues
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#3886]) +2 similar issues
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-apl6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6095]) +7 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-1/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#5354]) +22 similar issues
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3689] / [i915#5354] / [i915#6095]) +2 similar issues
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-15/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#7213]) +3 similar issues
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#3742])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4087]) +3 similar issues
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#7828]) +2 similar issues
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#7828]) +7 similar issues
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828]) +2 similar issues
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#7828]) +3 similar issues
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-18/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#7116])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-17/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content_type_change:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6944])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-7/igt@kms_content_protection@content_type_change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#3299])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3116])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#7118])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#7118]) +1 similar issue
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][141] ([i915#7173]) +1 similar issue
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][142] ([i915#1339])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#3555]) +6 similar issues
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#8814])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#3359])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3546]) +1 similar issue
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#4103] / [i915#4213])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#4103])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#4103] / [i915#4213])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-snb: NOTRUN -> [SKIP][150] ([fdo#109271] / [fdo#111767])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][151] -> [FAIL][152] ([i915#2346])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][153] -> [FAIL][154] ([i915#2346])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#8588])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-3/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#8588])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3955])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#3469])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][161] ([fdo#109274] / [i915#3637])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#8381])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][163] ([fdo#109274]) +3 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][164] ([fdo#111767] / [i915#3637])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3637])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][166] -> [FAIL][167] ([i915#2122])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-glk6/igt@kms_flip@2x-flip-vs-wf_vblank@bc-hdmi-a1-hdmi-a2.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-glk3/igt@kms_flip@2x-flip-vs-wf_vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][168] ([fdo#111825]) +9 similar issues
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
- shard-snb: NOTRUN -> [DMESG-WARN][169] ([i915#8841]) +4 similar issues
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#2672])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#2672]) +4 similar issues
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672]) +2 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#2672]) +1 similar issue
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#5354]) +17 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-apl: NOTRUN -> [SKIP][175] ([fdo#109271]) +40 similar issues
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-apl7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#1825]) +10 similar issues
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][177] ([fdo#109280])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][178] ([fdo#111825] / [i915#1825]) +22 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#8708]) +4 similar issues
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][180] ([fdo#111825]) +8 similar issues
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#8708]) +5 similar issues
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#3458]) +7 similar issues
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8708])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][184] ([fdo#110189])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#3458]) +9 similar issues
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3023]) +18 similar issues
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8228]) +2 similar issues
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][188] ([i915#8292])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][189] ([i915#8292])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#5176]) +7 similar issues
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#5176]) +3 similar issues
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1:
- shard-snb: NOTRUN -> [SKIP][192] ([fdo#109271]) +171 similar issues
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-snb7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html
* igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#5176]) +23 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#5235]) +5 similar issues
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#5235]) +15 similar issues
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#5235]) +3 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg1: NOTRUN -> [SKIP][197] ([fdo#111068] / [i915#658])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#658])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][199] ([fdo#111068] / [i915#658]) +1 similar issue
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#1072]) +4 similar issues
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-8/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_psr@sprite_plane_onoff:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#1072]) +2 similar issues
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#4235])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-5/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#4235])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-rkl: NOTRUN -> [ABORT][204] ([i915#7461] / [i915#8875])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#3555]) +1 similar issue
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-16/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_cmdline:
- shard-snb: NOTRUN -> [SKIP][206] ([fdo#109271] / [i915#8661])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-snb6/igt@kms_selftest@drm_cmdline.html
* igt@kms_selftest@drm_plane:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#8661])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-5/igt@kms_selftest@drm_plane.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#8661])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@kms_selftest@drm_plane.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#8661])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-17/igt@kms_selftest@drm_plane.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#4098])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vblank@pipe-c-query-forked:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#4070] / [i915#6768]) +4 similar issues
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@kms_vblank@pipe-c-query-forked.html
* igt@kms_vblank@pipe-d-ts-continuation-modeset-hang:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#4070] / [i915#533] / [i915#6768]) +3 similar issues
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html
* igt@perf_pmu@frequency@gt0:
- shard-dg1: NOTRUN -> [FAIL][213] ([i915#6806])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#8516])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-8/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#8516])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][216] ([fdo#109295] / [i915#3708])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: [PASS][217] -> [FAIL][218] ([i915#6015]) +3 similar issues
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-8/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-8/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
* igt@v3d/v3d_perfmon@create-two-perfmon:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#2575])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-19/igt@v3d/v3d_perfmon@create-two-perfmon.html
* igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#2575]) +3 similar issues
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-2/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html
* igt@v3d/v3d_submit_csd@multi-and-single-sync:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#2575]) +3 similar issues
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@v3d/v3d_submit_csd@multi-and-single-sync.html
* igt@v3d/v3d_submit_csd@valid-submission:
- shard-rkl: NOTRUN -> [SKIP][222] ([fdo#109315]) +3 similar issues
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@v3d/v3d_submit_csd@valid-submission.html
* igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#7711]) +4 similar issues
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-3/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#7711]) +4 similar issues
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-1/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#7711]) +1 similar issue
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-3/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#7711]) +1 similar issue
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-18/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#2575])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-10/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-close-race:
- shard-dg2: [TIMEOUT][228] -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-2/igt@gem_ctx_exec@basic-close-race.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-6/igt@gem_ctx_exec@basic-close-race.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][230] ([i915#6268]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@legacy-engines-hostile@vebox:
- shard-mtlp: [FAIL][232] ([i915#2410]) -> [PASS][233] +2 similar issues
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][234] ([i915#5784]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-5/igt@gem_eio@reset-stress.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-2/igt@gem_eio@reset-stress.html
* igt@gem_exec_await@wide-contexts:
- shard-dg2: [TIMEOUT][236] ([i915#5892]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-2/igt@gem_exec_await@wide-contexts.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-2/igt@gem_exec_await@wide-contexts.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [FAIL][238] ([i915#4475]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-3/igt@gem_exec_capture@pi@vcs0.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-5/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][240] ([i915#2846]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][242] ([i915#2842]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: [ABORT][244] ([i915#7975] / [i915#8213]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [DMESG-WARN][246] ([i915#4936] / [i915#5493]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gen9_exec_parse@allowed-all:
- shard-apl: [ABORT][248] ([i915#5566]) -> [PASS][249] +1 similar issue
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-apl4/igt@gen9_exec_parse@allowed-all.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-apl2/igt@gen9_exec_parse@allowed-all.html
* igt@i915_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][250] ([i915#3989] / [i915#454]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-tglu-7/igt@i915_pm_dc@dc6-dpms.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][252] ([fdo#109271]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- shard-tglu: [FAIL][254] ([i915#7940]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-tglu-2/igt@i915_pm_rpm@basic-pci-d3-state.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-10/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][256] ([i915#1397]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-2/igt@i915_pm_rpm@modeset-lpsp-stress.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][258] ([i915#1397]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][260] ([i915#6763]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-8/igt@i915_selftest@live@workarounds.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: [FAIL][262] ([i915#3743]) -> [PASS][263] +1 similar issue
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1:
- shard-glk: [FAIL][264] ([i915#79]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-glk4/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
- shard-dg2: [FAIL][266] ([i915#6880]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-rkl: [ABORT][268] ([i915#8178] / [i915#8875]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-rkl-1/igt@kms_rotation_crc@sprite-rotation-90.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_vblank@pipe-c-ts-continuation-suspend:
- shard-dg2: [FAIL][270] ([fdo#103375]) -> [PASS][271] +3 similar issues
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-11/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-11/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
* igt@kms_vblank@pipe-c-wait-forked-busy-hang:
- shard-mtlp: [DMESG-WARN][272] ([i915#2017]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-7/igt@kms_vblank@pipe-c-wait-forked-busy-hang.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-3/igt@kms_vblank@pipe-c-wait-forked-busy-hang.html
* igt@perf_pmu@busy-idle@vcs0:
- shard-dg2: [FAIL][274] ([i915#4349]) -> [PASS][275] +10 similar issues
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-2/igt@perf_pmu@busy-idle@vcs0.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-2/igt@perf_pmu@busy-idle@vcs0.html
- shard-dg1: [FAIL][276] ([i915#4349]) -> [PASS][277] +1 similar issue
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg1-16/igt@perf_pmu@busy-idle@vcs0.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-16/igt@perf_pmu@busy-idle@vcs0.html
- shard-mtlp: [FAIL][278] ([i915#4349]) -> [PASS][279] +3 similar issues
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-7/igt@perf_pmu@busy-idle@vcs0.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-2/igt@perf_pmu@busy-idle@vcs0.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-tglu: [WARN][280] ([i915#2681]) -> [FAIL][281] ([i915#2681] / [i915#3591])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [FAIL][282] ([i915#7940]) -> [SKIP][283] ([i915#1397])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg1-16/igt@i915_pm_rpm@modeset-lpsp-stress.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-snb: [DMESG-WARN][284] ([i915#8841]) -> [INCOMPLETE][285] ([i915#4528] / [i915#4817])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-snb6/igt@i915_suspend@basic-s3-without-i915.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-snb6/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_joiner@2x-modeset:
- shard-dg2: [TIMEOUT][286] -> [SKIP][287] ([i915#2705])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-2/igt@kms_big_joiner@2x-modeset.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-8/igt@kms_big_joiner@2x-modeset.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][288] ([i915#7118] / [i915#7162]) -> [SKIP][289] ([i915#7118])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg2-11/igt@kms_content_protection@type1.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg2-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-mtlp: [DMESG-FAIL][290] ([i915#2017] / [i915#5954]) -> [FAIL][291] ([i915#2346])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-mtlp-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][292] ([i915#3955]) -> [SKIP][293] ([fdo#110189] / [i915#3955])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@flip-vs-suspend@a-vga1:
- shard-snb: [DMESG-FAIL][294] ([fdo#103375]) -> [DMESG-WARN][295] ([i915#8841])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-snb7/igt@kms_flip@flip-vs-suspend@a-vga1.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-snb2/igt@kms_flip@flip-vs-suspend@a-vga1.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][296] ([i915#4816]) -> [SKIP][297] ([i915#4070] / [i915#4816])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][298] ([i915#1072]) -> [SKIP][299] ([i915#1072] / [i915#4078]) +1 similar issue
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13492/shard-dg1-17/igt@kms_psr@cursor_plane_move.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/shard-dg1-16/igt@kms_psr@cursor_plane_move.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[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#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#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
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#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#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[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#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[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#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[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#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[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#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131
[i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178
[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#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#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7422 -> IGTPW_9544
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13492: 525b387a224ced0a360fcbf92794392999de7208 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9544: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/index.html
IGT_7422: a7b9e93b67f02d17b99f9331fdcda14e21172c8c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9544/index.html
[-- Attachment #2: Type: text/html, Size: 94222 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-08-09 3:41 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-08 15:24 [igt-dev] [PATCH v3 1/2] lib/amdgpu: Add helper functions to return MALL support Aurabindo Pillai
2023-08-08 15:24 ` [igt-dev] [PATCH v3 2/2] tests/amdgpu: Add test for MALL static screen cache scanout Aurabindo Pillai
2023-08-08 20:34 ` Alex Hung
2023-08-08 17:42 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [v3,1/2] lib/amdgpu: Add helper functions to return MALL support Patchwork
2023-08-08 20:33 ` [igt-dev] [PATCH v3 1/2] " Alex Hung
2023-08-08 22:20 ` [igt-dev] ○ CI.xeBAT: info for series starting with [v3,1/2] " Patchwork
2023-08-09 3:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox