* [PATCH i-g-t,v2] tests/amdgpu/amd_replay: Add amd_replay IGT test
@ 2024-05-10 3:01 Tom Chung
2024-05-10 3:28 ` ✓ CI.xeBAT: success for tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2) Patchwork
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Tom Chung @ 2024-05-10 3:01 UTC (permalink / raw)
To: igt-dev; +Cc: Rodrigo.Siqueira, alex.hung, sunpeng.li, chiahsuan.chung
[why]
Add a basic IGT test for panel replay feature.
[how]
Subtest case
a. static screen
1. Check if system support panel replay.
2. Start video flip for a while.
3. Stop video flip and wait for a while.
4. Check if replay state is in Replay mode.
b. Live mode (intermittent)
1. Check if system support panel replay.
2. Start video flip for a while.
3. Check if replay state is in Live mode.
4. Stop video flip and wait for a while.
5. Check if replay state is in Replay mode.
6. Repaet 2 to 5.
c. Live mode (constant)
1. Check if system support panel replay.
2. Start video flip for a while.
3. Check if replay state is in Live mode.
Cc: Leo Li <sunpeng.li@amd.com>
Signed-off-by: Tom Chung <chiahsuan.chung@amd.com>
---
v2: Modify the include header files in tests/amdgpu/amd_replay.c
lib/igt_amd.c | 102 ++++++++++++
lib/igt_amd.h | 39 ++++-
tests/amdgpu/amd_replay.c | 318 ++++++++++++++++++++++++++++++++++++++
tests/amdgpu/meson.build | 1 +
4 files changed, 459 insertions(+), 1 deletion(-)
create mode 100755 tests/amdgpu/amd_replay.c
diff --git a/lib/igt_amd.c b/lib/igt_amd.c
index 149af5151..8bc6fdc6a 100644
--- a/lib/igt_amd.c
+++ b/lib/igt_amd.c
@@ -1014,6 +1014,108 @@ bool igt_amd_output_has_ilr_setting(int drm_fd, char *connector_name)
return igt_amd_output_has_debugfs(drm_fd, connector_name, DEBUGFS_EDP_ILR_SETTING);
}
+/**
+ * igt_amd_output_has_replay_cap: check if eDP connector has replay_capability debugfs entry
+ * @drm_fd: DRM file descriptor
+ * @connector_name: The connector's name, on which we're reading the status
+ */
+bool igt_amd_output_has_replay_cap(int drm_fd, char *connector_name)
+{
+ return igt_amd_output_has_debugfs(drm_fd, connector_name, DEBUGFS_EDP_REPLAY_CAP);
+}
+
+/**
+ * igt_amd_replay_support_sink: check if sink device support Panel Replay
+ * @drm_fd: DRM file descriptor
+ * @connector_name: The connector's name, on which we're reading the status
+ */
+bool igt_amd_replay_support_sink(int drm_fd, char *connector_name)
+{
+ char buf[128];
+ int ret;
+ int fd;
+
+ fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
+ if (fd < 0) {
+ igt_info("output %s: debugfs not found\n", connector_name);
+ return false;
+ }
+
+ ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_CAP, buf, sizeof(buf));
+ igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
+ DEBUGFS_EDP_REPLAY_CAP, connector_name);
+ close(fd);
+
+ if (ret < 1)
+ return false;
+
+ return strstr(buf, "Sink support: yes");
+}
+
+/**
+ * igt_amd_replay_support_drv: check if driver support Panel Replay
+ * @drm_fd: DRM file descriptor
+ * @connector_name: The connector's name, on which we're reading the status
+ */
+bool igt_amd_replay_support_drv(int drm_fd, char *connector_name)
+{
+ char buf[128];
+ int ret;
+ int fd;
+
+ fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
+ if (fd < 0) {
+ igt_info("output %s: debugfs not found\n", connector_name);
+ return false;
+ }
+
+ ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_CAP, buf, sizeof(buf));
+ igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
+ DEBUGFS_EDP_REPLAY_CAP, connector_name);
+ close(fd);
+
+ if (ret < 1)
+ return false;
+
+ return strstr(buf, "Driver support: yes");
+}
+
+/**
+ * igt_amd_output_has_replay_state: check if eDP connector has replay_state debugfs entry
+ * @drm_fd: DRM file descriptor
+ * @connector_name: The connector's name, on which we're reading the status
+ */
+bool igt_amd_output_has_replay_state(int drm_fd, char *connector_name)
+{
+ return igt_amd_output_has_debugfs(drm_fd, connector_name, DEBUGFS_EDP_REPLAY_STATE);
+}
+
+/**
+ * @brief Read Panel Replay State from debugfs interface
+ * @param drm_fd DRM file descriptor
+ * @param connector_name The connector's name, on which we're reading the status
+ * @return Panel Replay state as integer
+ */
+int igt_amd_read_replay_state(int drm_fd, char *connector_name)
+{
+ char buf[4];
+ int fd, ret;
+
+ fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
+ if (fd < 0) {
+ igt_info("Couldn't open connector %s debugfs directory\n", connector_name);
+ return -1;
+ }
+
+ ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_STATE, buf, sizeof(buf));
+ close(fd);
+
+ igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
+ DEBUGFS_EDP_REPLAY_STATE, connector_name);
+
+ return strtol(buf, NULL, 10);
+}
+
/**
* igt_amd_output_has_psr_cap: check if eDP connector has psr_capability debugfs entry
* @drm_fd: DRM file descriptor
diff --git a/lib/igt_amd.h b/lib/igt_amd.h
index 6780b99de..a41b423b7 100644
--- a/lib/igt_amd.h
+++ b/lib/igt_amd.h
@@ -47,6 +47,8 @@
#define DEBUGFS_EDP_ILR_SETTING "ilr_setting"
#define MAX_SUPPORTED_ILR 8
#define MULTIPLIER_TO_LR 270000
+#define DEBUGFS_EDP_REPLAY_CAP "replay_capability"
+#define DEBUGFS_EDP_REPLAY_STATE "replay_state"
#define DEBUGFS_EDP_PSR_CAP "psr_capability"
#define DEBUGFS_EDP_PSR_STATE "psr_state"
#define DEBUGFS_ALLOW_EDP_HOTPLUG_DETECT "allow_edp_hotplug_detection"
@@ -100,6 +102,35 @@ enum dc_link_training_type {
LINK_TRAINING_NO_PATTERN
};
+/*
+ * enumeration of REPLAY STATE below should be aligned to the upstreamed
+ * amdgpu kernel driver 'enum replay_state' in dmub_cmd.h
+ */
+enum replay_state {
+ REPLAY_STATE_0 = 0x0,
+ REPLAY_STATE_1 = 0x10,
+ REPLAY_STATE_1A = 0x11,
+ REPLAY_STATE_2 = 0x20,
+ REPLAY_STATE_3 = 0x30,
+ REPLAY_STATE_3INIT = 0x31,
+ REPLAY_STATE_4 = 0x40,
+ REPLAY_STATE_4A = 0x41,
+ REPLAY_STATE_4B = 0x42,
+ REPLAY_STATE_4C = 0x43,
+ REPLAY_STATE_4D = 0x44,
+ REPLAY_STATE_4B_LOCKED = 0x4A,
+ REPLAY_STATE_4C_UNLOCKED = 0x4B,
+ REPLAY_STATE_5 = 0x50,
+ REPLAY_STATE_5A = 0x51,
+ REPLAY_STATE_5B = 0x52,
+ REPLAY_STATE_5A_LOCKED = 0x5A,
+ REPLAY_STATE_5B_UNLOCKED = 0x5B,
+ REPLAY_STATE_6 = 0x60,
+ REPLAY_STATE_6A = 0x61,
+ REPLAY_STATE_6B = 0x62,
+ REPLAY_STATE_INVALID = 0xFF
+};
+
/*
* enumeration of PSR STATE below should be aligned to the upstreamed
* amdgpu kernel driver 'enum dc_psr_state' in dc_type.h
@@ -135,7 +166,8 @@ enum amdgpu_debug_visual_confirm {
VISUAL_CONFIRM_HDR = 2,
VISUAL_CONFIRM_MPCTREE = 4,
VISUAL_CONFIRM_PSR = 5,
- VISUAL_CONFIRM_SWIZZLE = 9
+ VISUAL_CONFIRM_SWIZZLE = 9,
+ VISUAL_CONFIRM_REPLAY = 12
};
uint32_t igt_amd_create_bo(int fd, uint64_t size);
@@ -189,6 +221,11 @@ void igt_amd_write_ilr_setting(
int drm_fd, char *connector_name, enum dc_lane_count lane_count,
uint8_t link_rate_set);
bool igt_amd_output_has_ilr_setting(int drm_fd, char *connector_name);
+bool igt_amd_output_has_replay_cap(int drm_fd, char *connector_name);
+bool igt_amd_replay_support_sink(int drm_fd, char *connector_name);
+bool igt_amd_replay_support_drv(int drm_fd, char *connector_name);
+bool igt_amd_output_has_replay_state(int drm_fd, char *connector_name);
+int igt_amd_read_replay_state(int drm_fd, char *connector_name);
bool igt_amd_output_has_psr_cap(int drm_fd, char *connector_name);
bool igt_amd_psr_support_sink(int drm_fd, char *connector_name, enum psr_mode mode);
bool igt_amd_psr_support_drv(int drm_fd, char *connector_name, enum psr_mode mode);
diff --git a/tests/amdgpu/amd_replay.c b/tests/amdgpu/amd_replay.c
new file mode 100755
index 000000000..f96d856f8
--- /dev/null
+++ b/tests/amdgpu/amd_replay.c
@@ -0,0 +1,318 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright 2024 Advanced Micro Devices, Inc.
+ */
+
+#include "igt_amd.h"
+
+/* hardware requirements:
+ * eDP panel that supports Panel Replay
+ */
+IGT_TEST_DESCRIPTION("Basic test for enabling Panel Replay for eDP displays");
+
+#define REPLAY_SETTLE_DELAY 10
+
+/* Common test data. */
+struct test_data {
+ igt_display_t display;
+ igt_plane_t *primary;
+ igt_output_t *output;
+ igt_pipe_t *pipe;
+ drmModeModeInfo *mode;
+ enum pipe pipe_id;
+ int fd;
+ int debugfs_fd;
+ int w, h;
+};
+
+struct {
+ bool visual_confirm;
+} opt = {
+ .visual_confirm = false, /* visual confirm debug option */
+};
+
+const char *help_str =
+" --visual-confirm Panel Replay visual confirm debug option enable\n";
+
+struct option long_options[] = {
+ {"visual-confirm", required_argument, NULL, 'v'},
+ { 0, 0, 0, 0 }
+};
+
+enum test_mode {
+ TEST_MODE_STATIC_SCREEN = 0,
+ TEST_MODE_INTERMITTENT_LIVE,
+ TEST_MODE_CONSTANT_LIVE,
+ TEST_MODE_COUNT
+};
+
+/* Common test setup. */
+static void test_init(struct test_data *data)
+{
+ igt_display_t *display = &data->display;
+
+ /* 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);
+
+ data->output = igt_get_single_output_for_pipe(display, data->pipe_id);
+ igt_require(data->output);
+ igt_info("output %s\n", data->output->name);
+
+ data->mode = igt_output_get_mode(data->output);
+ igt_assert(data->mode);
+ kmstest_dump_mode(data->mode);
+
+ data->primary =
+ igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_output_set_pipe(data->output, data->pipe_id);
+
+ data->w = data->mode->hdisplay;
+ data->h = data->mode->vdisplay;
+
+ if (opt.visual_confirm) {
+ /**
+ * if visual confirm option is enabled, we'd trigger a full modeset before test run
+ * to have Panel Replay visual confirm enable take effect. DPMS off -> ON transition
+ * is one of many approaches.
+ */
+ kmstest_set_connector_dpms(data->fd, data->output->config.connector,
+ DRM_MODE_DPMS_OFF);
+ kmstest_set_connector_dpms(data->fd, data->output->config.connector,
+ DRM_MODE_DPMS_ON);
+ }
+}
+
+/* Common test cleanup. */
+static void test_fini(struct test_data *data)
+{
+ igt_display_t *display = &data->display;
+
+ igt_display_reset(display);
+ igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
+}
+
+static int check_conn_type(struct test_data *data, uint32_t type)
+{
+ int i;
+
+ for (i = 0; i < data->display.n_outputs; i++) {
+ uint32_t conn_type = data->display.outputs[i].config.connector->connector_type;
+
+ if (conn_type == type)
+ return i;
+ }
+
+ return -1;
+}
+
+static bool replay_mode_supported(struct test_data *data)
+{
+ /* run Panel Replay test if eDP panel support Panel Replay */
+ if (!igt_amd_output_has_replay_cap(data->fd, data->output->name)) {
+ igt_warn(" driver does not have %s debugfs interface\n", DEBUGFS_EDP_REPLAY_CAP);
+ return false;
+ }
+
+ if (!igt_amd_output_has_replay_state(data->fd, data->output->name)) {
+ igt_warn(" driver does not have %s debugfs interface\n", DEBUGFS_EDP_REPLAY_STATE);
+ return false;
+ }
+
+ if (!igt_amd_replay_support_sink(data->fd, data->output->name)) {
+ igt_warn(" output %s not support Panel Replay mode\n", data->output->name);
+ return false;
+ }
+
+ if (!igt_amd_replay_support_drv(data->fd, data->output->name)) {
+ igt_warn(" kernel driver not support Panel Replay mode\n");
+ return false;
+ }
+
+ return true;
+}
+
+static void run_check_replay(struct test_data *data, enum test_mode test_mode)
+{
+ int edp_idx, ret, frame_count, replay_state;
+ igt_fb_t ref_fb, ref_fb2;
+ igt_fb_t *flip_fb;
+ igt_output_t *output;
+
+ test_init(data);
+
+ edp_idx = check_conn_type(data, DRM_MODE_CONNECTOR_eDP);
+ igt_skip_on_f(edp_idx == -1, "no eDP connector found\n");
+
+ /* check if eDP support Panel Replay. */
+ igt_skip_on(!replay_mode_supported(data));
+
+ for_each_connected_output(&data->display, output) {
+ if (output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP)
+ continue;
+
+ igt_create_color_fb(data->fd, data->mode->hdisplay,
+ data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.6,
+ 0.6, 0.6, &ref_fb);
+ igt_create_color_fb(data->fd, data->mode->hdisplay,
+ data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.0,
+ 0.4, 0.14, &ref_fb2);
+
+ igt_plane_set_fb(data->primary, &ref_fb);
+ igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
+ flip_fb = &ref_fb;
+ drmModePageFlip(data->fd, output->config.crtc->crtc_id,
+ flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
+ kmstest_wait_for_pageflip(data->fd);
+
+ /* Panel Replay state takes some time to settle its value on static screen */
+ sleep(REPLAY_SETTLE_DELAY);
+
+ /* Check Panel Replay state */
+ replay_state = igt_amd_read_replay_state(data->fd, output->name);
+ igt_debug("replay_state static mode before flip = 0x%X\n", replay_state);
+ igt_fail_on_f(replay_state < 0, "Open Panel Replay state debugfs failed\n");
+ igt_fail_on_f(replay_state < REPLAY_STATE_2,
+ "Panel Replay was not enabled for connector %s\n", output->name);
+
+ /* Do some page flip and let the replay go into live mode */
+ for (frame_count = 0; frame_count <= 20; frame_count++) {
+ ret = drmModePageFlip(data->fd, output->config.crtc->crtc_id,
+ flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
+ igt_require(ret == 0);
+ kmstest_wait_for_pageflip(data->fd);
+
+ if (test_mode == (TEST_MODE_CONSTANT_LIVE || TEST_MODE_INTERMITTENT_LIVE)
+ && frame_count > 5) {
+ /* Panel Replay state needs few frame to enter the live mode */
+ replay_state = igt_amd_read_replay_state(data->fd, output->name);
+ igt_debug("replay_state live mode = 0x%X\n", replay_state);
+ igt_fail_on_f(replay_state < REPLAY_STATE_4 && replay_state >= REPLAY_STATE_5,
+ "State should be REPLAY_STATE_4 (Active with single frame update)\n");
+ }
+
+ if (frame_count % 2 == 0)
+ flip_fb = &ref_fb2;
+ else
+ flip_fb = &ref_fb;
+ }
+
+ /* Check Panel Replay state in static screen */
+ if (test_mode == TEST_MODE_STATIC_SCREEN || TEST_MODE_INTERMITTENT_LIVE) {
+ /* Panel Replay state takes some time to settle its value on static screen */
+ sleep(1);
+
+ replay_state = igt_amd_read_replay_state(data->fd, output->name);
+ igt_debug("replay_state static mode = 0x%X\n", replay_state);
+ igt_fail_on_f(replay_state < REPLAY_STATE_3 && replay_state >= REPLAY_STATE_4,
+ "State should be REPLAY_STATE_3 (Active)\n");
+ }
+
+ /* Do another page flip if we do the replay_intermittent_live test */
+ if (test_mode == TEST_MODE_INTERMITTENT_LIVE) {
+ for (frame_count = 0; frame_count <= 30; frame_count++) {
+ ret = drmModePageFlip(data->fd, output->config.crtc->crtc_id,
+ flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
+ igt_require(ret == 0);
+ kmstest_wait_for_pageflip(data->fd);
+
+ if (frame_count > 5) {
+ /* Needs few frames to let state enter the live mode */
+ replay_state = igt_amd_read_replay_state(data->fd, output->name);
+ igt_debug("replay_state TEST_MODE_INTERMITTENT_LIVE during flip = 0x%X\n",
+ replay_state);
+ igt_fail_on_f(replay_state < REPLAY_STATE_4 && replay_state >= REPLAY_STATE_5,
+ "State should be REPLAY_STATE_4 (Active with single frame update)\n");
+ }
+
+ if (frame_count % 2 == 0)
+ flip_fb = &ref_fb2;
+ else
+ flip_fb = &ref_fb;
+ }
+
+ /* Panel Replay state takes some time to settle its value on static screen */
+ sleep(1);
+
+ replay_state = igt_amd_read_replay_state(data->fd, output->name);
+ igt_debug("replay_state TEST_MODE_INTERMITTENT_LIVE after flip = 0x%X\n",
+ replay_state);
+ igt_fail_on_f(replay_state < REPLAY_STATE_3 && replay_state >= REPLAY_STATE_4,
+ "State should be REPLAY_STATE_3 (Active)\n");
+ }
+
+ igt_remove_fb(data->fd, &ref_fb);
+ igt_remove_fb(data->fd, &ref_fb2);
+ }
+
+ test_fini(data);
+}
+
+static int opt_handler(int option, int option_index, void *data)
+{
+ switch (option) {
+ case 'v':
+ opt.visual_confirm = strtol(optarg, NULL, 0);
+ igt_info("Panel Replay Visual Confirm %s\n", opt.visual_confirm ? "enabled" : "disabled");
+ break;
+ default:
+ return IGT_OPT_HANDLER_ERROR;
+ }
+
+ return IGT_OPT_HANDLER_SUCCESS;
+}
+
+igt_main_args("", long_options, help_str, opt_handler, NULL)
+{
+ struct test_data data;
+
+ igt_skip_on_simulation();
+ memset(&data, 0, sizeof(data));
+
+ igt_fixture
+ {
+ data.fd = drm_open_driver_master(DRIVER_AMDGPU);
+
+ if (data.fd == -1)
+ igt_skip("Not an amdgpu driver.\n");
+
+ data.debugfs_fd = igt_debugfs_dir(data.fd);
+
+ kmstest_set_vt_graphics_mode();
+
+ igt_display_require(&data.display, data.fd);
+ igt_require(&data.display.is_atomic);
+ igt_display_require_output(&data.display);
+
+ /* check if visual confirm option available */
+ if (opt.visual_confirm) {
+ igt_skip_on(!igt_amd_has_visual_confirm(data.fd));
+ igt_skip_on_f(!igt_amd_set_visual_confirm(data.fd, VISUAL_CONFIRM_REPLAY),
+ "set Panel Replay visual confirm failed\n");
+ }
+ }
+
+ igt_describe("Test whether Panel Replay can be enabled with static screen");
+ igt_subtest("replay_static_screen") run_check_replay(&data, TEST_MODE_STATIC_SCREEN);
+
+ igt_describe("Test whether Panel Replay can be enabled with intermittent live mdoe");
+ igt_subtest("replay_intermittent_live") run_check_replay(&data, TEST_MODE_INTERMITTENT_LIVE);
+
+ igt_describe("Test whether Panel Replay can be enabled with constant live mdoe");
+ igt_subtest("replay_constant_live") run_check_replay(&data, TEST_MODE_CONSTANT_LIVE);
+
+ igt_fixture
+ {
+ if (opt.visual_confirm) {
+ igt_skip_on(!igt_amd_has_visual_confirm(data.fd));
+ igt_require_f(igt_amd_set_visual_confirm(data.fd, VISUAL_CONFIRM_DISABLE),
+ "reset Panel Replay visual confirm failed\n");
+ }
+ close(data.debugfs_fd);
+ igt_display_fini(&data.display);
+ drm_close_driver(data.fd);
+ }
+}
diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
index 3982a665f..69706fa70 100644
--- a/tests/amdgpu/meson.build
+++ b/tests/amdgpu/meson.build
@@ -30,6 +30,7 @@ if libdrm_amdgpu.found()
'amd_prime',
'amd_psr',
'amd_ras',
+ 'amd_replay',
'amd_security',
'amd_uvd_dec',
'amd_uvd_enc',
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2)
2024-05-10 3:01 [PATCH i-g-t,v2] tests/amdgpu/amd_replay: Add amd_replay IGT test Tom Chung
@ 2024-05-10 3:28 ` Patchwork
2024-05-10 3:37 ` ✓ Fi.CI.BAT: " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-05-10 3:28 UTC (permalink / raw)
To: Tom Chung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1396 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2)
URL : https://patchwork.freedesktop.org/series/133166/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7846_BAT -> XEIGTPW_11124_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11124_BAT that come from known issues:
### IGT changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
Build changes
-------------
* IGT: IGT_7846 -> IGTPW_11124
* Linux: xe-1263-92f877dd46245e4a44b6d24b5e303b8c03c40c75 -> xe-1269-36ee5b2bd4d6b47d9f4161c1e45a0e611efd5a49
IGTPW_11124: 11124
IGT_7846: 4a5fd4e7cb2798636f6464e2bd61399f3242b322 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1263-92f877dd46245e4a44b6d24b5e303b8c03c40c75: 92f877dd46245e4a44b6d24b5e303b8c03c40c75
xe-1269-36ee5b2bd4d6b47d9f4161c1e45a0e611efd5a49: 36ee5b2bd4d6b47d9f4161c1e45a0e611efd5a49
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/index.html
[-- Attachment #2: Type: text/html, Size: 1884 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2)
2024-05-10 3:01 [PATCH i-g-t,v2] tests/amdgpu/amd_replay: Add amd_replay IGT test Tom Chung
2024-05-10 3:28 ` ✓ CI.xeBAT: success for tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2) Patchwork
@ 2024-05-10 3:37 ` Patchwork
2024-05-10 5:39 ` ✗ CI.xeFULL: failure " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-05-10 3:37 UTC (permalink / raw)
To: Tom Chung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8079 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2)
URL : https://patchwork.freedesktop.org/series/133166/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14743 -> IGTPW_11124
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/index.html
Participating hosts (39 -> 38)
------------------------------
Additional (3): bat-dg1-7 fi-kbl-8809g fi-bsw-n3050
Missing (4): fi-kbl-7567u bat-mtlp-9 fi-snb-2520m fi-elk-e7500
Known issues
------------
Here are the changes found in IGTPW_11124 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-8809g: NOTRUN -> [SKIP][1] ([i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-8809g: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@random-engines:
- fi-bsw-n3050: NOTRUN -> [SKIP][3] +19 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap@basic:
- bat-dg1-7: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg1-7: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg1-7: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#4212]) +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][9] ([i915#4215])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][10] ([i915#4103] / [i915#4213]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg1-7: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-kbl-8809g: NOTRUN -> [SKIP][12] +30 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg1-7: NOTRUN -> [SKIP][13]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: NOTRUN -> [SKIP][14] ([i915#433])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg1-7: NOTRUN -> [SKIP][15] ([i915#5354])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg1-7: NOTRUN -> [SKIP][16] ([i915#1072] / [i915#9732]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg1-7: NOTRUN -> [SKIP][17] ([i915#3555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#3708]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg1-7: NOTRUN -> [SKIP][19] ([i915#3708] / [i915#4077]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
#### Possible fixes ####
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-11: [FAIL][20] ([i915#10378]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [ABORT][22] ([i915#10800]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/fi-bsw-nick/igt@i915_selftest@live@execlists.html
* igt@i915_selftest@live@gt_engines:
- bat-adls-6: [TIMEOUT][24] ([i915#10026] / [i915#10134]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/bat-adls-6/igt@i915_selftest@live@gt_engines.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/bat-adls-6/igt@i915_selftest@live@gt_engines.html
[i915#10026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10026
[i915#10134]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10134
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10800]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10800
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7846 -> IGTPW_11124
CI-20190529: 20190529
CI_DRM_14743: 36ee5b2bd4d6b47d9f4161c1e45a0e611efd5a49 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11124: 11124
IGT_7846: 4a5fd4e7cb2798636f6464e2bd61399f3242b322 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/index.html
[-- Attachment #2: Type: text/html, Size: 9440 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2)
2024-05-10 3:01 [PATCH i-g-t,v2] tests/amdgpu/amd_replay: Add amd_replay IGT test Tom Chung
2024-05-10 3:28 ` ✓ CI.xeBAT: success for tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2) Patchwork
2024-05-10 3:37 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-05-10 5:39 ` Patchwork
2024-05-10 23:24 ` ✗ Fi.CI.IGT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-05-10 5:39 UTC (permalink / raw)
To: Tom Chung; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 33130 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2)
URL : https://patchwork.freedesktop.org/series/133166/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7846_full -> XEIGTPW_11124_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11124_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11124_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (3 -> 1)
------------------------------
ERROR: It appears as if the changes made in XEIGTPW_11124_full prevented too many machines from booting.
Missing (2): shard-adlp shard-lnl
Known issues
------------
Here are the changes found in XEIGTPW_11124_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@bad-pitch-0:
- shard-dg2-set2: [PASS][1] -> [SKIP][2] ([Intel XE#1201] / [i915#6077])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-466/igt@kms_addfb_basic@bad-pitch-0.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_addfb_basic@bad-pitch-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [PASS][3] -> [SKIP][4] ([Intel XE#1201] / [Intel XE#829]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-433/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1124] / [Intel XE#1201])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1201] / [Intel XE#787]) +56 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-7:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +16 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-7.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][9] ([Intel XE#650]) +7 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-7:
- shard-dg2-set2: NOTRUN -> [FAIL][10] ([Intel XE#616]) +4 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-7.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#1252])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#1201] / [Intel XE#1235])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-434/igt@kms_cdclk@mode-transition.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_cdclk@mode-transition.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][14] ([Intel XE#1178])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-433/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#308])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_edge_walk@64x64-left-edge:
- shard-dg2-set2: [PASS][16] -> [FAIL][17] ([Intel XE#581])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-435/igt@kms_cursor_edge_walk@64x64-left-edge.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_cursor_edge_walk@64x64-left-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2-set2: [PASS][18] -> [DMESG-WARN][19] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@forked-move@pipe-b:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][20] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-433/igt@kms_cursor_legacy@forked-move@pipe-b.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
- shard-dg2-set2: [PASS][21] -> [DMESG-WARN][22] ([Intel XE#1162] / [Intel XE#1214]) +3 other tests dmesg-warn
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2-set2: [PASS][24] -> [SKIP][25] ([Intel XE#1201]) +16 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#651]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#653]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][28] ([Intel XE#1162] / [Intel XE#1214])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][29] ([Intel XE#1162]) +1 other test dmesg-fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-466/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [PASS][30] -> [FAIL][31] ([Intel XE#616]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_multiple@tiling-none:
- shard-dg2-set2: [PASS][32] -> [INCOMPLETE][33] ([Intel XE#1195]) +1 other test incomplete
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-435/igt@kms_plane_multiple@tiling-none.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-463/igt@kms_plane_multiple@tiling-none.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#1201] / [Intel XE#455]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2-set2: [PASS][37] -> [SKIP][38] ([Intel XE#1201] / [Intel XE#1234])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-466/igt@kms_pm_rpm@dpms-lpsp.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#929])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [PASS][40] -> [TIMEOUT][41] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-464/igt@xe_evict@evict-mixed-threads-large.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#288])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-dg2-set2: [PASS][43] -> [SKIP][44] ([Intel XE#1192] / [Intel XE#1201])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-435/igt@xe_live_ktest@xe_dma_buf.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-436/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#366])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-463/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#944])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@xe_query@multigpu-query-cs-cycles.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][47] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][48] +5 other tests pass
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-464/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][49] ([Intel XE#1201]) -> [PASS][50] +3 other tests pass
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][51] ([Intel XE#361]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_pm_rpm@i2c:
- shard-dg2-set2: [FAIL][53] ([Intel XE#1787]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-464/igt@kms_pm_rpm@i2c.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@kms_pm_rpm@i2c.html
* igt@kms_universal_plane@disable-primary-vs-flip:
- shard-dg2-set2: [SKIP][55] ([Intel XE#1201] / [Intel XE#829]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_universal_plane@disable-primary-vs-flip.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@kms_universal_plane@disable-primary-vs-flip.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][57] ([Intel XE#1600]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][59] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [DMESG-WARN][61] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][62] +6 other tests pass
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-464/igt@xe_module_load@reload.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@xe_module_load@reload.html
#### Warnings ####
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: [SKIP][63] ([Intel XE#1201] / [Intel XE#873]) -> [SKIP][64] ([Intel XE#1201])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-463/igt@kms_async_flips@invalid-async-flip.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][65] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][66] ([Intel XE#1201] / [Intel XE#829]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-466/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: [SKIP][67] ([Intel XE#1201]) -> [SKIP][68] ([Intel XE#1201] / [Intel XE#367])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [SKIP][69] ([Intel XE#1201] / [Intel XE#829]) -> [FAIL][70] ([Intel XE#650])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][71] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][72] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][73] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][74] ([Intel XE#1201] / [Intel XE#829]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_chamelium_hpd@common-hpd-after-hibernate:
- shard-dg2-set2: [SKIP][75] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][76] ([Intel XE#1201]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-466/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg2-set2: [SKIP][77] ([Intel XE#1201]) -> [SKIP][78] ([Intel XE#1201] / [Intel XE#373])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: [SKIP][79] ([Intel XE#1201] / [Intel XE#455]) -> [FAIL][80] ([Intel XE#1178])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-464/igt@kms_content_protection@atomic.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-433/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][81] ([Intel XE#1201]) -> [SKIP][82] ([Intel XE#1201] / [Intel XE#307])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: [FAIL][83] ([Intel XE#1178]) -> [SKIP][84] ([Intel XE#1201] / [Intel XE#455])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-466/igt@kms_content_protection@legacy.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][85] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][86] ([Intel XE#1201] / [Intel XE#1234])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-464/igt@kms_content_protection@uevent.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-256x256:
- shard-dg2-set2: [DMESG-WARN][87] ([Intel XE#1214] / [Intel XE#282]) -> [SKIP][88] ([Intel XE#1201])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-464/igt@kms_cursor_crc@cursor-random-256x256.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_cursor_crc@cursor-random-256x256.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-set2: [DMESG-WARN][89] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][90] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-463/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-436/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-set2: [SKIP][91] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][92] ([Intel XE#1201]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_dsc@dsc-with-formats.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_dsc@dsc-with-formats.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][93] ([Intel XE#1201]) -> [SKIP][94] ([Intel XE#1201] / [Intel XE#651]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][95] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][96] ([Intel XE#1201]) +5 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][97] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][98] ([Intel XE#1201]) +5 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][99] ([Intel XE#1201]) -> [SKIP][100] ([Intel XE#1201] / [Intel XE#653]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2-set2: [INCOMPLETE][101] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][102] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][103] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][104] ([Intel XE#904] / [Intel XE#909])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2-set2: [TIMEOUT][105] ([Intel XE#295] / [Intel XE#380] / [Intel XE#909]) -> [INCOMPLETE][106] ([Intel XE#1195] / [Intel XE#909])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-463/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6:
- shard-dg2-set2: [TIMEOUT][107] ([Intel XE#904] / [Intel XE#909]) -> [INCOMPLETE][108] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-463/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-dg2-set2: [SKIP][109] ([Intel XE#1201]) -> [SKIP][110] ([Intel XE#1201] / [Intel XE#929]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_psr@fbc-psr2-cursor-plane-move.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-463/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][111] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][112] ([Intel XE#1201]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-434/igt@kms_psr@psr2-cursor-plane-onoff.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][113] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][114] ([Intel XE#1201] / [Intel XE#1234])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-433/igt@kms_psr@psr2-sprite-plane-move.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: [DMESG-WARN][115] ([Intel XE#1162] / [Intel XE#1214]) -> [SKIP][116] ([Intel XE#1201])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-464/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@flip-basic:
- shard-dg2-set2: [SKIP][117] ([Intel XE#1201]) -> [SKIP][118] ([Intel XE#1201] / [Intel XE#455])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-436/igt@kms_vrr@flip-basic.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-433/igt@kms_vrr@flip-basic.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [INCOMPLETE][119] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][120] ([Intel XE#1473] / [Intel XE#392]) +1 other test timeout
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-466/igt@xe_evict@evict-beng-cm-threads-large.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-435/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][121] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][122] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [INCOMPLETE][123] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][124] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7846/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11124/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1234
[Intel XE#1235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1235
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1787
[Intel XE#1818]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1818
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#295]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/295
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/380
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#581]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/581
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/650
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/904
[Intel XE#909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/909
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* IGT: IGT_7846 -> IGTPW_11124
* Linux: xe-1263-92f877dd46245e4a44b6d24b5e303b8c03c40c75 -> xe-1269-36ee5b2bd4d6b47d9f4161c1e45a0e611efd5a49
IGTPW_11124: 11124
IGT_7846: 4a5fd4e7cb2798636f6464e2bd61399f3242b322 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1263-92f877dd46245e4a44b6d24b5e303b8c03c40c75: 92f877dd46245e4a44b6d24b5e303b8c03c40c75
xe-1269-36ee5b2bd4d6b47d9f4161c1e45a0e611efd5a49: 36ee5b2bd4d6b47d9f4161c1e45a0e611efd5a49
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-133166v2/index.html
[-- Attachment #2: Type: text/html, Size: 45724 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2)
2024-05-10 3:01 [PATCH i-g-t,v2] tests/amdgpu/amd_replay: Add amd_replay IGT test Tom Chung
` (2 preceding siblings ...)
2024-05-10 5:39 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-05-10 23:24 ` Patchwork
2024-05-23 21:39 ` [PATCH i-g-t, v2] tests/amdgpu/amd_replay: Add amd_replay IGT test Leo Li
2024-05-29 14:08 ` Kamil Konieczny
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-05-10 23:24 UTC (permalink / raw)
To: Chung, ChiaHsuan (Tom); +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 97117 bytes --]
== Series Details ==
Series: tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2)
URL : https://patchwork.freedesktop.org/series/133166/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14743_full -> IGTPW_11124_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11124_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11124_full, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11124_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-5/igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-3.html
New tests
---------
New tests have been introduced between CI_DRM_14743_full and IGTPW_11124_full:
### New IGT tests (1) ###
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- Statuses : 1 fail(s)
- Exec time: [0.32] s
Known issues
------------
Here are the changes found in IGTPW_11124_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@crc32:
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-8/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-2/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +10 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-7/igt@drm_fdinfo@virtual-busy-all.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +8 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-5/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: NOTRUN -> [FAIL][11] ([i915#7742])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@gem_basic@multigpu-create-close.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#4873])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-8/igt@gem_caching@reads.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-3/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-dg1: [PASS][19] -> [FAIL][20] ([i915#10086]) +2 other tests fail
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg1-16/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][25] -> [FAIL][26] ([i915#5784])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg1-15/igt@gem_eio@reset-stress.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-15/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4771]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#4036])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#6334])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-tglu: NOTRUN -> [FAIL][33] ([i915#9606])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-5/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: NOTRUN -> [FAIL][34] ([i915#2846])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk1/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473] / [i915#4771])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-tglu: NOTRUN -> [FAIL][36] ([i915#2842]) +4 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-2/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][37] -> [FAIL][38] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@concurrent:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-10/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-10/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#5107])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-3/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +11 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@gem_exec_reloc@basic-scanout.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +8 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-5/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-none.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][51] ([i915#4613]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][53] ([i915#10378])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4565]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][56] -> [TIMEOUT][57] ([i915#5493])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-2/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +13 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@flink-race:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-8/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4077]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4083]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-15/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@display:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-3/igt@gem_pread@display.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][67] ([i915#2658]) +1 other test warn
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk6/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +5 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#4270]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +6 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-off-3.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#4270]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#8411]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-7/igt@gem_tiled_pread_basic.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4879])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#3323])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3282] / [i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-3/igt@gen9_exec_parse@bb-start-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#2856]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_fb_tiling:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#4881])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@i915_fb_tiling.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#6590])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#6590]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-3/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: NOTRUN -> [FAIL][96] ([i915#3591])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-mtlp: NOTRUN -> [SKIP][97] +12 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][98] -> [INCOMPLETE][99] ([i915#7790])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-snb7/igt@i915_pm_rps@reset.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-snb4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#8925])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#8925])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-8/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#6245])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@i915_query@hwconfig_table.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][103] -> [FAIL][104] ([i915#10031])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#7707])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-2/igt@intel_hwmon@hwmon-read.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#7707])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4212])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#4212])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#8709]) +11 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#6228])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-8/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#3555])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#9531])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][114] ([i915#1769])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +6 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#5286])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +5 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3638]) +5 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3638]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#5190]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +6 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538]) +7 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#10656])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#10278]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#10278])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][129] +412 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6095]) +31 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#10278])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#6095]) +23 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-2/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#6095]) +61 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#6095]) +91 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +160 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#7213]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][137] +17 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-8/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#7828]) +6 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#7828]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-2/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#7828]) +8 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#7828]) +10 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#7828]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#9979])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-8/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7118] / [i915#9424])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#6944] / [i915#9424])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-7/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#9424])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#9424])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#3299]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#3116]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#9424]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#8814]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#3359])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#3359]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#3555]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-3/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#3555]) +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3555]) +6 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3359]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#3359])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#9067])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#4103])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#4103])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#9723]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#9723]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#9833])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#3804])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555]) +6 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#1257])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#8812])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8812])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3840])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#4854])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#4854])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#1839])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#1839])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#658])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#658]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-5/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#658])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][180] -> [FAIL][181] ([i915#2122]) +2 other tests fail
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-snb4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-snb7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#9934]) +8 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8381])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#3637]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3637]) +3 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#8381]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-10/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#2672]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#2672]) +3 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#2672]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8708]) +5 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-dg2: [PASS][193] -> [FAIL][194] ([i915#6880])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#1825]) +49 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#8708]) +23 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
- shard-snb: [PASS][197] -> [SKIP][198] +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#5439])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#8708]) +13 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][201] +57 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#5354]) +36 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][203] +39 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#3458]) +26 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#3458]) +13 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#3023]) +32 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#1825]) +22 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#6118])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-2/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#433])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][213] ([i915#10647]) +1 other test fail
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3582]) +3 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8821])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#8806])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3 (NEW):
- shard-dg1: NOTRUN -> [FAIL][217] ([i915#8292])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#9423]) +7 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#9423]) +11 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#9423]) +7 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5176]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#5176] / [i915#9423]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#5235]) +7 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#5235]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#5235]) +5 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#5235]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#5235]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#5235] / [i915#9423]) +11 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#5354])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#9292])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#9293])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-4/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3361])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][233] -> [FAIL][234] ([i915#9295])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#4281])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#9340])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9340])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#9519]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][239] -> [SKIP][240] ([i915#9519]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#9519])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][242] -> [SKIP][243] ([i915#9519]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#6524])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#6524])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_prime@d3hot.html
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#6524])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][247] +61 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9683])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-4/igt@kms_psr2_su@page_flip-nv12.html
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#9683])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#9683])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#1072] / [i915#9732]) +26 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-2/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#9688]) +8 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-3/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#9732]) +10 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-8/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#1072] / [i915#9732]) +12 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-5/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#1072] / [i915#9732]) +25 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-16/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#1072] / [i915#9673] / [i915#9732]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@kms_psr@psr2-primary-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#9685]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#9685])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#9685])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#4884])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#4235]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#4235] / [i915#5190])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#5289])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8809])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: [PASS][265] -> [FAIL][266] ([i915#5465]) +1 other test fail
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-snb7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#8623])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#8623]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#8623])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-4:
- shard-dg1: [PASS][270] -> [FAIL][271] ([i915#9196])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-4.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-4.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][272] -> [FAIL][273] ([i915#9196])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#9906])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-5/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#9906])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#2437])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#2437])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][278] ([i915#2437])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk6/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#2437] / [i915#9412])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#2437] / [i915#9412])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-2/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#2437] / [i915#9412])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#2436])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-1/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#7387])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-5/igt@perf@global-sseu-config-invalid.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#2433])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][285] -> [FAIL][286] ([i915#4349]) +3 other tests fail
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#8850])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#8516])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#8516])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-15/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#3291] / [i915#3708])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-4/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#3708]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-1/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#3708] / [i915#4077]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-14/igt@prime_vgem@coherency-gtt.html
* igt@runner@aborted:
- shard-glk: NOTRUN -> ([FAIL][293], [FAIL][294]) ([i915#10291])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk2/igt@runner@aborted.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk3/igt@runner@aborted.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#9917])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#9917])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#4818])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#4818])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-2/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#2575]) +18 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html
* igt@v3d/v3d_submit_cl@multiple-job-submission:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#2575]) +9 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-7/igt@v3d/v3d_submit_cl@multiple-job-submission.html
* igt@v3d/v3d_submit_csd@bad-flag:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#2575]) +8 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-6/igt@v3d/v3d_submit_csd@bad-flag.html
* igt@v3d/v3d_wait_bo@unused-bo-1ns:
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#2575]) +7 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-4/igt@v3d/v3d_wait_bo@unused-bo-1ns.html
* igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#7711]) +11 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#7711]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-7/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#7711]) +11 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-3/igt@vc4/vc4_purgeable_bo@mark-purgeable.html
* igt@vc4/vc4_tiling@get-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#7711]) +6 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-4/igt@vc4/vc4_tiling@get-bad-handle.html
#### Possible fixes ####
* igt@gem_eio@in-flight-10ms:
- shard-mtlp: [INCOMPLETE][307] -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-mtlp-3/igt@gem_eio@in-flight-10ms.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-7/igt@gem_eio@in-flight-10ms.html
* igt@gem_eio@kms:
- shard-tglu: [INCOMPLETE][309] ([i915#10513]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-tglu-4/igt@gem_eio@kms.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-6/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [FAIL][311] ([i915#2842]) -> [PASS][312] +3 other tests pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: [FAIL][313] ([i915#10378]) -> [PASS][314] +1 other test pass
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg2: [FAIL][315] ([i915#10446]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-4/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][317] ([i915#5493]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@kms_atomic@plane-immutable-zpos@pipe-a-edp-1:
- shard-mtlp: [FAIL][319] -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-mtlp-4/igt@kms_atomic@plane-immutable-zpos@pipe-a-edp-1.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-mtlp-2/igt@kms_atomic@plane-immutable-zpos@pipe-a-edp-1.html
* igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][321] ([i915#2122]) -> [PASS][322] +2 other tests pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1:
- shard-glk: [FAIL][323] ([i915#79]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html
* igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a1:
- shard-dg2: [INCOMPLETE][325] ([i915#6113]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-8/igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a1.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-8/igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
- shard-snb: [INCOMPLETE][327] ([i915#4839]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-snb7/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2: [FAIL][329] ([i915#6880]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-snb: [SKIP][331] -> [PASS][332] +4 other tests pass
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_plane@pixel-format@pipe-a:
- shard-glk: [DMESG-FAIL][333] ([i915#118]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-glk1/igt@kms_plane@pixel-format@pipe-a.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-glk1/igt@kms_plane@pixel-format@pipe-a.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][335] ([i915#9519]) -> [PASS][336] +1 other test pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][337] ([i915#9519]) -> [PASS][338] +1 other test pass
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [FAIL][339] ([i915#9196]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][341] ([i915#9364]) -> [ABORT][342] ([i915#9846])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_eio@kms:
- shard-dg1: [INCOMPLETE][343] ([i915#10513] / [i915#1982]) -> [FAIL][344] ([i915#5784])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg1-15/igt@gem_eio@kms.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][345] ([i915#2876]) -> [FAIL][346] ([i915#2842])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][347] ([i915#1982] / [i915#9849]) -> [INCOMPLETE][348] ([i915#9820] / [i915#9849])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@lic-type-0:
- shard-snb: [SKIP][349] -> [INCOMPLETE][350] ([i915#8816])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-snb6/igt@kms_content_protection@lic-type-0.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-snb7/igt@kms_content_protection@lic-type-0.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][351] ([i915#3458]) -> [SKIP][352] ([i915#10433] / [i915#3458])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][353] ([i915#10433] / [i915#3458]) -> [SKIP][354] ([i915#3458]) +3 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][355] ([i915#4070] / [i915#4816]) -> [SKIP][356] ([i915#4816])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: [SKIP][357] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][358] ([i915#1072] / [i915#9732]) +9 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-plane-move.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-1/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-mmap-cpu:
- shard-dg2: [SKIP][359] ([i915#1072] / [i915#9732]) -> [SKIP][360] ([i915#1072] / [i915#9673] / [i915#9732]) +7 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14743/shard-dg2-5/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11124/shard-dg2-11/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html
[i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031
[i915#10086]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10086
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10291
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10446]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10446
[i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
[i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/79
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9364]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9364
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846
[i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7846 -> IGTPW_11124
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14743: 36ee5b2bd4d6b47d9f4161c1e45a0e611efd5a49 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11124: 11124
IGT_7846: 4a5fd4e7cb2798636f6464e2bd61399f3242b322 @ 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_11124/index.html
[-- Attachment #2: Type: text/html, Size: 119818 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t, v2] tests/amdgpu/amd_replay: Add amd_replay IGT test
2024-05-10 3:01 [PATCH i-g-t,v2] tests/amdgpu/amd_replay: Add amd_replay IGT test Tom Chung
` (3 preceding siblings ...)
2024-05-10 23:24 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-05-23 21:39 ` Leo Li
2024-05-29 14:08 ` Kamil Konieczny
5 siblings, 0 replies; 7+ messages in thread
From: Leo Li @ 2024-05-23 21:39 UTC (permalink / raw)
To: Tom Chung, igt-dev; +Cc: Rodrigo.Siqueira, alex.hung
On 2024-05-09 23:01, Tom Chung wrote:
> [why]
> Add a basic IGT test for panel replay feature.
>
> [how]
> Subtest case
>
> a. static screen
> 1. Check if system support panel replay.
> 2. Start video flip for a while.
> 3. Stop video flip and wait for a while.
> 4. Check if replay state is in Replay mode.
>
> b. Live mode (intermittent)
> 1. Check if system support panel replay.
> 2. Start video flip for a while.
> 3. Check if replay state is in Live mode.
> 4. Stop video flip and wait for a while.
> 5. Check if replay state is in Replay mode.
> 6. Repaet 2 to 5.
>
> c. Live mode (constant)
> 1. Check if system support panel replay.
> 2. Start video flip for a while.
> 3. Check if replay state is in Live mode.
>
> Cc: Leo Li <sunpeng.li@amd.com>
> Signed-off-by: Tom Chung <chiahsuan.chung@amd.com>
Reviewed-by: Leo Li <sunpeng.li@amd.com>
Thanks!
> ---
> v2: Modify the include header files in tests/amdgpu/amd_replay.c
>
> lib/igt_amd.c | 102 ++++++++++++
> lib/igt_amd.h | 39 ++++-
> tests/amdgpu/amd_replay.c | 318 ++++++++++++++++++++++++++++++++++++++
> tests/amdgpu/meson.build | 1 +
> 4 files changed, 459 insertions(+), 1 deletion(-)
> create mode 100755 tests/amdgpu/amd_replay.c
>
> diff --git a/lib/igt_amd.c b/lib/igt_amd.c
> index 149af5151..8bc6fdc6a 100644
> --- a/lib/igt_amd.c
> +++ b/lib/igt_amd.c
> @@ -1014,6 +1014,108 @@ bool igt_amd_output_has_ilr_setting(int drm_fd, char *connector_name)
> return igt_amd_output_has_debugfs(drm_fd, connector_name, DEBUGFS_EDP_ILR_SETTING);
> }
>
> +/**
> + * igt_amd_output_has_replay_cap: check if eDP connector has replay_capability debugfs entry
> + * @drm_fd: DRM file descriptor
> + * @connector_name: The connector's name, on which we're reading the status
> + */
> +bool igt_amd_output_has_replay_cap(int drm_fd, char *connector_name)
> +{
> + return igt_amd_output_has_debugfs(drm_fd, connector_name, DEBUGFS_EDP_REPLAY_CAP);
> +}
> +
> +/**
> + * igt_amd_replay_support_sink: check if sink device support Panel Replay
> + * @drm_fd: DRM file descriptor
> + * @connector_name: The connector's name, on which we're reading the status
> + */
> +bool igt_amd_replay_support_sink(int drm_fd, char *connector_name)
> +{
> + char buf[128];
> + int ret;
> + int fd;
> +
> + fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
> + if (fd < 0) {
> + igt_info("output %s: debugfs not found\n", connector_name);
> + return false;
> + }
> +
> + ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_CAP, buf, sizeof(buf));
> + igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
> + DEBUGFS_EDP_REPLAY_CAP, connector_name);
> + close(fd);
> +
> + if (ret < 1)
> + return false;
> +
> + return strstr(buf, "Sink support: yes");
> +}
> +
> +/**
> + * igt_amd_replay_support_drv: check if driver support Panel Replay
> + * @drm_fd: DRM file descriptor
> + * @connector_name: The connector's name, on which we're reading the status
> + */
> +bool igt_amd_replay_support_drv(int drm_fd, char *connector_name)
> +{
> + char buf[128];
> + int ret;
> + int fd;
> +
> + fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
> + if (fd < 0) {
> + igt_info("output %s: debugfs not found\n", connector_name);
> + return false;
> + }
> +
> + ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_CAP, buf, sizeof(buf));
> + igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
> + DEBUGFS_EDP_REPLAY_CAP, connector_name);
> + close(fd);
> +
> + if (ret < 1)
> + return false;
> +
> + return strstr(buf, "Driver support: yes");
> +}
> +
> +/**
> + * igt_amd_output_has_replay_state: check if eDP connector has replay_state debugfs entry
> + * @drm_fd: DRM file descriptor
> + * @connector_name: The connector's name, on which we're reading the status
> + */
> +bool igt_amd_output_has_replay_state(int drm_fd, char *connector_name)
> +{
> + return igt_amd_output_has_debugfs(drm_fd, connector_name, DEBUGFS_EDP_REPLAY_STATE);
> +}
> +
> +/**
> + * @brief Read Panel Replay State from debugfs interface
> + * @param drm_fd DRM file descriptor
> + * @param connector_name The connector's name, on which we're reading the status
> + * @return Panel Replay state as integer
> + */
> +int igt_amd_read_replay_state(int drm_fd, char *connector_name)
> +{
> + char buf[4];
> + int fd, ret;
> +
> + fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
> + if (fd < 0) {
> + igt_info("Couldn't open connector %s debugfs directory\n", connector_name);
> + return -1;
> + }
> +
> + ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_STATE, buf, sizeof(buf));
> + close(fd);
> +
> + igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
> + DEBUGFS_EDP_REPLAY_STATE, connector_name);
> +
> + return strtol(buf, NULL, 10);
> +}
> +
> /**
> * igt_amd_output_has_psr_cap: check if eDP connector has psr_capability debugfs entry
> * @drm_fd: DRM file descriptor
> diff --git a/lib/igt_amd.h b/lib/igt_amd.h
> index 6780b99de..a41b423b7 100644
> --- a/lib/igt_amd.h
> +++ b/lib/igt_amd.h
> @@ -47,6 +47,8 @@
> #define DEBUGFS_EDP_ILR_SETTING "ilr_setting"
> #define MAX_SUPPORTED_ILR 8
> #define MULTIPLIER_TO_LR 270000
> +#define DEBUGFS_EDP_REPLAY_CAP "replay_capability"
> +#define DEBUGFS_EDP_REPLAY_STATE "replay_state"
> #define DEBUGFS_EDP_PSR_CAP "psr_capability"
> #define DEBUGFS_EDP_PSR_STATE "psr_state"
> #define DEBUGFS_ALLOW_EDP_HOTPLUG_DETECT "allow_edp_hotplug_detection"
> @@ -100,6 +102,35 @@ enum dc_link_training_type {
> LINK_TRAINING_NO_PATTERN
> };
>
> +/*
> + * enumeration of REPLAY STATE below should be aligned to the upstreamed
> + * amdgpu kernel driver 'enum replay_state' in dmub_cmd.h
> + */
> +enum replay_state {
> + REPLAY_STATE_0 = 0x0,
> + REPLAY_STATE_1 = 0x10,
> + REPLAY_STATE_1A = 0x11,
> + REPLAY_STATE_2 = 0x20,
> + REPLAY_STATE_3 = 0x30,
> + REPLAY_STATE_3INIT = 0x31,
> + REPLAY_STATE_4 = 0x40,
> + REPLAY_STATE_4A = 0x41,
> + REPLAY_STATE_4B = 0x42,
> + REPLAY_STATE_4C = 0x43,
> + REPLAY_STATE_4D = 0x44,
> + REPLAY_STATE_4B_LOCKED = 0x4A,
> + REPLAY_STATE_4C_UNLOCKED = 0x4B,
> + REPLAY_STATE_5 = 0x50,
> + REPLAY_STATE_5A = 0x51,
> + REPLAY_STATE_5B = 0x52,
> + REPLAY_STATE_5A_LOCKED = 0x5A,
> + REPLAY_STATE_5B_UNLOCKED = 0x5B,
> + REPLAY_STATE_6 = 0x60,
> + REPLAY_STATE_6A = 0x61,
> + REPLAY_STATE_6B = 0x62,
> + REPLAY_STATE_INVALID = 0xFF
> +};
> +
> /*
> * enumeration of PSR STATE below should be aligned to the upstreamed
> * amdgpu kernel driver 'enum dc_psr_state' in dc_type.h
> @@ -135,7 +166,8 @@ enum amdgpu_debug_visual_confirm {
> VISUAL_CONFIRM_HDR = 2,
> VISUAL_CONFIRM_MPCTREE = 4,
> VISUAL_CONFIRM_PSR = 5,
> - VISUAL_CONFIRM_SWIZZLE = 9
> + VISUAL_CONFIRM_SWIZZLE = 9,
> + VISUAL_CONFIRM_REPLAY = 12
> };
>
> uint32_t igt_amd_create_bo(int fd, uint64_t size);
> @@ -189,6 +221,11 @@ void igt_amd_write_ilr_setting(
> int drm_fd, char *connector_name, enum dc_lane_count lane_count,
> uint8_t link_rate_set);
> bool igt_amd_output_has_ilr_setting(int drm_fd, char *connector_name);
> +bool igt_amd_output_has_replay_cap(int drm_fd, char *connector_name);
> +bool igt_amd_replay_support_sink(int drm_fd, char *connector_name);
> +bool igt_amd_replay_support_drv(int drm_fd, char *connector_name);
> +bool igt_amd_output_has_replay_state(int drm_fd, char *connector_name);
> +int igt_amd_read_replay_state(int drm_fd, char *connector_name);
> bool igt_amd_output_has_psr_cap(int drm_fd, char *connector_name);
> bool igt_amd_psr_support_sink(int drm_fd, char *connector_name, enum psr_mode mode);
> bool igt_amd_psr_support_drv(int drm_fd, char *connector_name, enum psr_mode mode);
> diff --git a/tests/amdgpu/amd_replay.c b/tests/amdgpu/amd_replay.c
> new file mode 100755
> index 000000000..f96d856f8
> --- /dev/null
> +++ b/tests/amdgpu/amd_replay.c
> @@ -0,0 +1,318 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright 2024 Advanced Micro Devices, Inc.
> + */
> +
> +#include "igt_amd.h"
> +
> +/* hardware requirements:
> + * eDP panel that supports Panel Replay
> + */
> +IGT_TEST_DESCRIPTION("Basic test for enabling Panel Replay for eDP displays");
> +
> +#define REPLAY_SETTLE_DELAY 10
> +
> +/* Common test data. */
> +struct test_data {
> + igt_display_t display;
> + igt_plane_t *primary;
> + igt_output_t *output;
> + igt_pipe_t *pipe;
> + drmModeModeInfo *mode;
> + enum pipe pipe_id;
> + int fd;
> + int debugfs_fd;
> + int w, h;
> +};
> +
> +struct {
> + bool visual_confirm;
> +} opt = {
> + .visual_confirm = false, /* visual confirm debug option */
> +};
> +
> +const char *help_str =
> +" --visual-confirm Panel Replay visual confirm debug option enable\n";
> +
> +struct option long_options[] = {
> + {"visual-confirm", required_argument, NULL, 'v'},
> + { 0, 0, 0, 0 }
> +};
> +
> +enum test_mode {
> + TEST_MODE_STATIC_SCREEN = 0,
> + TEST_MODE_INTERMITTENT_LIVE,
> + TEST_MODE_CONSTANT_LIVE,
> + TEST_MODE_COUNT
> +};
> +
> +/* Common test setup. */
> +static void test_init(struct test_data *data)
> +{
> + igt_display_t *display = &data->display;
> +
> + /* 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);
> +
> + data->output = igt_get_single_output_for_pipe(display, data->pipe_id);
> + igt_require(data->output);
> + igt_info("output %s\n", data->output->name);
> +
> + data->mode = igt_output_get_mode(data->output);
> + igt_assert(data->mode);
> + kmstest_dump_mode(data->mode);
> +
> + data->primary =
> + igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
> +
> + igt_output_set_pipe(data->output, data->pipe_id);
> +
> + data->w = data->mode->hdisplay;
> + data->h = data->mode->vdisplay;
> +
> + if (opt.visual_confirm) {
> + /**
> + * if visual confirm option is enabled, we'd trigger a full modeset before test run
> + * to have Panel Replay visual confirm enable take effect. DPMS off -> ON transition
> + * is one of many approaches.
> + */
> + kmstest_set_connector_dpms(data->fd, data->output->config.connector,
> + DRM_MODE_DPMS_OFF);
> + kmstest_set_connector_dpms(data->fd, data->output->config.connector,
> + DRM_MODE_DPMS_ON);
> + }
> +}
> +
> +/* Common test cleanup. */
> +static void test_fini(struct test_data *data)
> +{
> + igt_display_t *display = &data->display;
> +
> + igt_display_reset(display);
> + igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
> +}
> +
> +static int check_conn_type(struct test_data *data, uint32_t type)
> +{
> + int i;
> +
> + for (i = 0; i < data->display.n_outputs; i++) {
> + uint32_t conn_type = data->display.outputs[i].config.connector->connector_type;
> +
> + if (conn_type == type)
> + return i;
> + }
> +
> + return -1;
> +}
> +
> +static bool replay_mode_supported(struct test_data *data)
> +{
> + /* run Panel Replay test if eDP panel support Panel Replay */
> + if (!igt_amd_output_has_replay_cap(data->fd, data->output->name)) {
> + igt_warn(" driver does not have %s debugfs interface\n", DEBUGFS_EDP_REPLAY_CAP);
> + return false;
> + }
> +
> + if (!igt_amd_output_has_replay_state(data->fd, data->output->name)) {
> + igt_warn(" driver does not have %s debugfs interface\n", DEBUGFS_EDP_REPLAY_STATE);
> + return false;
> + }
> +
> + if (!igt_amd_replay_support_sink(data->fd, data->output->name)) {
> + igt_warn(" output %s not support Panel Replay mode\n", data->output->name);
> + return false;
> + }
> +
> + if (!igt_amd_replay_support_drv(data->fd, data->output->name)) {
> + igt_warn(" kernel driver not support Panel Replay mode\n");
> + return false;
> + }
> +
> + return true;
> +}
> +
> +static void run_check_replay(struct test_data *data, enum test_mode test_mode)
> +{
> + int edp_idx, ret, frame_count, replay_state;
> + igt_fb_t ref_fb, ref_fb2;
> + igt_fb_t *flip_fb;
> + igt_output_t *output;
> +
> + test_init(data);
> +
> + edp_idx = check_conn_type(data, DRM_MODE_CONNECTOR_eDP);
> + igt_skip_on_f(edp_idx == -1, "no eDP connector found\n");
> +
> + /* check if eDP support Panel Replay. */
> + igt_skip_on(!replay_mode_supported(data));
> +
> + for_each_connected_output(&data->display, output) {
> + if (output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP)
> + continue;
> +
> + igt_create_color_fb(data->fd, data->mode->hdisplay,
> + data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.6,
> + 0.6, 0.6, &ref_fb);
> + igt_create_color_fb(data->fd, data->mode->hdisplay,
> + data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.0,
> + 0.4, 0.14, &ref_fb2);
> +
> + igt_plane_set_fb(data->primary, &ref_fb);
> + igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
> + flip_fb = &ref_fb;
> + drmModePageFlip(data->fd, output->config.crtc->crtc_id,
> + flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
> + kmstest_wait_for_pageflip(data->fd);
> +
> + /* Panel Replay state takes some time to settle its value on static screen */
> + sleep(REPLAY_SETTLE_DELAY);
> +
> + /* Check Panel Replay state */
> + replay_state = igt_amd_read_replay_state(data->fd, output->name);
> + igt_debug("replay_state static mode before flip = 0x%X\n", replay_state);
> + igt_fail_on_f(replay_state < 0, "Open Panel Replay state debugfs failed\n");
> + igt_fail_on_f(replay_state < REPLAY_STATE_2,
> + "Panel Replay was not enabled for connector %s\n", output->name);
> +
> + /* Do some page flip and let the replay go into live mode */
> + for (frame_count = 0; frame_count <= 20; frame_count++) {
> + ret = drmModePageFlip(data->fd, output->config.crtc->crtc_id,
> + flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
> + igt_require(ret == 0);
> + kmstest_wait_for_pageflip(data->fd);
> +
> + if (test_mode == (TEST_MODE_CONSTANT_LIVE || TEST_MODE_INTERMITTENT_LIVE)
> + && frame_count > 5) {
> + /* Panel Replay state needs few frame to enter the live mode */
> + replay_state = igt_amd_read_replay_state(data->fd, output->name);
> + igt_debug("replay_state live mode = 0x%X\n", replay_state);
> + igt_fail_on_f(replay_state < REPLAY_STATE_4 && replay_state >= REPLAY_STATE_5,
> + "State should be REPLAY_STATE_4 (Active with single frame update)\n");
> + }
> +
> + if (frame_count % 2 == 0)
> + flip_fb = &ref_fb2;
> + else
> + flip_fb = &ref_fb;
> + }
> +
> + /* Check Panel Replay state in static screen */
> + if (test_mode == TEST_MODE_STATIC_SCREEN || TEST_MODE_INTERMITTENT_LIVE) {
> + /* Panel Replay state takes some time to settle its value on static screen */
> + sleep(1);
> +
> + replay_state = igt_amd_read_replay_state(data->fd, output->name);
> + igt_debug("replay_state static mode = 0x%X\n", replay_state);
> + igt_fail_on_f(replay_state < REPLAY_STATE_3 && replay_state >= REPLAY_STATE_4,
> + "State should be REPLAY_STATE_3 (Active)\n");
> + }
> +
> + /* Do another page flip if we do the replay_intermittent_live test */
> + if (test_mode == TEST_MODE_INTERMITTENT_LIVE) {
> + for (frame_count = 0; frame_count <= 30; frame_count++) {
> + ret = drmModePageFlip(data->fd, output->config.crtc->crtc_id,
> + flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
> + igt_require(ret == 0);
> + kmstest_wait_for_pageflip(data->fd);
> +
> + if (frame_count > 5) {
> + /* Needs few frames to let state enter the live mode */
> + replay_state = igt_amd_read_replay_state(data->fd, output->name);
> + igt_debug("replay_state TEST_MODE_INTERMITTENT_LIVE during flip = 0x%X\n",
> + replay_state);
> + igt_fail_on_f(replay_state < REPLAY_STATE_4 && replay_state >= REPLAY_STATE_5,
> + "State should be REPLAY_STATE_4 (Active with single frame update)\n");
> + }
> +
> + if (frame_count % 2 == 0)
> + flip_fb = &ref_fb2;
> + else
> + flip_fb = &ref_fb;
> + }
> +
> + /* Panel Replay state takes some time to settle its value on static screen */
> + sleep(1);
> +
> + replay_state = igt_amd_read_replay_state(data->fd, output->name);
> + igt_debug("replay_state TEST_MODE_INTERMITTENT_LIVE after flip = 0x%X\n",
> + replay_state);
> + igt_fail_on_f(replay_state < REPLAY_STATE_3 && replay_state >= REPLAY_STATE_4,
> + "State should be REPLAY_STATE_3 (Active)\n");
> + }
> +
> + igt_remove_fb(data->fd, &ref_fb);
> + igt_remove_fb(data->fd, &ref_fb2);
> + }
> +
> + test_fini(data);
> +}
> +
> +static int opt_handler(int option, int option_index, void *data)
> +{
> + switch (option) {
> + case 'v':
> + opt.visual_confirm = strtol(optarg, NULL, 0);
> + igt_info("Panel Replay Visual Confirm %s\n", opt.visual_confirm ? "enabled" : "disabled");
> + break;
> + default:
> + return IGT_OPT_HANDLER_ERROR;
> + }
> +
> + return IGT_OPT_HANDLER_SUCCESS;
> +}
> +
> +igt_main_args("", long_options, help_str, opt_handler, NULL)
> +{
> + struct test_data data;
> +
> + igt_skip_on_simulation();
> + memset(&data, 0, sizeof(data));
> +
> + igt_fixture
> + {
> + data.fd = drm_open_driver_master(DRIVER_AMDGPU);
> +
> + if (data.fd == -1)
> + igt_skip("Not an amdgpu driver.\n");
> +
> + data.debugfs_fd = igt_debugfs_dir(data.fd);
> +
> + kmstest_set_vt_graphics_mode();
> +
> + igt_display_require(&data.display, data.fd);
> + igt_require(&data.display.is_atomic);
> + igt_display_require_output(&data.display);
> +
> + /* check if visual confirm option available */
> + if (opt.visual_confirm) {
> + igt_skip_on(!igt_amd_has_visual_confirm(data.fd));
> + igt_skip_on_f(!igt_amd_set_visual_confirm(data.fd, VISUAL_CONFIRM_REPLAY),
> + "set Panel Replay visual confirm failed\n");
> + }
> + }
> +
> + igt_describe("Test whether Panel Replay can be enabled with static screen");
> + igt_subtest("replay_static_screen") run_check_replay(&data, TEST_MODE_STATIC_SCREEN);
> +
> + igt_describe("Test whether Panel Replay can be enabled with intermittent live mdoe");
> + igt_subtest("replay_intermittent_live") run_check_replay(&data, TEST_MODE_INTERMITTENT_LIVE);
> +
> + igt_describe("Test whether Panel Replay can be enabled with constant live mdoe");
> + igt_subtest("replay_constant_live") run_check_replay(&data, TEST_MODE_CONSTANT_LIVE);
> +
> + igt_fixture
> + {
> + if (opt.visual_confirm) {
> + igt_skip_on(!igt_amd_has_visual_confirm(data.fd));
> + igt_require_f(igt_amd_set_visual_confirm(data.fd, VISUAL_CONFIRM_DISABLE),
> + "reset Panel Replay visual confirm failed\n");
> + }
> + close(data.debugfs_fd);
> + igt_display_fini(&data.display);
> + drm_close_driver(data.fd);
> + }
> +}
> diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
> index 3982a665f..69706fa70 100644
> --- a/tests/amdgpu/meson.build
> +++ b/tests/amdgpu/meson.build
> @@ -30,6 +30,7 @@ if libdrm_amdgpu.found()
> 'amd_prime',
> 'amd_psr',
> 'amd_ras',
> + 'amd_replay',
> 'amd_security',
> 'amd_uvd_dec',
> 'amd_uvd_enc',
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t, v2] tests/amdgpu/amd_replay: Add amd_replay IGT test
2024-05-10 3:01 [PATCH i-g-t,v2] tests/amdgpu/amd_replay: Add amd_replay IGT test Tom Chung
` (4 preceding siblings ...)
2024-05-23 21:39 ` [PATCH i-g-t, v2] tests/amdgpu/amd_replay: Add amd_replay IGT test Leo Li
@ 2024-05-29 14:08 ` Kamil Konieczny
5 siblings, 0 replies; 7+ messages in thread
From: Kamil Konieczny @ 2024-05-29 14:08 UTC (permalink / raw)
To: igt-dev; +Cc: Tom Chung, Leo Li, Rodrigo.Siqueira, alex.hung
Hi Tom,
On 2024-05-10 at 11:01:42 +0800, Tom Chung wrote:
> [why]
> Add a basic IGT test for panel replay feature.
>
> [how]
> Subtest case
>
> a. static screen
> 1. Check if system support panel replay.
> 2. Start video flip for a while.
> 3. Stop video flip and wait for a while.
> 4. Check if replay state is in Replay mode.
>
> b. Live mode (intermittent)
> 1. Check if system support panel replay.
> 2. Start video flip for a while.
> 3. Check if replay state is in Live mode.
> 4. Stop video flip and wait for a while.
> 5. Check if replay state is in Replay mode.
> 6. Repaet 2 to 5.
>
> c. Live mode (constant)
> 1. Check if system support panel replay.
> 2. Start video flip for a while.
> 3. Check if replay state is in Live mode.
>
> Cc: Leo Li <sunpeng.li@amd.com>
> Signed-off-by: Tom Chung <chiahsuan.chung@amd.com>
> ---
> v2: Modify the include header files in tests/amdgpu/amd_replay.c
>
> lib/igt_amd.c | 102 ++++++++++++
> lib/igt_amd.h | 39 ++++-
> tests/amdgpu/amd_replay.c | 318 ++++++++++++++++++++++++++++++++++++++
> tests/amdgpu/meson.build | 1 +
> 4 files changed, 459 insertions(+), 1 deletion(-)
> create mode 100755 tests/amdgpu/amd_replay.c
>
> diff --git a/lib/igt_amd.c b/lib/igt_amd.c
> index 149af5151..8bc6fdc6a 100644
> --- a/lib/igt_amd.c
> +++ b/lib/igt_amd.c
> @@ -1014,6 +1014,108 @@ bool igt_amd_output_has_ilr_setting(int drm_fd, char *connector_name)
> return igt_amd_output_has_debugfs(drm_fd, connector_name, DEBUGFS_EDP_ILR_SETTING);
> }
>
> +/**
> + * igt_amd_output_has_replay_cap: check if eDP connector has replay_capability debugfs entry
> + * @drm_fd: DRM file descriptor
> + * @connector_name: The connector's name, on which we're reading the status
> + */
> +bool igt_amd_output_has_replay_cap(int drm_fd, char *connector_name)
> +{
> + return igt_amd_output_has_debugfs(drm_fd, connector_name, DEBUGFS_EDP_REPLAY_CAP);
> +}
> +
> +/**
> + * igt_amd_replay_support_sink: check if sink device support Panel Replay
> + * @drm_fd: DRM file descriptor
> + * @connector_name: The connector's name, on which we're reading the status
> + */
> +bool igt_amd_replay_support_sink(int drm_fd, char *connector_name)
> +{
> + char buf[128];
> + int ret;
> + int fd;
> +
> + fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
> + if (fd < 0) {
> + igt_info("output %s: debugfs not found\n", connector_name);
Add newline.
> + return false;
> + }
> +
> + ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_CAP, buf, sizeof(buf));
> + igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
> + DEBUGFS_EDP_REPLAY_CAP, connector_name);
> + close(fd);
> +
> + if (ret < 1)
> + return false;
> +
> + return strstr(buf, "Sink support: yes");
> +}
> +
> +/**
> + * igt_amd_replay_support_drv: check if driver support Panel Replay
> + * @drm_fd: DRM file descriptor
> + * @connector_name: The connector's name, on which we're reading the status
> + */
> +bool igt_amd_replay_support_drv(int drm_fd, char *connector_name)
> +{
> + char buf[128];
> + int ret;
> + int fd;
> +
> + fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
> + if (fd < 0) {
> + igt_info("output %s: debugfs not found\n", connector_name);
Same here, add newline.
> + return false;
> + }
> +
> + ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_CAP, buf, sizeof(buf));
> + igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
-----------------^
> + DEBUGFS_EDP_REPLAY_CAP, connector_name);
-----------------^
Align.
> + close(fd);
> +
> + if (ret < 1)
> + return false;
> +
> + return strstr(buf, "Driver support: yes");
> +}
> +
> +/**
> + * igt_amd_output_has_replay_state: check if eDP connector has replay_state debugfs entry
> + * @drm_fd: DRM file descriptor
> + * @connector_name: The connector's name, on which we're reading the status
> + */
> +bool igt_amd_output_has_replay_state(int drm_fd, char *connector_name)
> +{
> + return igt_amd_output_has_debugfs(drm_fd, connector_name, DEBUGFS_EDP_REPLAY_STATE);
> +}
> +
> +/**
> + * @brief Read Panel Replay State from debugfs interface
> + * @param drm_fd DRM file descriptor
> + * @param connector_name The connector's name, on which we're reading the status
> + * @return Panel Replay state as integer
> + */
> +int igt_amd_read_replay_state(int drm_fd, char *connector_name)
> +{
> + char buf[4];
> + int fd, ret;
> +
> + fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
> + if (fd < 0) {
> + igt_info("Couldn't open connector %s debugfs directory\n", connector_name);
Add newline.
> + return -1;
> + }
> +
> + ret = igt_debugfs_simple_read(fd, DEBUGFS_EDP_REPLAY_STATE, buf, sizeof(buf));
> + close(fd);
> +
> + igt_assert_f(ret >= 0, "Reading %s for connector %s failed.\n",
> + DEBUGFS_EDP_REPLAY_STATE, connector_name);
> +
> + return strtol(buf, NULL, 10);
> +}
> +
> /**
> * igt_amd_output_has_psr_cap: check if eDP connector has psr_capability debugfs entry
> * @drm_fd: DRM file descriptor
> diff --git a/lib/igt_amd.h b/lib/igt_amd.h
> index 6780b99de..a41b423b7 100644
> --- a/lib/igt_amd.h
> +++ b/lib/igt_amd.h
> @@ -47,6 +47,8 @@
> #define DEBUGFS_EDP_ILR_SETTING "ilr_setting"
> #define MAX_SUPPORTED_ILR 8
> #define MULTIPLIER_TO_LR 270000
> +#define DEBUGFS_EDP_REPLAY_CAP "replay_capability"
> +#define DEBUGFS_EDP_REPLAY_STATE "replay_state"
> #define DEBUGFS_EDP_PSR_CAP "psr_capability"
> #define DEBUGFS_EDP_PSR_STATE "psr_state"
> #define DEBUGFS_ALLOW_EDP_HOTPLUG_DETECT "allow_edp_hotplug_detection"
> @@ -100,6 +102,35 @@ enum dc_link_training_type {
> LINK_TRAINING_NO_PATTERN
> };
>
> +/*
> + * enumeration of REPLAY STATE below should be aligned to the upstreamed
> + * amdgpu kernel driver 'enum replay_state' in dmub_cmd.h
> + */
> +enum replay_state {
> + REPLAY_STATE_0 = 0x0,
> + REPLAY_STATE_1 = 0x10,
> + REPLAY_STATE_1A = 0x11,
> + REPLAY_STATE_2 = 0x20,
> + REPLAY_STATE_3 = 0x30,
> + REPLAY_STATE_3INIT = 0x31,
> + REPLAY_STATE_4 = 0x40,
> + REPLAY_STATE_4A = 0x41,
> + REPLAY_STATE_4B = 0x42,
> + REPLAY_STATE_4C = 0x43,
> + REPLAY_STATE_4D = 0x44,
> + REPLAY_STATE_4B_LOCKED = 0x4A,
> + REPLAY_STATE_4C_UNLOCKED = 0x4B,
> + REPLAY_STATE_5 = 0x50,
> + REPLAY_STATE_5A = 0x51,
> + REPLAY_STATE_5B = 0x52,
> + REPLAY_STATE_5A_LOCKED = 0x5A,
> + REPLAY_STATE_5B_UNLOCKED = 0x5B,
> + REPLAY_STATE_6 = 0x60,
> + REPLAY_STATE_6A = 0x61,
> + REPLAY_STATE_6B = 0x62,
> + REPLAY_STATE_INVALID = 0xFF
> +};
> +
> /*
> * enumeration of PSR STATE below should be aligned to the upstreamed
> * amdgpu kernel driver 'enum dc_psr_state' in dc_type.h
> @@ -135,7 +166,8 @@ enum amdgpu_debug_visual_confirm {
> VISUAL_CONFIRM_HDR = 2,
> VISUAL_CONFIRM_MPCTREE = 4,
> VISUAL_CONFIRM_PSR = 5,
> - VISUAL_CONFIRM_SWIZZLE = 9
> + VISUAL_CONFIRM_SWIZZLE = 9,
> + VISUAL_CONFIRM_REPLAY = 12
> };
>
> uint32_t igt_amd_create_bo(int fd, uint64_t size);
> @@ -189,6 +221,11 @@ void igt_amd_write_ilr_setting(
> int drm_fd, char *connector_name, enum dc_lane_count lane_count,
> uint8_t link_rate_set);
> bool igt_amd_output_has_ilr_setting(int drm_fd, char *connector_name);
> +bool igt_amd_output_has_replay_cap(int drm_fd, char *connector_name);
> +bool igt_amd_replay_support_sink(int drm_fd, char *connector_name);
> +bool igt_amd_replay_support_drv(int drm_fd, char *connector_name);
> +bool igt_amd_output_has_replay_state(int drm_fd, char *connector_name);
> +int igt_amd_read_replay_state(int drm_fd, char *connector_name);
> bool igt_amd_output_has_psr_cap(int drm_fd, char *connector_name);
> bool igt_amd_psr_support_sink(int drm_fd, char *connector_name, enum psr_mode mode);
> bool igt_amd_psr_support_drv(int drm_fd, char *connector_name, enum psr_mode mode);
> diff --git a/tests/amdgpu/amd_replay.c b/tests/amdgpu/amd_replay.c
> new file mode 100755
-------------------^
Please do not set exec bit in file permissions.
Use script checkpatch.pl for checking for other problems,
like misaligned multi-line code above and below.
Read also recent patch to CONTRIBUTING.md:
https://patchwork.freedesktop.org/series/134188/
Regards,
Kamil
> index 000000000..f96d856f8
> --- /dev/null
> +++ b/tests/amdgpu/amd_replay.c
> @@ -0,0 +1,318 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright 2024 Advanced Micro Devices, Inc.
> + */
> +
> +#include "igt_amd.h"
> +
> +/* hardware requirements:
> + * eDP panel that supports Panel Replay
> + */
> +IGT_TEST_DESCRIPTION("Basic test for enabling Panel Replay for eDP displays");
> +
> +#define REPLAY_SETTLE_DELAY 10
> +
> +/* Common test data. */
> +struct test_data {
> + igt_display_t display;
> + igt_plane_t *primary;
> + igt_output_t *output;
> + igt_pipe_t *pipe;
> + drmModeModeInfo *mode;
> + enum pipe pipe_id;
> + int fd;
> + int debugfs_fd;
> + int w, h;
> +};
> +
> +struct {
> + bool visual_confirm;
> +} opt = {
> + .visual_confirm = false, /* visual confirm debug option */
> +};
> +
> +const char *help_str =
> +" --visual-confirm Panel Replay visual confirm debug option enable\n";
> +
> +struct option long_options[] = {
> + {"visual-confirm", required_argument, NULL, 'v'},
> + { 0, 0, 0, 0 }
> +};
> +
> +enum test_mode {
> + TEST_MODE_STATIC_SCREEN = 0,
> + TEST_MODE_INTERMITTENT_LIVE,
> + TEST_MODE_CONSTANT_LIVE,
> + TEST_MODE_COUNT
> +};
> +
> +/* Common test setup. */
> +static void test_init(struct test_data *data)
> +{
> + igt_display_t *display = &data->display;
> +
> + /* 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);
> +
> + data->output = igt_get_single_output_for_pipe(display, data->pipe_id);
> + igt_require(data->output);
> + igt_info("output %s\n", data->output->name);
> +
> + data->mode = igt_output_get_mode(data->output);
> + igt_assert(data->mode);
> + kmstest_dump_mode(data->mode);
> +
> + data->primary =
> + igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
> +
> + igt_output_set_pipe(data->output, data->pipe_id);
> +
> + data->w = data->mode->hdisplay;
> + data->h = data->mode->vdisplay;
> +
> + if (opt.visual_confirm) {
> + /**
> + * if visual confirm option is enabled, we'd trigger a full modeset before test run
> + * to have Panel Replay visual confirm enable take effect. DPMS off -> ON transition
> + * is one of many approaches.
> + */
> + kmstest_set_connector_dpms(data->fd, data->output->config.connector,
> + DRM_MODE_DPMS_OFF);
> + kmstest_set_connector_dpms(data->fd, data->output->config.connector,
> + DRM_MODE_DPMS_ON);
> + }
> +}
> +
> +/* Common test cleanup. */
> +static void test_fini(struct test_data *data)
> +{
> + igt_display_t *display = &data->display;
> +
> + igt_display_reset(display);
> + igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
> +}
> +
> +static int check_conn_type(struct test_data *data, uint32_t type)
> +{
> + int i;
> +
> + for (i = 0; i < data->display.n_outputs; i++) {
> + uint32_t conn_type = data->display.outputs[i].config.connector->connector_type;
> +
> + if (conn_type == type)
> + return i;
> + }
> +
> + return -1;
> +}
> +
> +static bool replay_mode_supported(struct test_data *data)
> +{
> + /* run Panel Replay test if eDP panel support Panel Replay */
> + if (!igt_amd_output_has_replay_cap(data->fd, data->output->name)) {
> + igt_warn(" driver does not have %s debugfs interface\n", DEBUGFS_EDP_REPLAY_CAP);
> + return false;
> + }
> +
> + if (!igt_amd_output_has_replay_state(data->fd, data->output->name)) {
> + igt_warn(" driver does not have %s debugfs interface\n", DEBUGFS_EDP_REPLAY_STATE);
> + return false;
> + }
> +
> + if (!igt_amd_replay_support_sink(data->fd, data->output->name)) {
> + igt_warn(" output %s not support Panel Replay mode\n", data->output->name);
> + return false;
> + }
> +
> + if (!igt_amd_replay_support_drv(data->fd, data->output->name)) {
> + igt_warn(" kernel driver not support Panel Replay mode\n");
> + return false;
> + }
> +
> + return true;
> +}
> +
> +static void run_check_replay(struct test_data *data, enum test_mode test_mode)
> +{
> + int edp_idx, ret, frame_count, replay_state;
> + igt_fb_t ref_fb, ref_fb2;
> + igt_fb_t *flip_fb;
> + igt_output_t *output;
> +
> + test_init(data);
> +
> + edp_idx = check_conn_type(data, DRM_MODE_CONNECTOR_eDP);
> + igt_skip_on_f(edp_idx == -1, "no eDP connector found\n");
> +
> + /* check if eDP support Panel Replay. */
> + igt_skip_on(!replay_mode_supported(data));
> +
> + for_each_connected_output(&data->display, output) {
> + if (output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP)
> + continue;
> +
> + igt_create_color_fb(data->fd, data->mode->hdisplay,
> + data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.6,
> + 0.6, 0.6, &ref_fb);
> + igt_create_color_fb(data->fd, data->mode->hdisplay,
> + data->mode->vdisplay, DRM_FORMAT_XRGB8888, 0, 0.0,
> + 0.4, 0.14, &ref_fb2);
> +
> + igt_plane_set_fb(data->primary, &ref_fb);
> + igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, 0);
> + flip_fb = &ref_fb;
> + drmModePageFlip(data->fd, output->config.crtc->crtc_id,
> + flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
> + kmstest_wait_for_pageflip(data->fd);
> +
> + /* Panel Replay state takes some time to settle its value on static screen */
> + sleep(REPLAY_SETTLE_DELAY);
> +
> + /* Check Panel Replay state */
> + replay_state = igt_amd_read_replay_state(data->fd, output->name);
> + igt_debug("replay_state static mode before flip = 0x%X\n", replay_state);
> + igt_fail_on_f(replay_state < 0, "Open Panel Replay state debugfs failed\n");
> + igt_fail_on_f(replay_state < REPLAY_STATE_2,
> + "Panel Replay was not enabled for connector %s\n", output->name);
> +
> + /* Do some page flip and let the replay go into live mode */
> + for (frame_count = 0; frame_count <= 20; frame_count++) {
> + ret = drmModePageFlip(data->fd, output->config.crtc->crtc_id,
> + flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
> + igt_require(ret == 0);
> + kmstest_wait_for_pageflip(data->fd);
> +
> + if (test_mode == (TEST_MODE_CONSTANT_LIVE || TEST_MODE_INTERMITTENT_LIVE)
> + && frame_count > 5) {
> + /* Panel Replay state needs few frame to enter the live mode */
> + replay_state = igt_amd_read_replay_state(data->fd, output->name);
> + igt_debug("replay_state live mode = 0x%X\n", replay_state);
> + igt_fail_on_f(replay_state < REPLAY_STATE_4 && replay_state >= REPLAY_STATE_5,
> + "State should be REPLAY_STATE_4 (Active with single frame update)\n");
> + }
> +
> + if (frame_count % 2 == 0)
> + flip_fb = &ref_fb2;
> + else
> + flip_fb = &ref_fb;
> + }
> +
> + /* Check Panel Replay state in static screen */
> + if (test_mode == TEST_MODE_STATIC_SCREEN || TEST_MODE_INTERMITTENT_LIVE) {
> + /* Panel Replay state takes some time to settle its value on static screen */
> + sleep(1);
> +
> + replay_state = igt_amd_read_replay_state(data->fd, output->name);
> + igt_debug("replay_state static mode = 0x%X\n", replay_state);
> + igt_fail_on_f(replay_state < REPLAY_STATE_3 && replay_state >= REPLAY_STATE_4,
> + "State should be REPLAY_STATE_3 (Active)\n");
> + }
> +
> + /* Do another page flip if we do the replay_intermittent_live test */
> + if (test_mode == TEST_MODE_INTERMITTENT_LIVE) {
> + for (frame_count = 0; frame_count <= 30; frame_count++) {
> + ret = drmModePageFlip(data->fd, output->config.crtc->crtc_id,
> + flip_fb->fb_id, DRM_MODE_PAGE_FLIP_EVENT, NULL);
> + igt_require(ret == 0);
> + kmstest_wait_for_pageflip(data->fd);
> +
> + if (frame_count > 5) {
> + /* Needs few frames to let state enter the live mode */
> + replay_state = igt_amd_read_replay_state(data->fd, output->name);
> + igt_debug("replay_state TEST_MODE_INTERMITTENT_LIVE during flip = 0x%X\n",
> + replay_state);
> + igt_fail_on_f(replay_state < REPLAY_STATE_4 && replay_state >= REPLAY_STATE_5,
> + "State should be REPLAY_STATE_4 (Active with single frame update)\n");
> + }
> +
> + if (frame_count % 2 == 0)
> + flip_fb = &ref_fb2;
> + else
> + flip_fb = &ref_fb;
> + }
> +
> + /* Panel Replay state takes some time to settle its value on static screen */
> + sleep(1);
> +
> + replay_state = igt_amd_read_replay_state(data->fd, output->name);
> + igt_debug("replay_state TEST_MODE_INTERMITTENT_LIVE after flip = 0x%X\n",
> + replay_state);
> + igt_fail_on_f(replay_state < REPLAY_STATE_3 && replay_state >= REPLAY_STATE_4,
> + "State should be REPLAY_STATE_3 (Active)\n");
> + }
> +
> + igt_remove_fb(data->fd, &ref_fb);
> + igt_remove_fb(data->fd, &ref_fb2);
> + }
> +
> + test_fini(data);
> +}
> +
> +static int opt_handler(int option, int option_index, void *data)
> +{
> + switch (option) {
> + case 'v':
> + opt.visual_confirm = strtol(optarg, NULL, 0);
> + igt_info("Panel Replay Visual Confirm %s\n", opt.visual_confirm ? "enabled" : "disabled");
> + break;
> + default:
> + return IGT_OPT_HANDLER_ERROR;
> + }
> +
> + return IGT_OPT_HANDLER_SUCCESS;
> +}
> +
> +igt_main_args("", long_options, help_str, opt_handler, NULL)
> +{
> + struct test_data data;
> +
> + igt_skip_on_simulation();
> + memset(&data, 0, sizeof(data));
> +
> + igt_fixture
> + {
> + data.fd = drm_open_driver_master(DRIVER_AMDGPU);
> +
> + if (data.fd == -1)
> + igt_skip("Not an amdgpu driver.\n");
> +
> + data.debugfs_fd = igt_debugfs_dir(data.fd);
> +
> + kmstest_set_vt_graphics_mode();
> +
> + igt_display_require(&data.display, data.fd);
> + igt_require(&data.display.is_atomic);
> + igt_display_require_output(&data.display);
> +
> + /* check if visual confirm option available */
> + if (opt.visual_confirm) {
> + igt_skip_on(!igt_amd_has_visual_confirm(data.fd));
> + igt_skip_on_f(!igt_amd_set_visual_confirm(data.fd, VISUAL_CONFIRM_REPLAY),
> + "set Panel Replay visual confirm failed\n");
> + }
> + }
> +
> + igt_describe("Test whether Panel Replay can be enabled with static screen");
> + igt_subtest("replay_static_screen") run_check_replay(&data, TEST_MODE_STATIC_SCREEN);
> +
> + igt_describe("Test whether Panel Replay can be enabled with intermittent live mdoe");
> + igt_subtest("replay_intermittent_live") run_check_replay(&data, TEST_MODE_INTERMITTENT_LIVE);
> +
> + igt_describe("Test whether Panel Replay can be enabled with constant live mdoe");
> + igt_subtest("replay_constant_live") run_check_replay(&data, TEST_MODE_CONSTANT_LIVE);
> +
> + igt_fixture
> + {
> + if (opt.visual_confirm) {
> + igt_skip_on(!igt_amd_has_visual_confirm(data.fd));
> + igt_require_f(igt_amd_set_visual_confirm(data.fd, VISUAL_CONFIRM_DISABLE),
> + "reset Panel Replay visual confirm failed\n");
> + }
> + close(data.debugfs_fd);
> + igt_display_fini(&data.display);
> + drm_close_driver(data.fd);
> + }
> +}
> diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
> index 3982a665f..69706fa70 100644
> --- a/tests/amdgpu/meson.build
> +++ b/tests/amdgpu/meson.build
> @@ -30,6 +30,7 @@ if libdrm_amdgpu.found()
> 'amd_prime',
> 'amd_psr',
> 'amd_ras',
> + 'amd_replay',
> 'amd_security',
> 'amd_uvd_dec',
> 'amd_uvd_enc',
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-05-29 14:09 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-10 3:01 [PATCH i-g-t,v2] tests/amdgpu/amd_replay: Add amd_replay IGT test Tom Chung
2024-05-10 3:28 ` ✓ CI.xeBAT: success for tests/amdgpu/amd_replay: Add amd_replay IGT test (rev2) Patchwork
2024-05-10 3:37 ` ✓ Fi.CI.BAT: " Patchwork
2024-05-10 5:39 ` ✗ CI.xeFULL: failure " Patchwork
2024-05-10 23:24 ` ✗ Fi.CI.IGT: " Patchwork
2024-05-23 21:39 ` [PATCH i-g-t, v2] tests/amdgpu/amd_replay: Add amd_replay IGT test Leo Li
2024-05-29 14:08 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox