* [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc
@ 2024-08-11 20:03 Naladala Ramanaidu
2024-08-11 20:03 ` [PATCH i-g-t v4 1/4] tests/intel/kms_pm_dc: Update VRR handling and eDP output check Naladala Ramanaidu
` (7 more replies)
0 siblings, 8 replies; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-08-11 20:03 UTC (permalink / raw)
To: igt-dev; +Cc: suraj.kandpal, jeevan.b, Naladala Ramanaidu
Naladala Ramanaidu (4):
tests/intel/kms_pm_dc: Update VRR handling and eDP output check
tests/intel/kms_pm_dc: Update test duration to 4 seconds
tests/intel/kms_pm_dc: Add polling for deep-pkgc
HAX patch do not merge
tests/intel-ci/fast-feedback.testlist | 164 +-------------
tests/intel-ci/xe-fast-feedback.testlist | 269 +----------------------
tests/intel/kms_pm_dc.c | 49 +++--
3 files changed, 37 insertions(+), 445 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t v4 1/4] tests/intel/kms_pm_dc: Update VRR handling and eDP output check
2024-08-11 20:03 [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Naladala Ramanaidu
@ 2024-08-11 20:03 ` Naladala Ramanaidu
2024-08-13 9:21 ` Kandpal, Suraj
2024-08-11 20:03 ` [PATCH i-g-t v4 2/4] tests/intel/kms_pm_dc: Update test duration to 4 seconds Naladala Ramanaidu
` (6 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-08-11 20:03 UTC (permalink / raw)
To: igt-dev; +Cc: suraj.kandpal, jeevan.b, Naladala Ramanaidu
It should be enhance the test_deep_pkgc_state function to include
the following changes:
- Removed the unused variable `vrr_supported` to clean up the code.
- Added a check for the eDP connector to ensure proper connector handling.
- Updated VRR handling to disable VRR and commit atomic changes.
- Modified the delay calculation for connector modes to ensure proper
vblank time.
- Removed redundant VRR capability check and skip logic.
v2: Correct indentation and update comments. (Suraj, Jeevan)
v3: Update Commit subject/message. (Kamil)
v4: Update commit subject/message. (Suraj)
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/intel/kms_pm_dc.c | 34 +++++++++++++++++++++++++---------
1 file changed, 25 insertions(+), 9 deletions(-)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 1aef1e02d..367bf4303 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -594,36 +594,52 @@ static void test_deep_pkgc_state(data_t *data)
time_t start = time(NULL), duration = 2, delay;
enum pipe pipe;
bool pkgc_flag = false;
- bool vrr_supported = false, flip = true;
+ bool flip = true;
igt_display_t *display = &data->display;
igt_plane_t *primary;
igt_output_t *output = NULL;
for_each_pipe_with_valid_output(display, pipe, output) {
+ if (output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP)
+ igt_skip("No eDP output found, skipping the test.\n");
+
/* Check VRR capabilities before setting up */
if (igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE) &&
igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) {
- vrr_supported = true;
+ /*
+ * TODO: Add check for vmin = vmax = flipline if VRR enabled.
+ * KMD patches still under review. Need to wait till KMD
+ * patches merge.
+ */
+ igt_pipe_set_prop_value(display, pipe,
+ IGT_CRTC_VRR_ENABLED, false);
+ igt_assert(igt_display_try_commit_atomic(display,
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL) == 0);
break;
}
}
- /* Skip the test if no VRR capable output is found */
- igt_skip_on_f(!vrr_supported,
- "No VRR capable output found, skipping the test.\n");
-
igt_display_reset(display);
-
igt_output_set_pipe(output, pipe);
+ for_each_connector_mode(output) {
+ data->mode = &output->config.connector->modes[j__];
+ delay = 1 * (MSECS / (data->mode->vrefresh));
+ /*
+ * Should be 5ms vblank time required to program higher
+ * watermark levels
+ */
+ if (delay >= (5 * MSECS))
+ break;
+ }
+
data->output = output;
- data->mode = igt_output_get_mode(output);
setup_videoplayback(data);
primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
pre_val = read_pkgc_counter(data->debugfs_root_fd);
- delay = 1 * (MSECS / (data->mode->vrefresh - 10));
igt_plane_set_fb(primary, &data->fb_rgb);
igt_display_commit(&data->display);
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v4 2/4] tests/intel/kms_pm_dc: Update test duration to 4 seconds
2024-08-11 20:03 [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Naladala Ramanaidu
2024-08-11 20:03 ` [PATCH i-g-t v4 1/4] tests/intel/kms_pm_dc: Update VRR handling and eDP output check Naladala Ramanaidu
@ 2024-08-11 20:03 ` Naladala Ramanaidu
2024-08-13 9:23 ` Kandpal, Suraj
2024-08-11 20:03 ` [PATCH i-g-t v4 3/4] tests/intel/kms_pm_dc: Add polling for deep-pkgc Naladala Ramanaidu
` (5 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-08-11 20:03 UTC (permalink / raw)
To: igt-dev; +Cc: suraj.kandpal, jeevan.b, Naladala Ramanaidu
Certain features can prevent timely entry into the C10 state,
causing inconsistent results. So increase test time to get
accurate results.
v2: Split the patch into two. (Kamil)
v3: Declare variable in new line. (Suraj)
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/intel/kms_pm_dc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 367bf4303..565c3d48d 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -591,7 +591,8 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
static void test_deep_pkgc_state(data_t *data)
{
unsigned int pre_val = 0, cur_val = 0;
- time_t start = time(NULL), duration = 2, delay;
+ time_t start = time(NULL);
+ time_t duration = 4, delay;
enum pipe pipe;
bool pkgc_flag = false;
bool flip = true;
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v4 3/4] tests/intel/kms_pm_dc: Add polling for deep-pkgc
2024-08-11 20:03 [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Naladala Ramanaidu
2024-08-11 20:03 ` [PATCH i-g-t v4 1/4] tests/intel/kms_pm_dc: Update VRR handling and eDP output check Naladala Ramanaidu
2024-08-11 20:03 ` [PATCH i-g-t v4 2/4] tests/intel/kms_pm_dc: Update test duration to 4 seconds Naladala Ramanaidu
@ 2024-08-11 20:03 ` Naladala Ramanaidu
2024-08-13 9:26 ` Kandpal, Suraj
2024-08-11 20:03 ` [PATCH i-g-t v4 4/4] HAX patch do not merge Naladala Ramanaidu
` (4 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-08-11 20:03 UTC (permalink / raw)
To: igt-dev; +Cc: suraj.kandpal, jeevan.b, Naladala Ramanaidu
It should be enhance the test_deep_pkgc_state function to include
the following changes:
- Added an interval variable to control the delay between checks.
- Added a wait for vblank to sync the frame time before reading
the package C-state counter.
- Introduced a half-frame delay to ensure the flip occurs when
the frame is active.
- Modified the loop to use igt_wait for better handling of the
package C-state counter read.
- Removed redundant usleep call to streamline the delay handling.
v2: Address and correct review comments (Suraj, Jeevan)
v3: Update commit subject/message. (Kamil)
v4: Update commit subject/message and added comments. (Suraj)
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/intel/kms_pm_dc.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 565c3d48d..270912c46 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -596,6 +596,7 @@ static void test_deep_pkgc_state(data_t *data)
enum pipe pipe;
bool pkgc_flag = false;
bool flip = true;
+ unsigned int interval = 5;
igt_display_t *display = &data->display;
igt_plane_t *primary;
@@ -640,22 +641,25 @@ static void test_deep_pkgc_state(data_t *data)
setup_videoplayback(data);
primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
- pre_val = read_pkgc_counter(data->debugfs_root_fd);
igt_plane_set_fb(primary, &data->fb_rgb);
igt_display_commit(&data->display);
+ /* Waiting for the vblank to sync the frame time */
+ igt_wait_for_vblank_count(data->drm_fd, data->display.pipes[pipe].crtc_offset, 1);
+ pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ /* Added a half-frame delay to ensure the flip occurs when the frame is active. */
+ usleep(delay * 0.5);
while (time(NULL) - start < duration) {
flip = !flip;
igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
igt_display_commit(&data->display);
-
- cur_val = read_pkgc_counter(data->debugfs_root_fd);
+ igt_wait((cur_val = read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
+ delay * 2, interval);
if (cur_val > pre_val) {
pkgc_flag = true;
break;
}
- usleep(delay);
}
cleanup_dc3co_fbs(data);
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v4 4/4] HAX patch do not merge
2024-08-11 20:03 [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Naladala Ramanaidu
` (2 preceding siblings ...)
2024-08-11 20:03 ` [PATCH i-g-t v4 3/4] tests/intel/kms_pm_dc: Add polling for deep-pkgc Naladala Ramanaidu
@ 2024-08-11 20:03 ` Naladala Ramanaidu
2024-08-11 20:24 ` ✗ CI.xeBAT: failure for Improvise-the-deep-pkgc (rev4) Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 13+ messages in thread
From: Naladala Ramanaidu @ 2024-08-11 20:03 UTC (permalink / raw)
To: igt-dev; +Cc: suraj.kandpal, jeevan.b, Naladala Ramanaidu
HAX patch do not merge
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/intel-ci/fast-feedback.testlist | 164 +-------------
tests/intel-ci/xe-fast-feedback.testlist | 269 +----------------------
2 files changed, 2 insertions(+), 431 deletions(-)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..c34c2ab28 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -2,169 +2,7 @@
igt@i915_module_load@load
# Keep alphabetically sorted by default
-igt@core_auth@basic-auth
-igt@debugfs_test@read_all_entries
-igt@debugfs_test@basic-hwmon
-igt@debugfs_test@sysfs
-igt@fbdev@eof
-igt@fbdev@info
-igt@fbdev@nullptr
-igt@fbdev@read
-igt@fbdev@write
-igt@gem_basic@bad-close
-igt@gem_basic@create-close
-igt@gem_basic@create-fd-close
-igt@gem_busy@busy@all-engines
-igt@gem_close_race@basic-process
-igt@gem_close_race@basic-threads
-igt@gem_ctx_create@basic
-igt@gem_ctx_create@basic-files
-igt@gem_ctx_exec@basic
-igt@gem_exec_basic@basic
-igt@gem_exec_create@basic
-igt@gem_exec_fence@basic-busy
-igt@gem_exec_fence@basic-wait
-igt@gem_exec_fence@basic-await
-igt@gem_exec_fence@nb-await
-igt@gem_exec_gttfill@basic
-igt@gem_exec_parallel@engines
-igt@gem_exec_store@basic
-igt@gem_flink_basic@bad-flink
-igt@gem_flink_basic@bad-open
-igt@gem_flink_basic@basic
-igt@gem_flink_basic@double-flink
-igt@gem_flink_basic@flink-lifetime
-igt@gem_huc_copy@huc-copy
-igt@gem_linear_blits@basic
-igt@gem_mmap@basic
-igt@gem_mmap_gtt@basic
-igt@gem_render_linear_blits@basic
-igt@gem_render_tiled_blits@basic
-igt@gem_ringfill@basic-all
-igt@gem_softpin@allocator-basic
-igt@gem_softpin@allocator-basic-reserve
-igt@gem_softpin@safe-alignment
-igt@gem_sync@basic-all
-igt@gem_sync@basic-each
-igt@gem_tiled_blits@basic
-igt@gem_tiled_fence_blits@basic
-igt@gem_tiled_pread_basic
-igt@gem_wait@busy@all-engines
-igt@gem_wait@wait@all-engines
-igt@i915_getparams_basic@basic-eu-total
-igt@i915_getparams_basic@basic-subslice-total
-igt@i915_hangman@error-state-basic
-igt@i915_pciid
-igt@kms_addfb_basic@addfb25-4-tiled
-igt@kms_addfb_basic@addfb25-bad-modifier
-igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
-igt@kms_addfb_basic@addfb25-modifier-no-flag
-igt@kms_addfb_basic@addfb25-x-tiled-legacy
-igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy
-igt@kms_addfb_basic@addfb25-yf-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
-igt@kms_addfb_basic@bad-pitch-0
-igt@kms_addfb_basic@bad-pitch-1024
-igt@kms_addfb_basic@bad-pitch-128
-igt@kms_addfb_basic@bad-pitch-256
-igt@kms_addfb_basic@bad-pitch-32
-igt@kms_addfb_basic@bad-pitch-63
-igt@kms_addfb_basic@bad-pitch-65536
-igt@kms_addfb_basic@bad-pitch-999
-igt@kms_addfb_basic@basic
-igt@kms_addfb_basic@basic-x-tiled-legacy
-igt@kms_addfb_basic@basic-y-tiled-legacy
-igt@kms_addfb_basic@bo-too-small
-igt@kms_addfb_basic@bo-too-small-due-to-tiling
-igt@kms_addfb_basic@clobberred-modifier
-igt@kms_addfb_basic@framebuffer-vs-set-tiling
-igt@kms_addfb_basic@invalid-get-prop
-igt@kms_addfb_basic@invalid-get-prop-any
-igt@kms_addfb_basic@invalid-set-prop
-igt@kms_addfb_basic@invalid-set-prop-any
-igt@kms_addfb_basic@no-handle
-igt@kms_addfb_basic@size-max
-igt@kms_addfb_basic@small-bo
-igt@kms_addfb_basic@tile-pitch-mismatch
-igt@kms_addfb_basic@too-high
-igt@kms_addfb_basic@too-wide
-igt@kms_addfb_basic@unused-handle
-igt@kms_addfb_basic@unused-modifier
-igt@kms_addfb_basic@unused-offsets
-igt@kms_addfb_basic@unused-pitches
-igt@kms_busy@basic
-igt@kms_prop_blob@basic
-igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-after-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size
-igt@kms_cursor_legacy@basic-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
-igt@kms_dsc@dsc-basic
-igt@kms_flip@basic-flip-vs-dpms
-igt@kms_flip@basic-flip-vs-modeset
-igt@kms_flip@basic-flip-vs-wf_vblank
-igt@kms_flip@basic-plain-flip
-igt@kms_force_connector_basic@force-connector-state
-igt@kms_force_connector_basic@force-edid
-igt@kms_force_connector_basic@force-load-detect
-igt@kms_force_connector_basic@prune-stale-modes
-igt@kms_frontbuffer_tracking@basic
-igt@kms_hdmi_inject@inject-audio
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
-igt@kms_pipe_crc_basic@hang-read-crc
-igt@kms_pipe_crc_basic@nonblocking-crc
-igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
-igt@kms_pipe_crc_basic@read-crc
-igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_pm_backlight@basic-brightness
-igt@kms_pm_rpm@basic-pci-d3-state
-igt@kms_pm_rpm@basic-rte
-igt@kms_psr@psr-primary-page-flip
-igt@kms_psr@psr-cursor-plane-move
-igt@kms_psr@psr-sprite-plane-onoff
-igt@kms_psr@psr-primary-mmap-gtt
-igt@kms_setmode@basic-clone-single-crtc
-igt@i915_pm_rps@basic-api
-igt@prime_self_import@basic-llseek-bad
-igt@prime_self_import@basic-llseek-size
-igt@prime_self_import@basic-with_fd_dup
-igt@prime_self_import@basic-with_one_bo
-igt@prime_self_import@basic-with_one_bo_two_files
-igt@prime_self_import@basic-with_two_bos
-igt@prime_vgem@basic-fence-flip
-igt@prime_vgem@basic-fence-mmap
-igt@prime_vgem@basic-fence-read
-igt@prime_vgem@basic-gtt
-igt@prime_vgem@basic-read
-igt@prime_vgem@basic-write
-igt@vgem_basic@setversion
-igt@vgem_basic@create
-igt@vgem_basic@debugfs
-igt@vgem_basic@dmabuf-export
-igt@vgem_basic@dmabuf-fence
-igt@vgem_basic@dmabuf-fence-before
-igt@vgem_basic@dmabuf-mmap
-igt@vgem_basic@mmap
-igt@vgem_basic@second-client
-igt@vgem_basic@sysfs
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-
-igt@core_hotunplug@unbind-rebind
-igt@vgem_basic@unload
-igt@i915_module_load@reload
-igt@gem_lmem_swapping@basic
-igt@gem_lmem_swapping@parallel-random-engines
-igt@gem_lmem_swapping@random-engines
-igt@gem_lmem_swapping@verify-random
-igt@i915_pm_rpm@module-reload
+igt@kms_pm_dc@deep-pkgc
# Kernel selftests
igt@i915_selftest@live
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 01b01dcf9..6a3e9d8e6 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -7,271 +7,4 @@ igt@fbdev@nullptr
igt@fbdev@read
igt@fbdev@write
-igt@kms_addfb_basic@addfb25-4-tiled
-igt@kms_addfb_basic@addfb25-bad-modifier
-igt@kms_addfb_basic@addfb25-modifier-no-flag
-igt@kms_addfb_basic@addfb25-x-tiled-legacy
-igt@kms_addfb_basic@addfb25-yf-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
-igt@kms_addfb_basic@bad-pitch-0
-igt@kms_addfb_basic@bad-pitch-1024
-igt@kms_addfb_basic@bad-pitch-128
-igt@kms_addfb_basic@bad-pitch-256
-igt@kms_addfb_basic@bad-pitch-32
-igt@kms_addfb_basic@bad-pitch-63
-igt@kms_addfb_basic@bad-pitch-65536
-igt@kms_addfb_basic@bad-pitch-999
-igt@kms_addfb_basic@basic
-igt@kms_addfb_basic@basic-x-tiled-legacy
-igt@kms_addfb_basic@bo-too-small
-igt@kms_addfb_basic@invalid-get-prop
-igt@kms_addfb_basic@invalid-get-prop-any
-igt@kms_addfb_basic@invalid-set-prop
-igt@kms_addfb_basic@invalid-set-prop-any
-igt@kms_addfb_basic@no-handle
-igt@kms_addfb_basic@size-max
-igt@kms_addfb_basic@small-bo
-igt@kms_addfb_basic@too-high
-igt@kms_addfb_basic@too-wide
-igt@kms_addfb_basic@unused-handle
-igt@kms_addfb_basic@unused-modifier
-igt@kms_addfb_basic@unused-offsets
-igt@kms_addfb_basic@unused-pitches
-igt@kms_cursor_legacy@basic-flip-after-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-after-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size
-igt@kms_cursor_legacy@basic-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
-igt@kms_dsc@dsc-basic
-igt@kms_flip@basic-flip-vs-dpms
-igt@kms_flip@basic-flip-vs-modeset
-igt@kms_flip@basic-flip-vs-wf_vblank
-igt@kms_flip@basic-plain-flip
-igt@kms_force_connector_basic@force-connector-state
-igt@kms_force_connector_basic@force-edid
-igt@kms_force_connector_basic@prune-stale-modes
-igt@kms_frontbuffer_tracking@basic
-igt@kms_hdmi_inject@inject-audio
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
-igt@kms_pipe_crc_basic@hang-read-crc
-igt@kms_pipe_crc_basic@nonblocking-crc
-igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
-igt@kms_pipe_crc_basic@read-crc
-igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_prop_blob@basic
-igt@kms_psr@psr-primary-page-flip
-igt@kms_psr@psr-cursor-plane-move
-igt@kms_psr@psr-sprite-plane-onoff
-igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all
-igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1
-igt@xe_compute@compute-square
-igt@xe_create@create-execqueues-noleak
-igt@xe_create@create-execqueues-leak
-igt@xe_create@create-invalid-mbz
-igt@xe_create@create-massive-size
-igt@xe_debugfs@base
-igt@xe_debugfs@gt
-igt@xe_debugfs@forcewake
-igt@xe_dma_buf_sync@export-dma-buf-once
-igt@xe_dma_buf_sync@export-dma-buf-once-read-sync
-igt@xe_evict_ccs@evict-overcommit-simple
-igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd
-igt@xe_exec_atomic@basic-dec-all
-igt@xe_exec_atomic@basic-inc-all
-igt@xe_exec_balancer@twice-virtual-basic
-igt@xe_exec_balancer@no-exec-virtual-basic
-igt@xe_exec_balancer@twice-cm-virtual-basic
-igt@xe_exec_balancer@no-exec-cm-virtual-basic
-igt@xe_exec_balancer@twice-virtual-userptr
-igt@xe_exec_balancer@twice-cm-virtual-userptr
-igt@xe_exec_balancer@twice-virtual-rebind
-igt@xe_exec_balancer@twice-cm-virtual-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-parallel-basic
-igt@xe_exec_balancer@no-exec-parallel-basic
-igt@xe_exec_balancer@twice-parallel-userptr
-igt@xe_exec_balancer@twice-parallel-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-invalidate
-igt@xe_exec_basic@twice-basic
-igt@xe_exec_basic@no-exec-basic
-igt@xe_exec_basic@twice-basic-defer-mmap
-igt@xe_exec_basic@twice-basic-defer-bind
-igt@xe_exec_basic@twice-userptr
-igt@xe_exec_basic@twice-rebind
-igt@xe_exec_basic@twice-userptr-rebind
-igt@xe_exec_basic@twice-userptr-invalidate
-igt@xe_exec_basic@no-exec-userptr-invalidate
-igt@xe_exec_basic@twice-bindexecqueue
-igt@xe_exec_basic@no-exec-bindexecqueue
-igt@xe_exec_basic@twice-bindexecqueue-userptr
-igt@xe_exec_basic@twice-bindexecqueue-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_compute_mode@twice-basic
-igt@xe_exec_compute_mode@twice-preempt-fence-early
-igt@xe_exec_compute_mode@twice-userptr
-igt@xe_exec_compute_mode@twice-rebind
-igt@xe_exec_compute_mode@twice-userptr-rebind
-igt@xe_exec_compute_mode@twice-userptr-invalidate
-igt@xe_exec_compute_mode@twice-bindexecqueue
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr
-igt@xe_exec_compute_mode@twice-bindexecqueue-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_queue_property@invalid-property
-igt@xe_exec_reset@close-fd-no-exec
-igt@xe_exec_reset@cm-close-fd-no-exec
-igt@xe_exec_reset@virtual-close-fd-no-exec
-igt@xe_exec_store@basic-store
-igt@xe_gpgpu_fill@basic
-igt@xe_gt_freq@freq_basic_api
-igt@xe_gt_freq@freq_fixed_idle
-igt@xe_gt_freq@freq_range_idle
-igt@xe_huc_copy@huc_copy
-igt@xe_intel_bb@add-remove-objects
-igt@xe_intel_bb@bb-with-allocator
-igt@xe_intel_bb@blit-reloc
-igt@xe_intel_bb@blit-simple
-igt@xe_intel_bb@create-in-region
-igt@xe_intel_bb@delta-check
-igt@xe_intel_bb@destroy-bb
-igt@xe_intel_bb@intel-bb-blit-none
-igt@xe_intel_bb@intel-bb-blit-x
-igt@xe_intel_bb@intel-bb-blit-y
-igt@xe_intel_bb@lot-of-buffers
-igt@xe_intel_bb@offset-control
-igt@xe_intel_bb@purge-bb
-igt@xe_intel_bb@render
-igt@xe_intel_bb@reset-bb
-igt@xe_intel_bb@simple-bb
-igt@xe_intel_bb@simple-bb-ctx
-igt@xe_mmap@bad-extensions
-igt@xe_mmap@bad-flags
-igt@xe_mmap@bad-object
-igt@xe_mmap@cpu-caching
-igt@xe_mmap@system
-igt@xe_mmap@vram
-igt@xe_mmap@vram-system
-igt@xe_pm_residency@gt-c6-on-idle
-igt@xe_prime_self_import@basic-with_one_bo
-igt@xe_prime_self_import@basic-with_fd_dup
-#igt@xe_prime_self_import@basic-llseek-size
-igt@xe_query@query-engines
-igt@xe_query@query-mem-usage
-igt@xe_query@query-gt-list
-igt@xe_query@query-config
-igt@xe_query@query-hwconfig
-igt@xe_query@query-topology
-igt@xe_query@query-invalid-extension
-igt@xe_query@query-invalid-query
-igt@xe_query@query-invalid-size
-igt@xe_spin_batch@spin-basic
-igt@xe_spin_batch@spin-batch
-igt@xe_sysfs_defaults@engine-defaults
-igt@xe_sysfs_scheduler@preempt_timeout_us-invalid
-igt@xe_sysfs_scheduler@preempt_timeout_us-min-max
-igt@xe_sysfs_scheduler@timeslice_duration_us-invalid
-igt@xe_sysfs_scheduler@timeslice_duration_us-min-max
-igt@xe_sysfs_scheduler@job_timeout_ms-invalid
-igt@xe_sysfs_scheduler@job_timeout_ms-min-max
-#igt@xe_vm@bind-once
-#igt@xe_vm@scratch
-igt@xe_vm@shared-pte-page
-igt@xe_vm@shared-pde-page
-igt@xe_vm@shared-pde2-page
-igt@xe_vm@shared-pde3-page
-igt@xe_vm@bind-execqueues-independent
-igt@xe_vm@large-split-binds-268435456
-igt@xe_vm@munmap-style-unbind-one-partial
-igt@xe_vm@munmap-style-unbind-end
-igt@xe_vm@munmap-style-unbind-front
-igt@xe_vm@munmap-style-unbind-userptr-one-partial
-igt@xe_vm@munmap-style-unbind-userptr-end
-igt@xe_vm@munmap-style-unbind-userptr-front
-igt@xe_vm@munmap-style-unbind-userptr-inval-end
-igt@xe_vm@munmap-style-unbind-userptr-inval-front
-igt@xe_pat@userptr-coh-none
-igt@xe_pat@prime-self-import-coh
-igt@xe_pat@prime-external-import-coh
-igt@xe_pat@pat-index-all
-igt@xe_pat@pat-index-xelp
-igt@xe_pat@pat-index-xehpc
-igt@xe_pat@pat-index-xelpg
-igt@xe_pat@pat-index-xe2
-igt@xe_waitfence@abstime
-igt@xe_waitfence@engine
-igt@xe_waitfence@reltime
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-igt@core_hotunplug@unbind-rebind
-
-# Run KUnit tests at the end
-igt@xe_live_ktest@xe_bo
-igt@xe_live_ktest@xe_dma_buf
-igt@xe_live_ktest@xe_migrate
-
-# Move fault_mode tests at the end to unblock execution
-igt@xe_exec_fault_mode@twice-basic
-igt@xe_exec_fault_mode@many-basic
-igt@xe_exec_fault_mode@twice-userptr
-igt@xe_exec_fault_mode@twice-rebind
-igt@xe_exec_fault_mode@twice-userptr-rebind
-igt@xe_exec_fault_mode@twice-userptr-invalidate
-igt@xe_exec_fault_mode@twice-bindexecqueue
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_fault_mode@twice-basic-imm
-igt@xe_exec_fault_mode@twice-userptr-imm
-igt@xe_exec_fault_mode@twice-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-basic-prefetch
-igt@xe_exec_fault_mode@twice-userptr-prefetch
-igt@xe_exec_fault_mode@twice-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-invalid-fault
-igt@xe_exec_fault_mode@twice-invalid-userptr-fault
-igt@xe_exec_threads@threads-basic
-igt@xe_exec_threads@threads-mixed-basic
-igt@xe_exec_threads@threads-mixed-shared-vm-basic
-igt@xe_exec_threads@threads-mixed-fd-basic
-igt@xe_exec_threads@threads-mixed-userptr-invalidate
-igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race
-igt@xe_evict@evict-beng-mixed-threads-small-multi-vm
-igt@xe_evict@evict-beng-small
-igt@xe_evict@evict-beng-small-cm
-igt@xe_evict@evict-beng-small-external
-igt@xe_evict@evict-beng-small-external-cm
-igt@xe_evict@evict-beng-small-multi-vm
-igt@xe_evict@evict-cm-threads-small
-igt@xe_evict@evict-mixed-threads-small
-igt@xe_evict@evict-mixed-threads-small-multi-vm
-igt@xe_evict@evict-small
-igt@xe_evict@evict-small-cm
-igt@xe_evict@evict-small-external
-igt@xe_evict@evict-small-external-cm
-igt@xe_evict@evict-small-multi-vm
-igt@xe_evict@evict-small-multi-vm-cm
-igt@xe_evict@evict-threads-small
+igt@kms_pm_dc@deep-pkgc
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✗ CI.xeBAT: failure for Improvise-the-deep-pkgc (rev4)
2024-08-11 20:03 [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Naladala Ramanaidu
` (3 preceding siblings ...)
2024-08-11 20:03 ` [PATCH i-g-t v4 4/4] HAX patch do not merge Naladala Ramanaidu
@ 2024-08-11 20:24 ` Patchwork
2024-08-11 20:40 ` ✗ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-08-11 20:24 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3277 bytes --]
== Series Details ==
Series: Improvise-the-deep-pkgc (rev4)
URL : https://patchwork.freedesktop.org/series/136055/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7966_BAT -> XEIGTPW_11554_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11554_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11554_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11554_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pm_dc@deep-pkgc:
- bat-bmg-1: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/bat-bmg-1/igt@kms_pm_dc@deep-pkgc.html
- bat-adlp-vf: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/bat-adlp-vf/igt@kms_pm_dc@deep-pkgc.html
- bat-lnl-2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/bat-lnl-2/igt@kms_pm_dc@deep-pkgc.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_pm_dc@deep-pkgc:
- {bat-bmg-2}: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/bat-bmg-2/igt@kms_pm_dc@deep-pkgc.html
Known issues
------------
Here are the changes found in XEIGTPW_11554_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_pm_dc@deep-pkgc:
- bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#1024])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/bat-pvc-2/igt@kms_pm_dc@deep-pkgc.html
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#2007])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/bat-dg2-oem2/igt@kms_pm_dc@deep-pkgc.html
- bat-atsm-2: NOTRUN -> [SKIP][7] ([Intel XE#1024])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/bat-atsm-2/igt@kms_pm_dc@deep-pkgc.html
- bat-adlp-7: NOTRUN -> [SKIP][8] ([Intel XE#2007])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/bat-adlp-7/igt@kms_pm_dc@deep-pkgc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
Build changes
-------------
* IGT: IGT_7966 -> IGTPW_11554
IGTPW_11554: 11554
IGT_7966: f16c5f500adc5fa41bd52a3ef2a84165da4fb596 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1747-a95e3e46063ddcea598b2ac865173debffba13fe: a95e3e46063ddcea598b2ac865173debffba13fe
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/index.html
[-- Attachment #2: Type: text/html, Size: 4092 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Fi.CI.BAT: failure for Improvise-the-deep-pkgc (rev4)
2024-08-11 20:03 [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Naladala Ramanaidu
` (4 preceding siblings ...)
2024-08-11 20:24 ` ✗ CI.xeBAT: failure for Improvise-the-deep-pkgc (rev4) Patchwork
@ 2024-08-11 20:40 ` Patchwork
2024-08-11 21:22 ` ✗ CI.xeFULL: " Patchwork
2024-08-12 4:03 ` [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Kandpal, Suraj
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-08-11 20:40 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9100 bytes --]
== Series Details ==
Series: Improvise-the-deep-pkgc (rev4)
URL : https://patchwork.freedesktop.org/series/136055/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7966 -> IGTPW_11554
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11554 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11554, 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_11554/index.html
Participating hosts (42 -> 38)
------------------------------
Missing (4): bat-dg2-11 fi-cfl-8109u fi-snb-2520m fi-elk-e7500
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11554:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pm_dc@deep-pkgc:
- bat-twl-1: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-twl-1/igt@kms_pm_dc@deep-pkgc.html
- bat-rplp-1: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-rplp-1/igt@kms_pm_dc@deep-pkgc.html
- bat-twl-2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-twl-2/igt@kms_pm_dc@deep-pkgc.html
Known issues
------------
Here are the changes found in IGTPW_11554 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_pm_dc@deep-pkgc:
- bat-rpls-4: NOTRUN -> [SKIP][4] ([i915#3828])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-rpls-4/igt@kms_pm_dc@deep-pkgc.html
- fi-kbl-7567u: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-kbl-7567u/igt@kms_pm_dc@deep-pkgc.html
- fi-cfl-8700k: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-cfl-8700k/igt@kms_pm_dc@deep-pkgc.html
- fi-kbl-8809g: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-kbl-8809g/igt@kms_pm_dc@deep-pkgc.html
- bat-apl-1: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-apl-1/igt@kms_pm_dc@deep-pkgc.html
- bat-dg2-14: NOTRUN -> [SKIP][9] ([i915#3828])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-dg2-14/igt@kms_pm_dc@deep-pkgc.html
- bat-kbl-2: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-kbl-2/igt@kms_pm_dc@deep-pkgc.html
- bat-arls-5: NOTRUN -> [SKIP][11] ([i915#3828])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-arls-5/igt@kms_pm_dc@deep-pkgc.html
- bat-adlm-1: NOTRUN -> [SKIP][12] ([i915#3361])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-adlm-1/igt@kms_pm_dc@deep-pkgc.html
- fi-rkl-11600: NOTRUN -> [SKIP][13] ([i915#3828])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-rkl-11600/igt@kms_pm_dc@deep-pkgc.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][14] ([i915#3828])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-tgl-1115g4/igt@kms_pm_dc@deep-pkgc.html
- bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#6078])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-atsm-1/igt@kms_pm_dc@deep-pkgc.html
- fi-cfl-guc: NOTRUN -> [SKIP][16]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-cfl-guc/igt@kms_pm_dc@deep-pkgc.html
- bat-mtlp-6: NOTRUN -> [SKIP][17] ([i915#3828])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-mtlp-6/igt@kms_pm_dc@deep-pkgc.html
- bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#3828])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-dg2-9/igt@kms_pm_dc@deep-pkgc.html
- fi-kbl-x1275: NOTRUN -> [SKIP][19]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-kbl-x1275/igt@kms_pm_dc@deep-pkgc.html
- bat-adlp-11: NOTRUN -> [SKIP][20] ([i915#3828])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-adlp-11/igt@kms_pm_dc@deep-pkgc.html
- bat-arls-2: NOTRUN -> [SKIP][21] ([i915#3828])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-arls-2/igt@kms_pm_dc@deep-pkgc.html
- fi-ivb-3770: NOTRUN -> [SKIP][22]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-ivb-3770/igt@kms_pm_dc@deep-pkgc.html
- bat-mtlp-8: NOTRUN -> [SKIP][23] ([i915#3828])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-mtlp-8/igt@kms_pm_dc@deep-pkgc.html
- bat-dg2-8: NOTRUN -> [SKIP][24] ([i915#3361])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-dg2-8/igt@kms_pm_dc@deep-pkgc.html
- fi-kbl-guc: NOTRUN -> [SKIP][25]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-kbl-guc/igt@kms_pm_dc@deep-pkgc.html
- bat-adls-6: NOTRUN -> [SKIP][26] ([i915#3361])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-adls-6/igt@kms_pm_dc@deep-pkgc.html
- fi-ilk-650: NOTRUN -> [SKIP][27]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-ilk-650/igt@kms_pm_dc@deep-pkgc.html
- bat-jsl-1: NOTRUN -> [SKIP][28] ([i915#3828])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-jsl-1/igt@kms_pm_dc@deep-pkgc.html
- bat-arls-1: NOTRUN -> [SKIP][29] ([i915#3828])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-arls-1/igt@kms_pm_dc@deep-pkgc.html
- fi-blb-e6850: NOTRUN -> [SKIP][30]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-blb-e6850/igt@kms_pm_dc@deep-pkgc.html
- fi-bsw-n3050: NOTRUN -> [SKIP][31]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-bsw-n3050/igt@kms_pm_dc@deep-pkgc.html
- bat-adlp-6: NOTRUN -> [SKIP][32] ([i915#3828])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-adlp-6/igt@kms_pm_dc@deep-pkgc.html
- bat-arlh-2: NOTRUN -> [SKIP][33] ([i915#11346])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-arlh-2/igt@kms_pm_dc@deep-pkgc.html
- fi-pnv-d510: NOTRUN -> [SKIP][34]
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-pnv-d510/igt@kms_pm_dc@deep-pkgc.html
- bat-dg1-7: NOTRUN -> [SKIP][35] ([i915#3361])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-dg1-7/igt@kms_pm_dc@deep-pkgc.html
- fi-glk-j4005: NOTRUN -> [SKIP][36]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/fi-glk-j4005/igt@kms_pm_dc@deep-pkgc.html
- bat-adlp-9: NOTRUN -> [SKIP][37] ([i915#3828])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-adlp-9/igt@kms_pm_dc@deep-pkgc.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- bat-arls-2: [DMESG-WARN][38] ([i915#11349] / [i915#11378]) -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7966/bat-arls-2/igt@i915_selftest@live@hangcheck.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-arls-2/igt@i915_selftest@live@hangcheck.html
- bat-adlp-9: [INCOMPLETE][40] ([i915#9413]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7966/bat-adlp-9/igt@i915_selftest@live@hangcheck.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-adlp-9/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@objects:
- bat-arls-1: [DMESG-FAIL][42] ([i915#10262]) -> [PASS][43] +36 other tests pass
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7966/bat-arls-1/igt@i915_selftest@live@objects.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/bat-arls-1/igt@i915_selftest@live@objects.html
[i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7966 -> IGTPW_11554
CI-20190529: 20190529
CI_DRM_15212: a95e3e46063ddcea598b2ac865173debffba13fe @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11554: 11554
IGT_7966: f16c5f500adc5fa41bd52a3ef2a84165da4fb596 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11554/index.html
[-- Attachment #2: Type: text/html, Size: 11124 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeFULL: failure for Improvise-the-deep-pkgc (rev4)
2024-08-11 20:03 [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Naladala Ramanaidu
` (5 preceding siblings ...)
2024-08-11 20:40 ` ✗ Fi.CI.BAT: " Patchwork
@ 2024-08-11 21:22 ` Patchwork
2024-08-12 4:03 ` [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Kandpal, Suraj
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-08-11 21:22 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 59399 bytes --]
== Series Details ==
Series: Improvise-the-deep-pkgc (rev4)
URL : https://patchwork.freedesktop.org/series/136055/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7966_full -> XEIGTPW_11554_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11554_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11554_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11554_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- {shard-bmg}: [FAIL][3] ([Intel XE#2436]) -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_flip@2x-flip-vs-panning-interruptible@ab-dp2-hdmi-a3:
- {shard-bmg}: [PASS][5] -> [DMESG-WARN][6] +11 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning-interruptible@ab-dp2-hdmi-a3.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- {shard-bmg}: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
Known issues
------------
Here are the changes found in XEIGTPW_11554_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [PASS][8] -> [FAIL][9] ([Intel XE#911]) +3 other tests fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-lnl: [PASS][10] -> [FAIL][11] ([Intel XE#1659])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-1/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1512])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1399]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#373]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-6/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#455])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1413])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1424])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#309]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#599]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-3/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1421]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-5/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#1195] / [Intel XE#2049])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-435/igt@kms_flip@flip-vs-suspend@c-dp4.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-433/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1401] / [Intel XE#1745])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1401])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1469])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#651]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#651])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#653]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#656]) +7 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-2:
- shard-lnl: [PASS][32] -> [DMESG-WARN][33] ([Intel XE#324])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-5/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-2.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-7/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-2.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1406]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-7/igt@kms_psr@pr-sprite-render.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1437])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-3/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#1201] / [Intel XE#327])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-436/igt@kms_rotation_crc@primary-rotation-90.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system:
- shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#2028]) +9 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-7/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-1/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [PASS][39] -> [TIMEOUT][40] ([Intel XE#1473])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-435/igt@xe_evict@evict-beng-cm-threads-large.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-cm-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#688])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-7/igt@xe_evict@evict-cm-threads-large-multi-vm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1392])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_module_load@unload:
- shard-dg2-set2: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#1551] / [Intel XE#2019])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_module_load@unload.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@xe_module_load@unload.html
* igt@xe_pm@s4-basic:
- shard-lnl: [PASS][45] -> [ABORT][46] ([Intel XE#1358] / [Intel XE#1607])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-8/igt@xe_pm@s4-basic.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-2/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-dg2-set2: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#2019]) +1 other test dmesg-warn
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_pm@s4-vm-bind-prefetch.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-466/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#944])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-8/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2:
- {shard-bmg}: [DMESG-WARN][50] ([Intel XE#1033]) -> [PASS][51] +1 other test pass
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-lnl: [FAIL][52] ([Intel XE#1701]) -> [PASS][53] +1 other test pass
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs:
- {shard-bmg}: [DMESG-WARN][54] ([Intel XE#877]) -> [PASS][55] +1 other test pass
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-1/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-7/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- {shard-bmg}: [FAIL][56] ([Intel XE#1426]) -> [PASS][57] +1 other test pass
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-lnl: [FAIL][58] ([Intel XE#1426]) -> [PASS][59] +1 other test pass
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-dp-2:
- {shard-bmg}: [FAIL][60] ([Intel XE#2436]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-dp-2.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-lnl: [DMESG-WARN][62] -> [PASS][63] +1 other test pass
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-6/igt@kms_cursor_crc@cursor-suspend.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-8/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-lnl: [DMESG-WARN][64] ([Intel XE#877]) -> [PASS][65] +1 other test pass
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-6/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-1/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3:
- {shard-bmg}: [INCOMPLETE][66] -> [PASS][67] +1 other test pass
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible@bc-dp2-hdmi-a3:
- {shard-bmg}: [DMESG-WARN][68] -> [PASS][69] +6 other tests pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible@bc-dp2-hdmi-a3.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check@b-edp1:
- shard-lnl: [FAIL][70] ([Intel XE#886]) -> [PASS][71] +1 other test pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: [DMESG-FAIL][72] ([Intel XE#324]) -> [PASS][73] +1 other test pass
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-3/igt@kms_plane@plane-position-covered.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-6/igt@kms_plane@plane-position-covered.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4:
- shard-lnl: [DMESG-WARN][74] ([Intel XE#324]) -> [PASS][75] +5 other tests pass
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-5/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-7/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4.html
* igt@kms_plane_cursor@viewport@pipe-d-hdmi-a-6-size-256:
- shard-dg2-set2: [INCOMPLETE][76] ([Intel XE#1195]) -> [PASS][77] +1 other test pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@kms_plane_cursor@viewport@pipe-d-hdmi-a-6-size-256.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-466/igt@kms_plane_cursor@viewport@pipe-d-hdmi-a-6-size-256.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][78] ([Intel XE#361]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_pm_backlight@basic-brightness:
- shard-lnl: [SKIP][80] ([Intel XE#870]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-8/igt@kms_pm_backlight@basic-brightness.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-8/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][82] ([Intel XE#718]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-lnl: [FAIL][84] ([Intel XE#2028]) -> [PASS][85] +5 other tests pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-1/igt@kms_pm_rpm@system-suspend-modeset.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: [FAIL][86] ([Intel XE#1649]) -> [PASS][87] +1 other test pass
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-2/igt@kms_psr@fbc-psr2-primary-render.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][88] ([Intel XE#899]) -> [PASS][89] +1 other test pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][90] ([Intel XE#2443]) -> [PASS][91] +1 other test pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-2/igt@kms_vrr@flipline.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-3/igt@kms_vrr@flipline.html
* igt@xe_evict@evict-cm-threads-large:
- {shard-bmg}: [TIMEOUT][92] ([Intel XE#1473]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-6/igt@xe_evict@evict-cm-threads-large.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-5/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [TIMEOUT][94] ([Intel XE#1473]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@xe_evict@evict-mixed-threads-large.html
- {shard-bmg}: [TIMEOUT][96] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-3/igt@xe_evict@evict-mixed-threads-large.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-5/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_reset@parallel-gt-reset:
- {shard-bmg}: [TIMEOUT][98] ([Intel XE#2105]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][100] ([Intel XE#2136]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@xe_module_load@reload.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-433/igt@xe_module_load@reload.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][102] ([Intel XE#1162]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [ABORT][104] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-lnl-6/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][106] ([Intel XE#2019] / [Intel XE#2280]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-435/igt@xe_pm@s4-vm-bind-unbind-all.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: [SKIP][108] ([Intel XE#873]) -> [SKIP][109] ([Intel XE#1201] / [Intel XE#873])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][110] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][111] ([Intel XE#316]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][112] ([Intel XE#316]) -> [SKIP][113] ([Intel XE#1201] / [Intel XE#316])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-433/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: [SKIP][114] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][115] ([Intel XE#1124]) +6 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][116] ([Intel XE#1124]) -> [SKIP][117] ([Intel XE#1124] / [Intel XE#1201]) +8 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][118] ([Intel XE#619]) -> [SKIP][119] ([Intel XE#1201] / [Intel XE#619])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][120] ([Intel XE#610]) -> [SKIP][121] ([Intel XE#1201] / [Intel XE#610])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][122] ([Intel XE#2191]) -> [SKIP][123] ([Intel XE#1201] / [Intel XE#2191]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][124] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][125] ([Intel XE#2191])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][126] ([Intel XE#367]) -> [SKIP][127] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][128] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][129] ([Intel XE#367]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][130] ([Intel XE#787]) -> [SKIP][131] ([Intel XE#1201] / [Intel XE#787]) +69 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][132] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][133] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +19 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][134] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][135] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][136] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][137] ([Intel XE#787]) +48 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][138] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][139] ([Intel XE#1252]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][140] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][141] ([Intel XE#306])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-435/igt@kms_chamelium_color@degamma.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][142] ([Intel XE#306]) -> [SKIP][143] ([Intel XE#1201] / [Intel XE#306]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_chamelium_color@gamma.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-436/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: [SKIP][144] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][145] ([Intel XE#373]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@kms_chamelium_edid@hdmi-mode-timings.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][146] ([Intel XE#373]) -> [SKIP][147] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][148] ([Intel XE#307]) -> [SKIP][149] ([Intel XE#1201] / [Intel XE#307]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][150] ([Intel XE#455]) -> [SKIP][151] ([Intel XE#1201] / [Intel XE#455]) +15 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_content_protection@lic-type-1.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-466/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][152] ([Intel XE#308]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#308])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][154] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][155] ([Intel XE#776])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [DMESG-WARN][156] ([Intel XE#1551]) -> [INCOMPLETE][157] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#2049])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-433/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][158] ([Intel XE#651]) -> [SKIP][159] ([Intel XE#1201] / [Intel XE#651]) +24 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][160] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][161] ([Intel XE#651]) +16 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][162] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][163] ([Intel XE#653]) +20 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][164] ([Intel XE#653]) -> [SKIP][165] ([Intel XE#1201] / [Intel XE#653]) +29 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][166] ([Intel XE#605]) -> [SKIP][167] ([Intel XE#1201] / [Intel XE#605])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][168] ([Intel XE#1201] / [Intel XE#356]) -> [SKIP][169] ([Intel XE#356])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: [SKIP][170] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][171] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][172] ([Intel XE#498]) -> [SKIP][173] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][174] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][175] ([Intel XE#2318] / [Intel XE#455]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][176] ([Intel XE#1201] / [Intel XE#2318]) -> [SKIP][177] ([Intel XE#2318]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][178] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][179] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][180] ([Intel XE#2318]) -> [SKIP][181] ([Intel XE#1201] / [Intel XE#2318]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: [SKIP][182] ([Intel XE#1201] / [Intel XE#908]) -> [SKIP][183] ([Intel XE#908])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-435/igt@kms_pm_dc@dc6-dpms.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][184] ([Intel XE#1489]) -> [SKIP][185] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2-set2: [SKIP][186] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][187] ([Intel XE#1489]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][188] ([Intel XE#929]) -> [SKIP][189] ([Intel XE#1201] / [Intel XE#929]) +13 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-render.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: [SKIP][190] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][191] ([Intel XE#929]) +8 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-433/igt@kms_psr@fbc-psr2-dpms.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][192] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][193] ([Intel XE#327]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][194] ([Intel XE#1127]) -> [SKIP][195] ([Intel XE#1127] / [Intel XE#1201])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: [SKIP][196] ([Intel XE#327]) -> [SKIP][197] ([Intel XE#1201] / [Intel XE#327])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-270.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][198] ([Intel XE#1201] / [Intel XE#362]) -> [SKIP][199] ([Intel XE#1500])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][200] ([Intel XE#330]) -> [SKIP][201] ([Intel XE#1201] / [Intel XE#330])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][202] ([Intel XE#1201] / [Intel XE#2168]) -> [SKIP][203] ([Intel XE#2168])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-433/igt@kms_vrr@cmrr.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: [SKIP][204] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][205] ([Intel XE#455]) +11 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_vrr@flipline.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@kms_vrr@flipline.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][206] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][207] ([Intel XE#1091])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][208] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][209] ([Intel XE#1123])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][210] ([Intel XE#1126]) -> [SKIP][211] ([Intel XE#1126] / [Intel XE#1201])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][212] ([Intel XE#1041] / [Intel XE#1473]) -> [INCOMPLETE][213] ([Intel XE#1473])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-dg2-set2: [INCOMPLETE][214] ([Intel XE#1195] / [Intel XE#1473]) -> [TIMEOUT][215] ([Intel XE#1473])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@xe_evict@evict-beng-mixed-threads-large.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-435/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [TIMEOUT][216] ([Intel XE#1473]) -> [TIMEOUT][217] ([Intel XE#1041] / [Intel XE#1473])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [INCOMPLETE][218] ([Intel XE#1473]) -> [INCOMPLETE][219] ([Intel XE#1195] / [Intel XE#1473])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-large.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: [SKIP][220] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][221] ([Intel XE#288]) +16 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][222] ([Intel XE#288]) -> [SKIP][223] ([Intel XE#1201] / [Intel XE#288]) +20 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][224] ([Intel XE#1201] / [Intel XE#560]) -> [SKIP][225] ([Intel XE#560])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@xe_media_fill@media-fill.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][226] ([Intel XE#1201] / [Intel XE#512]) -> [SKIP][227] ([Intel XE#512])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@xe_mmap@small-bar.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@xe_mmap@small-bar.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][228] ([Intel XE#1201] / [Intel XE#2207]) -> [SKIP][229] ([Intel XE#2207]) +5 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][230] ([Intel XE#2207]) -> [SKIP][231] ([Intel XE#1201] / [Intel XE#2207]) +3 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_oa@polling-small-buf.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-434/igt@xe_oa@polling-small-buf.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][232] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][233] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][235] ([Intel XE#2284] / [Intel XE#366])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@xe_pm@s4-d3cold-basic-exec.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][236] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][237] ([Intel XE#944])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-433/igt@xe_query@multigpu-query-cs-cycles.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-432/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][238] ([Intel XE#944]) -> [SKIP][239] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/shard-dg2-436/igt@xe_query@multigpu-query-invalid-cs-cycles.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[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#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
[Intel XE#2026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2026
[Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2207
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2357]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2357
[Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_7966 -> IGTPW_11554
IGTPW_11554: 11554
IGT_7966: f16c5f500adc5fa41bd52a3ef2a84165da4fb596 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1747-a95e3e46063ddcea598b2ac865173debffba13fe: a95e3e46063ddcea598b2ac865173debffba13fe
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11554/index.html
[-- Attachment #2: Type: text/html, Size: 76068 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc
2024-08-11 20:03 [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Naladala Ramanaidu
` (6 preceding siblings ...)
2024-08-11 21:22 ` ✗ CI.xeFULL: " Patchwork
@ 2024-08-12 4:03 ` Kandpal, Suraj
7 siblings, 0 replies; 13+ messages in thread
From: Kandpal, Suraj @ 2024-08-12 4:03 UTC (permalink / raw)
To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org; +Cc: B, Jeevan
> -----Original Message-----
> From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
> Sent: Monday, August 12, 2024 1:34 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Kandpal, Suraj <suraj.kandpal@intel.com>; B, Jeevan
> <jeevan.b@intel.com>; Naladala, Ramanaidu
> <ramanaidu.naladala@intel.com>
> Subject: [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc
>
Do you mean Improve Deep PKGC
Regards,
Suraj Kandpal
> Naladala Ramanaidu (4):
> tests/intel/kms_pm_dc: Update VRR handling and eDP output check
> tests/intel/kms_pm_dc: Update test duration to 4 seconds
> tests/intel/kms_pm_dc: Add polling for deep-pkgc
> HAX patch do not merge
>
> tests/intel-ci/fast-feedback.testlist | 164 +-------------
> tests/intel-ci/xe-fast-feedback.testlist | 269 +----------------------
> tests/intel/kms_pm_dc.c | 49 +++--
> 3 files changed, 37 insertions(+), 445 deletions(-)
>
> --
> 2.43.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [PATCH i-g-t v4 1/4] tests/intel/kms_pm_dc: Update VRR handling and eDP output check
2024-08-11 20:03 ` [PATCH i-g-t v4 1/4] tests/intel/kms_pm_dc: Update VRR handling and eDP output check Naladala Ramanaidu
@ 2024-08-13 9:21 ` Kandpal, Suraj
0 siblings, 0 replies; 13+ messages in thread
From: Kandpal, Suraj @ 2024-08-13 9:21 UTC (permalink / raw)
To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org; +Cc: B, Jeevan
> -----Original Message-----
> From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
> Sent: Monday, August 12, 2024 1:34 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Kandpal, Suraj <suraj.kandpal@intel.com>; B, Jeevan <jeevan.b@intel.com>;
> Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
> Subject: [PATCH i-g-t v4 1/4] tests/intel/kms_pm_dc: Update VRR handling and
> eDP output check
>
> It should be enhance the test_deep_pkgc_state function to include the following
> changes:
> - Removed the unused variable `vrr_supported` to clean up the code.
> - Added a check for the eDP connector to ensure proper connector handling.
> - Updated VRR handling to disable VRR and commit atomic changes.
> - Modified the delay calculation for connector modes to ensure proper
> vblank time.
> - Removed redundant VRR capability check and skip logic.
>
Please use imperative Remove the unused var etc.
Otherwise LGTM,
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
> v2: Correct indentation and update comments. (Suraj, Jeevan)
> v3: Update Commit subject/message. (Kamil)
> v4: Update commit subject/message. (Suraj)
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> tests/intel/kms_pm_dc.c | 34 +++++++++++++++++++++++++---------
> 1 file changed, 25 insertions(+), 9 deletions(-)
>
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c index
> 1aef1e02d..367bf4303 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -594,36 +594,52 @@ static void test_deep_pkgc_state(data_t *data)
> time_t start = time(NULL), duration = 2, delay;
> enum pipe pipe;
> bool pkgc_flag = false;
> - bool vrr_supported = false, flip = true;
> + bool flip = true;
>
> igt_display_t *display = &data->display;
> igt_plane_t *primary;
> igt_output_t *output = NULL;
>
> for_each_pipe_with_valid_output(display, pipe, output) {
> + if (output->config.connector->connector_type !=
> DRM_MODE_CONNECTOR_eDP)
> + igt_skip("No eDP output found, skipping the test.\n");
> +
> /* Check VRR capabilities before setting up */
> if (igt_output_has_prop(output,
> IGT_CONNECTOR_VRR_CAPABLE) &&
> igt_output_get_prop(output,
> IGT_CONNECTOR_VRR_CAPABLE)) {
> - vrr_supported = true;
> + /*
> + * TODO: Add check for vmin = vmax = flipline if VRR
> enabled.
> + * KMD patches still under review. Need to wait till KMD
> + * patches merge.
> + */
> + igt_pipe_set_prop_value(display, pipe,
> + IGT_CRTC_VRR_ENABLED,
> false);
> + igt_assert(igt_display_try_commit_atomic(display,
> +
> DRM_MODE_ATOMIC_ALLOW_MODESET,
> + NULL) == 0);
> break;
> }
> }
>
> - /* Skip the test if no VRR capable output is found */
> - igt_skip_on_f(!vrr_supported,
> - "No VRR capable output found, skipping the test.\n");
> -
> igt_display_reset(display);
> -
> igt_output_set_pipe(output, pipe);
>
> + for_each_connector_mode(output) {
> + data->mode = &output->config.connector->modes[j__];
> + delay = 1 * (MSECS / (data->mode->vrefresh));
> + /*
> + * Should be 5ms vblank time required to program higher
> + * watermark levels
> + */
> + if (delay >= (5 * MSECS))
> + break;
> + }
> +
> data->output = output;
> - data->mode = igt_output_get_mode(output);
> setup_videoplayback(data);
>
> primary = igt_output_get_plane_type(data->output,
> DRM_PLANE_TYPE_PRIMARY);
> pre_val = read_pkgc_counter(data->debugfs_root_fd);
> - delay = 1 * (MSECS / (data->mode->vrefresh - 10));
>
> igt_plane_set_fb(primary, &data->fb_rgb);
> igt_display_commit(&data->display);
> --
> 2.43.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [PATCH i-g-t v4 2/4] tests/intel/kms_pm_dc: Update test duration to 4 seconds
2024-08-11 20:03 ` [PATCH i-g-t v4 2/4] tests/intel/kms_pm_dc: Update test duration to 4 seconds Naladala Ramanaidu
@ 2024-08-13 9:23 ` Kandpal, Suraj
2024-08-22 9:31 ` Naladala, Ramanaidu
0 siblings, 1 reply; 13+ messages in thread
From: Kandpal, Suraj @ 2024-08-13 9:23 UTC (permalink / raw)
To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org; +Cc: B, Jeevan
> -----Original Message-----
> From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
> Sent: Monday, August 12, 2024 1:34 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Kandpal, Suraj <suraj.kandpal@intel.com>; B, Jeevan <jeevan.b@intel.com>;
> Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
> Subject: [PATCH i-g-t v4 2/4] tests/intel/kms_pm_dc: Update test duration to 4
> seconds
>
> Certain features can prevent timely entry into the C10 state, causing inconsistent
> results. So increase test time to get accurate results.
>
> v2: Split the patch into two. (Kamil)
> v3: Declare variable in new line. (Suraj)
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> tests/intel/kms_pm_dc.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c index
> 367bf4303..565c3d48d 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -591,7 +591,8 @@ static unsigned int read_pkgc_counter(int
> debugfs_root_fd) static void test_deep_pkgc_state(data_t *data) {
> unsigned int pre_val = 0, cur_val = 0;
> - time_t start = time(NULL), duration = 2, delay;
> + time_t start = time(NULL);
> + time_t duration = 4, delay;
Why is the duration 4 or how did you come to this number explain , if in ms don't we have a define for that use that its
not good to use magic number.
Regards,
Suraj Kandpal
> enum pipe pipe;
> bool pkgc_flag = false;
> bool flip = true;
> --
> 2.43.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [PATCH i-g-t v4 3/4] tests/intel/kms_pm_dc: Add polling for deep-pkgc
2024-08-11 20:03 ` [PATCH i-g-t v4 3/4] tests/intel/kms_pm_dc: Add polling for deep-pkgc Naladala Ramanaidu
@ 2024-08-13 9:26 ` Kandpal, Suraj
0 siblings, 0 replies; 13+ messages in thread
From: Kandpal, Suraj @ 2024-08-13 9:26 UTC (permalink / raw)
To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org; +Cc: B, Jeevan
> -----Original Message-----
> From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
> Sent: Monday, August 12, 2024 1:34 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Kandpal, Suraj <suraj.kandpal@intel.com>; B, Jeevan <jeevan.b@intel.com>;
> Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
> Subject: [PATCH i-g-t v4 3/4] tests/intel/kms_pm_dc: Add polling for deep-pkgc
>
> It should be enhance the test_deep_pkgc_state function to include the following
> changes:
> - Added an interval variable to control the delay between checks.
> - Added a wait for vblank to sync the frame time before reading
> the package C-state counter.
> - Introduced a half-frame delay to ensure the flip occurs when
> the frame is active.
> - Modified the loop to use igt_wait for better handling of the
> package C-state counter read.
> - Removed redundant usleep call to streamline the delay handling.
>
Again use imperatives
> v2: Address and correct review comments (Suraj, Jeevan)
> v3: Update commit subject/message. (Kamil)
> v4: Update commit subject/message and added comments. (Suraj)
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> tests/intel/kms_pm_dc.c | 12 ++++++++----
> 1 file changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c index
> 565c3d48d..270912c46 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -596,6 +596,7 @@ static void test_deep_pkgc_state(data_t *data)
> enum pipe pipe;
> bool pkgc_flag = false;
> bool flip = true;
> + unsigned int interval = 5;
>
> igt_display_t *display = &data->display;
> igt_plane_t *primary;
> @@ -640,22 +641,25 @@ static void test_deep_pkgc_state(data_t *data)
> setup_videoplayback(data);
>
> primary = igt_output_get_plane_type(data->output,
> DRM_PLANE_TYPE_PRIMARY);
> - pre_val = read_pkgc_counter(data->debugfs_root_fd);
>
> igt_plane_set_fb(primary, &data->fb_rgb);
> igt_display_commit(&data->display);
> + /* Waiting for the vblank to sync the frame time */
Use imperative comments eg Wait for the vblank
> + igt_wait_for_vblank_count(data->drm_fd, data-
> >display.pipes[pipe].crtc_offset, 1);
> + pre_val = read_pkgc_counter(data->debugfs_root_fd);
> + /* Added a half-frame delay to ensure the flip occurs when the frame is
> active. */
Use imperative comments eg Add a half frame delay
Regards,
Suraj Kandpal
> + usleep(delay * 0.5);
>
> while (time(NULL) - start < duration) {
> flip = !flip;
> igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
> igt_display_commit(&data->display);
> -
> - cur_val = read_pkgc_counter(data->debugfs_root_fd);
> + igt_wait((cur_val = read_pkgc_counter(data->debugfs_root_fd))
> > pre_val,
> + delay * 2, interval);
> if (cur_val > pre_val) {
> pkgc_flag = true;
> break;
> }
> - usleep(delay);
> }
>
> cleanup_dc3co_fbs(data);
> --
> 2.43.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v4 2/4] tests/intel/kms_pm_dc: Update test duration to 4 seconds
2024-08-13 9:23 ` Kandpal, Suraj
@ 2024-08-22 9:31 ` Naladala, Ramanaidu
0 siblings, 0 replies; 13+ messages in thread
From: Naladala, Ramanaidu @ 2024-08-22 9:31 UTC (permalink / raw)
To: Kandpal, Suraj, igt-dev@lists.freedesktop.org; +Cc: B, Jeevan
Hi Suraj,
We need to simulate the scenario of extended vblank. Keeping CI
execution time in mind, we have set the sequence for 4 seconds. For the
first 2-3 seconds, we run at X refresh rate and then change the refresh
rate in between to emulate extended vblank for the remaining 4 seconds.
On 8/13/2024 2:53 PM, Kandpal, Suraj wrote:
> Why is the duration 4 or how did you come to this number explain , if in ms don't we have a define for that use that its
> not good to use magic number.
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-08-22 9:31 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-11 20:03 [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Naladala Ramanaidu
2024-08-11 20:03 ` [PATCH i-g-t v4 1/4] tests/intel/kms_pm_dc: Update VRR handling and eDP output check Naladala Ramanaidu
2024-08-13 9:21 ` Kandpal, Suraj
2024-08-11 20:03 ` [PATCH i-g-t v4 2/4] tests/intel/kms_pm_dc: Update test duration to 4 seconds Naladala Ramanaidu
2024-08-13 9:23 ` Kandpal, Suraj
2024-08-22 9:31 ` Naladala, Ramanaidu
2024-08-11 20:03 ` [PATCH i-g-t v4 3/4] tests/intel/kms_pm_dc: Add polling for deep-pkgc Naladala Ramanaidu
2024-08-13 9:26 ` Kandpal, Suraj
2024-08-11 20:03 ` [PATCH i-g-t v4 4/4] HAX patch do not merge Naladala Ramanaidu
2024-08-11 20:24 ` ✗ CI.xeBAT: failure for Improvise-the-deep-pkgc (rev4) Patchwork
2024-08-11 20:40 ` ✗ Fi.CI.BAT: " Patchwork
2024-08-11 21:22 ` ✗ CI.xeFULL: " Patchwork
2024-08-12 4:03 ` [PATCH i-g-t v4 0/4] Improvise-the-deep-pkgc Kandpal, Suraj
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox