* [PATCH i-g-t] Add a new test to validate the deep sleep state during extended vblank
@ 2024-01-18 16:21 Jeevan B
2024-01-18 19:04 ` ✓ Fi.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jeevan B @ 2024-01-18 16:21 UTC (permalink / raw)
To: igt-dev; +Cc: suraj.kandpal
Add a new test to validate deep sleep states during extended vblank
scenarios, where two frames are committed simultaneously for a give
time with reduced refresh rate.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_pm_dc.c | 262 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 262 insertions(+)
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 0d5824e67..da5d0e819 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -74,6 +74,10 @@
* Description: This test validates display engine entry to DC6 state while PSR is active
* Functionality: pm_dc, psr1
*
+ * SUBTEST: deep-pkgc
+ * Description: This test validates display engine entry to Deep PKGC state for extended vblank
+ * Functionality: pm_dc
+ *
* SUBTEST: dc9-dpms
* Description: This test validates display engine entry to DC9 state
*/
@@ -89,6 +93,14 @@
#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
#define KMS_POLL_DISABLE 0
#define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid) || AT_LEAST_DISPLAY(devid, 14)))
+#define DRM_MODE_FMT "\"%s\": %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x"
+#define NSECS_PER_SEC (1000000000ull)
+#define TEST_DURATION_NS (5000000000ull)
+#define DRM_MODE_ARG(m) \
+ (m)->name, (m)->vrefresh, (m)->clock, \
+ (m)->hdisplay, (m)->hsync_start, (m)->hsync_end, (m)->htotal, \
+ (m)->vdisplay, (m)->vsync_start, (m)->vsync_end, (m)->vtotal, \
+ (m)->type, (m)->flags
IGT_TEST_DESCRIPTION("Tests to validate display power DC states.");
@@ -98,6 +110,11 @@ typedef struct {
double r, g, b;
} color_t;
+typedef struct range {
+ unsigned int min;
+ unsigned int max;
+} range_t;
+
typedef struct {
int drm_fd;
int msr_fd;
@@ -110,12 +127,32 @@ typedef struct {
enum psr_mode op_psr_mode;
drmModeModeInfo *mode;
igt_output_t *output;
+ range_t range;
bool runtime_suspend_disabled;
+ igt_plane_t *primary;
} data_t;
+typedef struct vtest_ns {
+ uint64_t min;
+ uint64_t mid;
+ uint64_t max;
+} vtest_ns_t;
+
static bool dc_state_wait_entry(int drm_fd, int dc_flag, int prev_dc_count);
static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count);
+/* Returns true if driver supports VRR. */
+static bool has_vrr(igt_output_t *output)
+{
+ return igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE);
+}
+
+/* Returns true if an output supports VRR. */
+static bool vrr_capable(igt_output_t *output)
+{
+ return igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE);
+}
+
static void setup_output(data_t *data)
{
igt_display_t *display = &data->display;
@@ -136,6 +173,53 @@ static void setup_output(data_t *data)
}
}
+/* Read min and max vrr range from the connector debugfs. */
+static range_t
+get_vrr_range(data_t *data, igt_output_t *output)
+{
+ char buf[256];
+ char *start_loc;
+ int fd, res;
+ range_t range;
+
+ fd = igt_debugfs_connector_dir(data->drm_fd, output->name, O_RDONLY);
+ igt_assert(fd >= 0);
+
+ res = igt_debugfs_simple_read(fd, "vrr_range", buf, sizeof(buf));
+ igt_require(res > 0);
+
+ close(fd);
+
+ igt_assert(start_loc = strstr(buf, "Min: "));
+ igt_assert_eq(sscanf(start_loc, "Min: %u", &range.min), 1);
+
+ igt_assert(start_loc = strstr(buf, "Max: "));
+ igt_assert_eq(sscanf(start_loc, "Max: %u", &range.max), 1);
+
+ return range;
+}
+
+/* Instead of running on default mode, loop through the connector modes
+ * and find the mode with max refresh rate to exercise full vrr range.
+ */
+static drmModeModeInfo
+output_mode_with_maxrate(igt_output_t *output, unsigned int vrr_max)
+{
+ int i;
+ drmModeConnectorPtr connector = output->config.connector;
+ drmModeModeInfo mode = *igt_output_get_mode(output);
+
+ igt_debug("Default Mode " DRM_MODE_FMT "\n", DRM_MODE_ARG(&mode));
+
+ for (i = 0; i < connector->count_modes; i++)
+ if (connector->modes[i].vrefresh > mode.vrefresh &&
+ connector->modes[i].vrefresh <= vrr_max)
+ mode = connector->modes[i];
+ igt_debug("Override Mode " DRM_MODE_FMT "\n", DRM_MODE_ARG(&mode));
+
+ return mode;
+}
+
static void display_fini(data_t *data)
{
igt_display_fini(&data->display);
@@ -582,6 +666,173 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
return get_dc_counter(str);
}
+/* Converts a timespec structure to nanoseconds. */
+static uint64_t timespec_to_ns(struct timespec *ts)
+{
+ return ts->tv_sec * NSECS_PER_SEC + ts->tv_nsec;
+}
+
+/*
+ * Returns the current CLOCK_MONOTONIC time in nanoseconds.
+ * The regular IGT helpers can't be used since they default to
+ * CLOCK_MONOTONIC_RAW - which isn't what the kernel uses for its timestamps.
+ */
+static uint64_t get_time_ns(void)
+{
+ struct timespec ts;
+ memset(&ts, 0, sizeof(ts));
+ errno = 0;
+
+ if (!clock_gettime(CLOCK_MONOTONIC, &ts))
+ return timespec_to_ns(&ts);
+
+ igt_warn("Could not read monotonic time: %s\n", strerror(errno));
+ igt_fail(-errno);
+
+ return 0;
+}
+
+/*
+ * Gets an event from DRM and returns its timestamp in nanoseconds.
+ * Asserts if the event from DRM is not matched with requested one.
+ *
+ * This blocks until the event is received.
+ */
+static uint64_t get_kernel_event_ns(data_t *data, uint32_t event)
+{
+ struct drm_event_vblank ev;
+
+ igt_set_timeout(1, "Waiting for an event\n");
+ igt_assert_eq(read(data->drm_fd, &ev, sizeof(ev)), sizeof(ev));
+ igt_assert_eq(ev.base.type, event);
+ igt_reset_timeout();
+
+ return ev.tv_sec * NSECS_PER_SEC + ev.tv_usec * 1000ull;
+}
+
+/* Performs an atomic non-blocking page-flip on a pipe. */
+static void
+do_flip(data_t *data, igt_fb_t *fb)
+{
+ int ret;
+
+ igt_set_timeout(1, "Scheduling page flip\n");
+
+ igt_plane_set_fb(data->primary, fb);
+
+ do {
+ ret = igt_display_try_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_NONBLOCK |
+ DRM_MODE_PAGE_FLIP_EVENT,
+ data);
+ } while (ret == -EBUSY);
+
+ igt_assert_eq(ret, 0);
+ igt_reset_timeout();
+}
+
+/* Prepare the display for testing on the given pipe. */
+static void prepare_test(data_t *data, igt_output_t *output, enum pipe pipe)
+{
+ drmModeModeInfo mode;
+ cairo_t *cr;
+
+ mode = *igt_output_get_mode(output);
+
+ /* Prepare resources */
+ igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.50, 0.50, 0.50, &data->fb_rgb);
+
+ igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay,
+ DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+ 0.50, 0.50, 0.50, &data->fb_rgr);
+
+ cr = igt_get_cairo_ctx(data->drm_fd, &data->fb_rgb);
+
+ igt_paint_color(cr, 0, 0, mode.hdisplay / 10, mode.vdisplay / 10,
+ 1.00, 0.00, 0.00);
+
+ igt_put_cairo_ctx(cr);
+
+ /* Take care of any required modesetting before the test begins. */
+ data->primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ igt_plane_set_fb(data->primary, &data->fb_rgb);
+
+ /* Clear vrr_enabled state before enabling it, because
+ * it might be left enabled if the previous test fails.
+ */
+ igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_VRR_ENABLED, 0);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void test_deep_pkgc_state(data_t *data)
+{
+ unsigned int pre_val = 0, cur_val = 0;
+ bool flag, front = false, pkgc_flag = false;
+ uint64_t start_ns, target_ns, event_ns;
+ drmModeModeInfo mode;
+ enum pipe pipe;
+ igt_display_t *display = &data->display;
+ igt_output_t *output;
+
+ pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ psr_dpms(data, DRM_MODE_DPMS_OFF);
+
+ for_each_pipe_with_valid_output(display, pipe, output) {
+ igt_display_reset(display);
+ igt_output_set_pipe(output, pipe);
+ data->output = output;
+ data->mode = igt_output_get_mode(output);
+ igt_require(has_vrr(data->output));
+ if (!vrr_capable(data->output)) {
+ flag = false;
+ continue;
+ }
+
+ /* Capture VRR range */
+ data->range = get_vrr_range(data, data->output);
+ /* Override mode with max vrefresh.
+ * - vrr_min range should be less than the override mode vrefresh.
+ * - Limit the vrr_max range with the override mode vrefresh.
+ */
+ mode = output_mode_with_maxrate(data->output, data->range.max);
+ igt_require(mode.vrefresh > data->range.min);
+ data->range.max = mode.vrefresh;
+ igt_output_override_mode(data->output, &mode);
+ prepare_test(data, output, pipe);
+ data->primary = igt_output_get_plane_type(data->output,
+ DRM_PLANE_TYPE_PRIMARY);
+ target_ns = NSECS_PER_SEC / (data->range.max - 10);
+ do_flip(data, &data->fb_rgb);
+ start_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
+
+ while(event_ns - start_ns > TEST_DURATION_NS) {
+ front = !front;
+ do_flip(data, front ? &data->fb_rgb : &data->fb_rgr);
+ event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
+
+ cur_val = read_pkgc_counter(data->debugfs_root_fd);
+ if (cur_val > pre_val) {
+ pkgc_flag = true;
+ }
+
+ if ( pkgc_flag == true)
+ break;
+ while (get_time_ns() < target_ns);
+ }
+
+ psr_dpms(data, DRM_MODE_DPMS_ON);
+ cleanup_dc3co_fbs(data);
+ }
+
+ if (flag)
+ igt_skip("No connector with VRR found\n");
+ igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
+
+}
+
static void test_pkgc_state_dpms(data_t *data)
{
unsigned int timeout_sec = 6;
@@ -669,6 +920,17 @@ igt_main
test_dc_state_psr(&data, CHECK_DC5);
}
+ igt_describe("This test validates display engine entry to DC8 state "
+ "while extended vblank");
+ igt_subtest("deep-pkgc") {
+ igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
+ "PC8+ residencies not supported\n");
+ if (intel_display_ver(data.devid) >= 20)
+ test_deep_pkgc_state(&data);
+ else
+ igt_skip("Deep PKGC not supported on this platform");
+ }
+
igt_describe("This test validates display engine entry to DC6 state "
"while PSR is active");
igt_subtest("dc6-psr") {
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for Add a new test to validate the deep sleep state during extended vblank
2024-01-18 16:21 [PATCH i-g-t] Add a new test to validate the deep sleep state during extended vblank Jeevan B
@ 2024-01-18 19:04 ` Patchwork
2024-01-18 19:20 ` ✓ CI.xeBAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-01-18 19:04 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5565 bytes --]
== Series Details ==
Series: Add a new test to validate the deep sleep state during extended vblank
URL : https://patchwork.freedesktop.org/series/128949/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14138 -> IGTPW_10558
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/index.html
Participating hosts (38 -> 38)
------------------------------
Additional (1): bat-kbl-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10558 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1849])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-kbl-2/igt@fbdev@info.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][4] ([fdo#109271]) +36 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@verify-random:
- bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-1: NOTRUN -> [SKIP][6] ([i915#4103]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-jsl-1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9886])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-jsl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-jsl-1: NOTRUN -> [SKIP][8] ([fdo#109285])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- bat-adlm-1: NOTRUN -> [SKIP][9] ([i915#9875] / [i915#9900])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-adlm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- bat-rpls-2: [PASS][10] -> [ABORT][11] ([i915#10117])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/bat-rpls-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-rpls-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-jsl-1: NOTRUN -> [SKIP][12] ([i915#3555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@i915_selftest@live@gem_migrate:
- bat-adlm-1: [INCOMPLETE][13] ([i915#10093]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/bat-adlm-1/igt@i915_selftest@live@gem_migrate.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/bat-adlm-1/igt@i915_selftest@live@gem_migrate.html
* igt@vgem_basic@unload:
- fi-kbl-7567u: [DMESG-WARN][15] -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/fi-kbl-7567u/igt@vgem_basic@unload.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/fi-kbl-7567u/igt@vgem_basic@unload.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#10093]: https://gitlab.freedesktop.org/drm/intel/issues/10093
[i915#10117]: https://gitlab.freedesktop.org/drm/intel/issues/10117
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9875]: https://gitlab.freedesktop.org/drm/intel/issues/9875
[i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886
[i915#9900]: https://gitlab.freedesktop.org/drm/intel/issues/9900
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7683 -> IGTPW_10558
CI-20190529: 20190529
CI_DRM_14138: e731a55be5d68e51e2cf0c5e243f6e870c69fa92 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10558: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/index.html
IGT_7683: 7683
Testlist changes
----------------
+igt@kms_pm_dc@deep-pkgc
-igt@kms_big_joiner@force-bigjoiner
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/index.html
[-- Attachment #2: Type: text/html, Size: 6634 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ CI.xeBAT: success for Add a new test to validate the deep sleep state during extended vblank
2024-01-18 16:21 [PATCH i-g-t] Add a new test to validate the deep sleep state during extended vblank Jeevan B
2024-01-18 19:04 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2024-01-18 19:20 ` Patchwork
2024-01-19 8:38 ` ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-01-18 19:20 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1057 bytes --]
== Series Details ==
Series: Add a new test to validate the deep sleep state during extended vblank
URL : https://patchwork.freedesktop.org/series/128949/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7683_BAT -> XEIGTPW_10558_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7683 -> IGTPW_10558
* Linux: xe-644-238e8655c184b7cf16731690b59da560641a07ad -> xe-645-e731a55be5d68e51e2cf0c5e243f6e870c69fa92
IGTPW_10558: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/index.html
IGT_7683: 7683
xe-644-238e8655c184b7cf16731690b59da560641a07ad: 238e8655c184b7cf16731690b59da560641a07ad
xe-645-e731a55be5d68e51e2cf0c5e243f6e870c69fa92: e731a55be5d68e51e2cf0c5e243f6e870c69fa92
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10558/index.html
[-- Attachment #2: Type: text/html, Size: 1616 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for Add a new test to validate the deep sleep state during extended vblank
2024-01-18 16:21 [PATCH i-g-t] Add a new test to validate the deep sleep state during extended vblank Jeevan B
2024-01-18 19:04 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-01-18 19:20 ` ✓ CI.xeBAT: " Patchwork
@ 2024-01-19 8:38 ` Patchwork
2024-02-05 6:46 ` [PATCH i-g-t] " Modem, Bhanuprakash
2024-02-06 17:50 ` Kamil Konieczny
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-01-19 8:38 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 84749 bytes --]
== Series Details ==
Series: Add a new test to validate the deep sleep state during extended vblank
URL : https://patchwork.freedesktop.org/series/128949/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14138_full -> IGTPW_10558_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10558_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10558_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/index.html
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10558_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dirtyfb@default-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg1-14/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-hdmi-a-4.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-18/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-hdmi-a-4.html
* {igt@kms_pm_dc@deep-pkgc} (NEW):
- shard-dg2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@kms_pm_dc@deep-pkgc.html
- shard-rkl: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@kms_pm_dc@deep-pkgc.html
- shard-dg1: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-17/igt@kms_pm_dc@deep-pkgc.html
- shard-tglu: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-8/igt@kms_pm_dc@deep-pkgc.html
- shard-mtlp: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][8] -> [ABORT][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-tglu-5/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-9/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_content_protection@lic-type-0}:
- shard-mtlp: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-7/igt@kms_content_protection@lic-type-0.html
New tests
---------
New tests have been introduced between CI_DRM_14138_full and IGTPW_10558_full:
### New IGT tests (1) ###
* igt@kms_pm_dc@deep-pkgc:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_10558_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#8411])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8411])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-8/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8411])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [PASS][14] -> [INCOMPLETE][15] ([i915#5507])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +12 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-5/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-19/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][18] -> [FAIL][19] ([i915#7742])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8414]) +30 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-7/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#7697])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-3/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@gem_ctx_persistence@hang.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-18/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][27] ([i915#10030] / [i915#7975] / [i915#8213])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-7/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg1: NOTRUN -> [FAIL][28] ([i915#5784])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-16/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][29] -> [FAIL][30] ([i915#5784])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-10/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4771])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-12/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#8555]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][36] ([i915#9606])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-7/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-tglu: NOTRUN -> [FAIL][37] ([i915#9606])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-4/igt@gem_exec_capture@many-4k-zero.html
- shard-glk: NOTRUN -> [FAIL][38] ([i915#9606])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-glk1/igt@gem_exec_capture@many-4k-zero.html
- shard-mtlp: NOTRUN -> [FAIL][39] ([i915#9606])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-8/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2842]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: NOTRUN -> [FAIL][43] ([i915#2842])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-7/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4473] / [i915#4771])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: NOTRUN -> [FAIL][45] ([i915#2842]) +1 other test fail
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html
- shard-tglu: [PASS][46] -> [FAIL][47] ([i915#2842])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-tglu-5/igt@gem_exec_fair@basic-throttle@rcs0.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-5/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-17/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#7697])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-15/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +15 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [PASS][56] -> [ABORT][57] ([i915#7975] / [i915#8213])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices@smem.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@massive:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-9/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-4/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#4613]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +9 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +8 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-12/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-15/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-17/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-7/igt@gem_pread@self.html
* igt@gem_pwrite@basic-self:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-3/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4270]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4885])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-10/igt@gem_softpin@evict-snoop.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4077]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-8/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-15/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3281]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@gem_userptr_blits@relocations.html
* igt@gen3_mixed_blits:
- shard-dg2: NOTRUN -> [SKIP][84] ([fdo#109289]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@gen3_mixed_blits.html
- shard-rkl: NOTRUN -> [SKIP][85] ([fdo#109289])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-6/igt@gen3_mixed_blits.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg1: NOTRUN -> [SKIP][86] ([fdo#109289])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-16/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-4/igt@gen9_exec_parse@allowed-all.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-13/igt@gen9_exec_parse@allowed-all.html
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-10/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +7 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4881])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#6227])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@i915_module_load@load.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#6590])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-18/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#6590])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-8/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6590]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][97] -> [FAIL][98] ([i915#3591])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#8437])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109302])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#8709]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#8709]) +7 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#1769])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][107] ([fdo#111614]) +5 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][108] -> [FAIL][109] ([i915#5138]) +1 other test fail
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#5286])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#5286])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][112] ([fdo#111615] / [i915#5286])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5286]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][114] ([fdo#111614] / [i915#3638])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111614])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3638])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-19/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
- shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111614])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][118] -> [FAIL][119] ([i915#3743]) +1 other test fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#5190]) +13 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][121] ([fdo#111615]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
- shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#111615]) +8 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +8 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][124] ([fdo#111615])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][125] ([fdo#110723]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@pipe-a-crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +11 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-3/igt@kms_ccs@pipe-a-crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#5354] / [i915#6095]) +15 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-6/igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-ccs:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#5354] / [i915#6095]) +24 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-15/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +28 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#5354]) +102 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_ccs@pipe-d-missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#5354]) +16 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-4/igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3742])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#4087] / [i915#7213]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#3742])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-13/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4087]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#7828]) +9 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#111827])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][139] ([fdo#111827]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@kms_chamelium_color@degamma.html
- shard-rkl: NOTRUN -> [SKIP][140] ([fdo#111827])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-3/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#7828]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-16/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#7828]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) +6 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#7828]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#3116] / [i915#3299])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6944])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@kms_content_protection@legacy.html
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#9424]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#3555]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-32x32.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#3555]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8814])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3359])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3359])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#3359])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][155] ([fdo#109274] / [i915#5354]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#4103]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#9809]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][158] ([fdo#111767])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-rkl: NOTRUN -> [SKIP][159] ([fdo#111767] / [fdo#111825])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][160] ([i915#2346])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#4103] / [i915#4213]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#9833])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#9723])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-16/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#3555]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8827])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#8588])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-6/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#1257])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3840] / [i915#9688])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#3840])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-4/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-8/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-13/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#3469])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-16/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#4854])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#1839])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][178] ([fdo#109274] / [fdo#111767]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg1: NOTRUN -> [SKIP][179] ([fdo#111825] / [i915#9934]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-19/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][180] ([fdo#109274] / [i915#3637]) +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][181] ([fdo#109274]) +9 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3637])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-3/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#2672])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#2672]) +5 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#2672] / [i915#3555])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#2672]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
- shard-snb: [PASS][189] -> [SKIP][190] ([fdo#109271]) +8 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#8708]) +20 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][192] ([fdo#109280]) +9 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#3458]) +27 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][194] ([fdo#111825]) +10 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][195] ([fdo#111825]) +17 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8708]) +5 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#8708]) +6 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#5439])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#10055])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][200] ([fdo#110189]) +6 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#3458]) +11 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#1825]) +17 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][203] ([fdo#111825] / [i915#1825]) +19 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#3023]) +10 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-14/igt@kms_hdr@static-swap.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#6301]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#6301])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-5/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#6953])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][211] ([i915#8292])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#5176]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][213] ([fdo#109271]) +318 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-glk5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9423]) +7 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#9423]) +7 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#9423]) +7 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#9423]) +11 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#5176] / [i915#9423]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#5176] / [i915#9423]) +3 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#5235]) +11 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5235]) +6 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5235] / [i915#9423]) +11 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#5235]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#5235])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [FAIL][225] ([i915#9298])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-2/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#3361])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][227] ([i915#9295])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* {igt@kms_pm_dc@deep-pkgc} (NEW):
- shard-snb: NOTRUN -> [SKIP][228] ([fdo#109271])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-snb7/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][229] -> [SKIP][230] ([i915#9519])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#9519])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#9519])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9519])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pc8-residency:
- shard-dg2: NOTRUN -> [SKIP][234] ([fdo#109293] / [fdo#109506])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_pm_rpm@pc8-residency.html
- shard-tglu: NOTRUN -> [SKIP][235] ([fdo#109293] / [fdo#109506])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-7/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#6524] / [i915#6805])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#9683])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][238] ([fdo#111068] / [i915#9683])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-17/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#9685]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#5289])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#4235]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tv_load_detect@load-detect:
- shard-rkl: NOTRUN -> [SKIP][242] ([fdo#109309])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][243] ([i915#9196]) +1 other test fail
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#3555])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-6/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#2437] / [i915#9412])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-10/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][246] ([fdo#109271] / [i915#2437]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-glk5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][247] ([fdo#109289]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#2436])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#2434])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-10/igt@perf@mi-rpc.html
- shard-tglu: NOTRUN -> [SKIP][250] ([fdo#109289]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-9/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][251] -> [FAIL][252] ([i915#4349]) +1 other test fail
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][253] ([i915#4349]) +3 other tests fail
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@event-wait@rcs0:
- shard-rkl: NOTRUN -> [SKIP][254] ([fdo#112283])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-3/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#8516])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-7/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][256] ([i915#9351])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_udl:
- shard-rkl: NOTRUN -> [SKIP][257] ([fdo#109291])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-3/igt@prime_udl.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#3291] / [i915#3708])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-10/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#3708] / [i915#4077])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-5/igt@prime_vgem@basic-gtt.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#9917])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@v3d/v3d_get_param@get-bad-param:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#2575]) +8 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-3/igt@v3d/v3d_get_param@get-bad-param.html
* igt@v3d/v3d_perfmon@create-single-perfmon:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#2575]) +15 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@v3d/v3d_perfmon@create-single-perfmon.html
* igt@v3d/v3d_submit_cl@job-perfmon:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#2575]) +7 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-15/igt@v3d/v3d_submit_cl@job-perfmon.html
- shard-tglu: NOTRUN -> [SKIP][264] ([fdo#109315] / [i915#2575]) +4 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-2/igt@v3d/v3d_submit_cl@job-perfmon.html
* igt@v3d/v3d_submit_csd@bad-multisync-extension:
- shard-rkl: NOTRUN -> [SKIP][265] ([fdo#109315]) +4 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-5/igt@v3d/v3d_submit_csd@bad-multisync-extension.html
* igt@vc4/vc4_create_bo@create-bo-4096:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#7711]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-5/igt@vc4/vc4_create_bo@create-bo-4096.html
* igt@vc4/vc4_label_bo@set-label:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#2575]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-10/igt@vc4/vc4_label_bo@set-label.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#7711]) +10 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#7711]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#7711]) +3 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-18/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][271] ([i915#6268]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@in-flight-10ms:
- shard-mtlp: [ABORT][273] -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-mtlp-4/igt@gem_eio@in-flight-10ms.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@gem_eio@in-flight-10ms.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [FAIL][275] ([i915#2842]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-rkl-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_softpin@allocator-evict@bcs0:
- shard-dg2: [INCOMPLETE][277] -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg2-1/igt@gem_softpin@allocator-evict@bcs0.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@gem_softpin@allocator-evict@bcs0.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][279] ([i915#7984]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-mtlp-1/igt@i915_power@sanity.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-8/igt@i915_power@sanity.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][281] ([i915#3743]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-snb: [SKIP][283] ([fdo#109271] / [fdo#111767]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][285] ([i915#2346]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-snb: [SKIP][287] ([fdo#109271]) -> [PASS][288] +10 other tests pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][289] ([i915#9519]) -> [PASS][290] +1 other test pass
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][291] ([i915#9519]) -> [PASS][292] +1 other test pass
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-rkl: [INCOMPLETE][293] ([i915#8875] / [i915#9569]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-mtlp: [FAIL][295] ([i915#4349]) -> [PASS][296] +2 other tests pass
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-mtlp-7/igt@perf_pmu@busy-double-start@vecs0.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-1/igt@perf_pmu@busy-double-start@vecs0.html
* igt@perf_pmu@render-node-busy-idle@vecs0:
- shard-dg1: [FAIL][297] ([i915#4349]) -> [PASS][298] +1 other test pass
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg1-18/igt@perf_pmu@render-node-busy-idle@vecs0.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-18/igt@perf_pmu@render-node-busy-idle@vecs0.html
* igt@prime_vgem@fence-wait@ccs0:
- shard-mtlp: [DMESG-WARN][299] -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-mtlp-6/igt@prime_vgem@fence-wait@ccs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-8/igt@prime_vgem@fence-wait@ccs0.html
* igt@prime_vgem@fence-wait@vecs0:
- shard-mtlp: [ABORT][301] ([i915#8875]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-mtlp-6/igt@prime_vgem@fence-wait@vecs0.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-mtlp-8/igt@prime_vgem@fence-wait@vecs0.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][303] ([i915#9846]) -> [INCOMPLETE][304] ([i915#9364])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_pread@exhaustion:
- shard-glk: [WARN][305] ([i915#2658]) -> [INCOMPLETE][306] ([i915#10042]) +1 other test incomplete
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-glk3/igt@gem_pread@exhaustion.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-glk1/igt@gem_pread@exhaustion.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][307] ([i915#9849]) -> [INCOMPLETE][308] ([i915#9820] / [i915#9849])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [INCOMPLETE][309] ([i915#9849]) -> [INCOMPLETE][310] ([i915#9820] / [i915#9849])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@atomic:
- shard-snb: [INCOMPLETE][311] ([i915#8816]) -> [SKIP][312] ([fdo#109271]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-snb7/igt@kms_content_protection@atomic.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-snb5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][313] ([i915#9433]) -> [SKIP][314] ([i915#9424])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-dg1-18/igt@kms_content_protection@mei-interface.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-dg1-15/igt@kms_content_protection@mei-interface.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][315] ([i915#9295]) -> [SKIP][316] ([i915#3361])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14138/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7683 -> IGTPW_10558
CI-20190529: 20190529
CI_DRM_14138: e731a55be5d68e51e2cf0c5e243f6e870c69fa92 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10558: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/index.html
IGT_7683: 7683
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10558/index.html
[-- Attachment #2: Type: text/html, Size: 103695 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] Add a new test to validate the deep sleep state during extended vblank
2024-01-18 16:21 [PATCH i-g-t] Add a new test to validate the deep sleep state during extended vblank Jeevan B
` (2 preceding siblings ...)
2024-01-19 8:38 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-02-05 6:46 ` Modem, Bhanuprakash
2024-02-06 17:50 ` Kamil Konieczny
4 siblings, 0 replies; 6+ messages in thread
From: Modem, Bhanuprakash @ 2024-02-05 6:46 UTC (permalink / raw)
To: Jeevan B, igt-dev; +Cc: suraj.kandpal
Hi Jeevan,
On 18-01-2024 09:51 pm, Jeevan B wrote:
> Add a new test to validate deep sleep states during extended vblank
> scenarios, where two frames are committed simultaneously for a give
> time with reduced refresh rate.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/intel/kms_pm_dc.c | 262 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 262 insertions(+)
>
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
> index 0d5824e67..da5d0e819 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -74,6 +74,10 @@
> * Description: This test validates display engine entry to DC6 state while PSR is active
> * Functionality: pm_dc, psr1
> *
> + * SUBTEST: deep-pkgc
> + * Description: This test validates display engine entry to Deep PKGC state for extended vblank
> + * Functionality: pm_dc
> + *
> * SUBTEST: dc9-dpms
> * Description: This test validates display engine entry to DC9 state
> */
> @@ -89,6 +93,14 @@
> #define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
> #define KMS_POLL_DISABLE 0
> #define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid) || AT_LEAST_DISPLAY(devid, 14)))
> +#define DRM_MODE_FMT "\"%s\": %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x"
> +#define NSECS_PER_SEC (1000000000ull)
> +#define TEST_DURATION_NS (5000000000ull)
> +#define DRM_MODE_ARG(m) \
> + (m)->name, (m)->vrefresh, (m)->clock, \
> + (m)->hdisplay, (m)->hsync_start, (m)->hsync_end, (m)->htotal, \
> + (m)->vdisplay, (m)->vsync_start, (m)->vsync_end, (m)->vtotal, \
> + (m)->type, (m)->flags
>
> IGT_TEST_DESCRIPTION("Tests to validate display power DC states.");
>
> @@ -98,6 +110,11 @@ typedef struct {
> double r, g, b;
> } color_t;
>
> +typedef struct range {
> + unsigned int min;
> + unsigned int max;
> +} range_t;
> +
> typedef struct {
> int drm_fd;
> int msr_fd;
> @@ -110,12 +127,32 @@ typedef struct {
> enum psr_mode op_psr_mode;
> drmModeModeInfo *mode;
> igt_output_t *output;
> + range_t range;
> bool runtime_suspend_disabled;
> + igt_plane_t *primary;
> } data_t;
>
> +typedef struct vtest_ns {
> + uint64_t min;
> + uint64_t mid;
> + uint64_t max;
> +} vtest_ns_t;
> +
> static bool dc_state_wait_entry(int drm_fd, int dc_flag, int prev_dc_count);
> static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count);
>
> +/* Returns true if driver supports VRR. */
> +static bool has_vrr(igt_output_t *output)
> +{
> + return igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE);
> +}
> +
> +/* Returns true if an output supports VRR. */
> +static bool vrr_capable(igt_output_t *output)
> +{
> + return igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE);
> +}
> +
> static void setup_output(data_t *data)
> {
> igt_display_t *display = &data->display;
> @@ -136,6 +173,53 @@ static void setup_output(data_t *data)
> }
> }
>
> +/* Read min and max vrr range from the connector debugfs. */
> +static range_t
> +get_vrr_range(data_t *data, igt_output_t *output)
> +{
> + char buf[256];
> + char *start_loc;
> + int fd, res;
> + range_t range;
> +
> + fd = igt_debugfs_connector_dir(data->drm_fd, output->name, O_RDONLY);
> + igt_assert(fd >= 0);
> +
> + res = igt_debugfs_simple_read(fd, "vrr_range", buf, sizeof(buf));
> + igt_require(res > 0);
> +
> + close(fd);
> +
> + igt_assert(start_loc = strstr(buf, "Min: "));
> + igt_assert_eq(sscanf(start_loc, "Min: %u", &range.min), 1);
> +
> + igt_assert(start_loc = strstr(buf, "Max: "));
> + igt_assert_eq(sscanf(start_loc, "Max: %u", &range.max), 1);
> +
> + return range;
> +}
> +
> +/* Instead of running on default mode, loop through the connector modes
> + * and find the mode with max refresh rate to exercise full vrr range.
> + */
> +static drmModeModeInfo
> +output_mode_with_maxrate(igt_output_t *output, unsigned int vrr_max)
> +{
> + int i;
> + drmModeConnectorPtr connector = output->config.connector;
> + drmModeModeInfo mode = *igt_output_get_mode(output);
> +
> + igt_debug("Default Mode " DRM_MODE_FMT "\n", DRM_MODE_ARG(&mode));
> +
> + for (i = 0; i < connector->count_modes; i++)
> + if (connector->modes[i].vrefresh > mode.vrefresh &&
> + connector->modes[i].vrefresh <= vrr_max)
> + mode = connector->modes[i];
> + igt_debug("Override Mode " DRM_MODE_FMT "\n", DRM_MODE_ARG(&mode));
> +
> + return mode;
> +}
> +
> static void display_fini(data_t *data)
> {
> igt_display_fini(&data->display);
> @@ -582,6 +666,173 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
> return get_dc_counter(str);
> }
>
> +/* Converts a timespec structure to nanoseconds. */
> +static uint64_t timespec_to_ns(struct timespec *ts)
> +{
> + return ts->tv_sec * NSECS_PER_SEC + ts->tv_nsec;
> +}
> +
> +/*
> + * Returns the current CLOCK_MONOTONIC time in nanoseconds.
> + * The regular IGT helpers can't be used since they default to
> + * CLOCK_MONOTONIC_RAW - which isn't what the kernel uses for its timestamps.
> + */
> +static uint64_t get_time_ns(void)
> +{
> + struct timespec ts;
> + memset(&ts, 0, sizeof(ts));
> + errno = 0;
> +
> + if (!clock_gettime(CLOCK_MONOTONIC, &ts))
> + return timespec_to_ns(&ts);
> +
> + igt_warn("Could not read monotonic time: %s\n", strerror(errno));
> + igt_fail(-errno);
> +
> + return 0;
> +}
> +
> +/*
> + * Gets an event from DRM and returns its timestamp in nanoseconds.
> + * Asserts if the event from DRM is not matched with requested one.
> + *
> + * This blocks until the event is received.
> + */
> +static uint64_t get_kernel_event_ns(data_t *data, uint32_t event)
> +{
> + struct drm_event_vblank ev;
> +
> + igt_set_timeout(1, "Waiting for an event\n");
> + igt_assert_eq(read(data->drm_fd, &ev, sizeof(ev)), sizeof(ev));
> + igt_assert_eq(ev.base.type, event);
> + igt_reset_timeout();
> +
> + return ev.tv_sec * NSECS_PER_SEC + ev.tv_usec * 1000ull;
> +}
> +
> +/* Performs an atomic non-blocking page-flip on a pipe. */
> +static void
> +do_flip(data_t *data, igt_fb_t *fb)
> +{
> + int ret;
> +
> + igt_set_timeout(1, "Scheduling page flip\n");
> +
> + igt_plane_set_fb(data->primary, fb);
> +
> + do {
> + ret = igt_display_try_commit_atomic(&data->display,
> + DRM_MODE_ATOMIC_NONBLOCK |
> + DRM_MODE_PAGE_FLIP_EVENT,
> + data);
> + } while (ret == -EBUSY);
> +
> + igt_assert_eq(ret, 0);
> + igt_reset_timeout();
> +}
IMHO, we need to re-use these VRR specific helpers. Probably, move these
helpers from kms_vrr.c to kms_vrr_helper.c?
> +
> +/* Prepare the display for testing on the given pipe. */
> +static void prepare_test(data_t *data, igt_output_t *output, enum pipe pipe)
> +{
> + drmModeModeInfo mode;
> + cairo_t *cr;
> +
> + mode = *igt_output_get_mode(output);
> +
> + /* Prepare resources */
> + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0.50, 0.50, 0.50, &data->fb_rgb);
> +
> + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0.50, 0.50, 0.50, &data->fb_rgr);
> +
> + cr = igt_get_cairo_ctx(data->drm_fd, &data->fb_rgb);
> +
> + igt_paint_color(cr, 0, 0, mode.hdisplay / 10, mode.vdisplay / 10,
> + 1.00, 0.00, 0.00);
> +
> + igt_put_cairo_ctx(cr);
> +
> + /* Take care of any required modesetting before the test begins. */
> + data->primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> + igt_plane_set_fb(data->primary, &data->fb_rgb);
> +
> + /* Clear vrr_enabled state before enabling it, because
> + * it might be left enabled if the previous test fails.
> + */
> + igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_VRR_ENABLED, 0);
> +
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +static void test_deep_pkgc_state(data_t *data)
> +{
> + unsigned int pre_val = 0, cur_val = 0;
> + bool flag, front = false, pkgc_flag = false;
> + uint64_t start_ns, target_ns, event_ns;
> + drmModeModeInfo mode;
> + enum pipe pipe;
> + igt_display_t *display = &data->display;
> + igt_output_t *output;
> +
> + pre_val = read_pkgc_counter(data->debugfs_root_fd);
> + psr_dpms(data, DRM_MODE_DPMS_OFF);
Please fix the style: don't mix tabs & spaces.
> +
> + for_each_pipe_with_valid_output(display, pipe, output) {
> + igt_display_reset(display);
> + igt_output_set_pipe(output, pipe);
> + data->output = output;
> + data->mode = igt_output_get_mode(output);
> + igt_require(has_vrr(data->output));
> + if (!vrr_capable(data->output)) {
> + flag = false;
Shall we use dynamic subtests instead of this flag?
> + continue;
> + }
> +
> + /* Capture VRR range */
> + data->range = get_vrr_range(data, data->output);
> + /* Override mode with max vrefresh.
> + * - vrr_min range should be less than the override mode vrefresh.
> + * - Limit the vrr_max range with the override mode vrefresh.
> + */
> + mode = output_mode_with_maxrate(data->output, data->range.max);
> + igt_require(mode.vrefresh > data->range.min);
> + data->range.max = mode.vrefresh;
> + igt_output_override_mode(data->output, &mode);
> + prepare_test(data, output, pipe);
> + data->primary = igt_output_get_plane_type(data->output,
> + DRM_PLANE_TYPE_PRIMARY);
> + target_ns = NSECS_PER_SEC / (data->range.max - 10);
> + do_flip(data, &data->fb_rgb);
> + start_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> +
> + while(event_ns - start_ns > TEST_DURATION_NS) {
> + front = !front;
> + do_flip(data, front ? &data->fb_rgb : &data->fb_rgr);
> + event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> +
> + cur_val = read_pkgc_counter(data->debugfs_root_fd);
> + if (cur_val > pre_val) {
> + pkgc_flag = true;
> + }
> +
> + if ( pkgc_flag == true)
> + break;
> + while (get_time_ns() < target_ns);
Looks, this is wrong. You're comparing the timestamp with the amount of
time.
Also, do we really need to filp everytime? Flip once & listen the vblank
events isn't enough to achieve extended vblank?
> + }
> +
> + psr_dpms(data, DRM_MODE_DPMS_ON);
> + cleanup_dc3co_fbs(data);
> + }
> +
> + if (flag)
> + igt_skip("No connector with VRR found\n");
> + igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
> +
> +}
> +
> static void test_pkgc_state_dpms(data_t *data)
> {
> unsigned int timeout_sec = 6;
> @@ -669,6 +920,17 @@ igt_main
> test_dc_state_psr(&data, CHECK_DC5);
> }
>
> + igt_describe("This test validates display engine entry to DC8 state "
> + "while extended vblank");
> + igt_subtest("deep-pkgc") {
> + igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
> + "PC8+ residencies not supported\n");
> + if (intel_display_ver(data.devid) >= 20)
Please use igt_require() instead of if-else.
- Bhanu
> + test_deep_pkgc_state(&data);
> + else
> + igt_skip("Deep PKGC not supported on this platform");
> + }
> +
> igt_describe("This test validates display engine entry to DC6 state "
> "while PSR is active");
> igt_subtest("dc6-psr") {
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] Add a new test to validate the deep sleep state during extended vblank
2024-01-18 16:21 [PATCH i-g-t] Add a new test to validate the deep sleep state during extended vblank Jeevan B
` (3 preceding siblings ...)
2024-02-05 6:46 ` [PATCH i-g-t] " Modem, Bhanuprakash
@ 2024-02-06 17:50 ` Kamil Konieczny
4 siblings, 0 replies; 6+ messages in thread
From: Kamil Konieczny @ 2024-02-06 17:50 UTC (permalink / raw)
To: igt-dev; +Cc: Jeevan B, Suraj Kandpal, Bhanuprakash Modem
Hi Jeevan,
On 2024-01-18 at 21:51:00 +0530, Jeevan B wrote:
please prepend your subject with test name you modify, instead of:
[PATCH i-g-t] Add a new test to validate the deep sleep state during extended vblank
write something like:
[PATCH i-g-t] tests/intel/kms_pm_dc: validate deep sleep during extended vblank
> Add a new test to validate deep sleep states during extended vblank
> scenarios, where two frames are committed simultaneously for a give
> time with reduced refresh rate.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/intel/kms_pm_dc.c | 262 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 262 insertions(+)
>
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
> index 0d5824e67..da5d0e819 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -74,6 +74,10 @@
> * Description: This test validates display engine entry to DC6 state while PSR is active
> * Functionality: pm_dc, psr1
> *
> + * SUBTEST: deep-pkgc
> + * Description: This test validates display engine entry to Deep PKGC state for extended vblank
> + * Functionality: pm_dc
> + *
> * SUBTEST: dc9-dpms
> * Description: This test validates display engine entry to DC9 state
> */
> @@ -89,6 +93,14 @@
> #define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
> #define KMS_POLL_DISABLE 0
> #define DC9_RESETS_DC_COUNTERS(devid) (!(IS_DG1(devid) || IS_DG2(devid) || AT_LEAST_DISPLAY(devid, 14)))
Put newline here.
> +#define DRM_MODE_FMT "\"%s\": %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x"
Move this below to other printing debug DRM_MODE_ARG
> +#define NSECS_PER_SEC (1000000000ull)
> +#define TEST_DURATION_NS (5000000000ull)
Is it multiply of seconds? If so make it more readable like:
#define TEST_DURATION_NS (5ull * NSECS_PER_SEC)
Separate debug prints from tests params with newline.
Regards,
Kamil
> +#define DRM_MODE_ARG(m) \
> + (m)->name, (m)->vrefresh, (m)->clock, \
> + (m)->hdisplay, (m)->hsync_start, (m)->hsync_end, (m)->htotal, \
> + (m)->vdisplay, (m)->vsync_start, (m)->vsync_end, (m)->vtotal, \
> + (m)->type, (m)->flags
>
> IGT_TEST_DESCRIPTION("Tests to validate display power DC states.");
>
> @@ -98,6 +110,11 @@ typedef struct {
> double r, g, b;
> } color_t;
>
> +typedef struct range {
> + unsigned int min;
> + unsigned int max;
> +} range_t;
> +
> typedef struct {
> int drm_fd;
> int msr_fd;
> @@ -110,12 +127,32 @@ typedef struct {
> enum psr_mode op_psr_mode;
> drmModeModeInfo *mode;
> igt_output_t *output;
> + range_t range;
> bool runtime_suspend_disabled;
> + igt_plane_t *primary;
> } data_t;
>
> +typedef struct vtest_ns {
> + uint64_t min;
> + uint64_t mid;
> + uint64_t max;
> +} vtest_ns_t;
> +
> static bool dc_state_wait_entry(int drm_fd, int dc_flag, int prev_dc_count);
> static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count);
>
> +/* Returns true if driver supports VRR. */
> +static bool has_vrr(igt_output_t *output)
> +{
> + return igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE);
> +}
> +
> +/* Returns true if an output supports VRR. */
> +static bool vrr_capable(igt_output_t *output)
> +{
> + return igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE);
> +}
> +
> static void setup_output(data_t *data)
> {
> igt_display_t *display = &data->display;
> @@ -136,6 +173,53 @@ static void setup_output(data_t *data)
> }
> }
>
> +/* Read min and max vrr range from the connector debugfs. */
> +static range_t
> +get_vrr_range(data_t *data, igt_output_t *output)
> +{
> + char buf[256];
> + char *start_loc;
> + int fd, res;
> + range_t range;
> +
> + fd = igt_debugfs_connector_dir(data->drm_fd, output->name, O_RDONLY);
> + igt_assert(fd >= 0);
> +
> + res = igt_debugfs_simple_read(fd, "vrr_range", buf, sizeof(buf));
> + igt_require(res > 0);
> +
> + close(fd);
> +
> + igt_assert(start_loc = strstr(buf, "Min: "));
> + igt_assert_eq(sscanf(start_loc, "Min: %u", &range.min), 1);
> +
> + igt_assert(start_loc = strstr(buf, "Max: "));
> + igt_assert_eq(sscanf(start_loc, "Max: %u", &range.max), 1);
> +
> + return range;
> +}
> +
> +/* Instead of running on default mode, loop through the connector modes
> + * and find the mode with max refresh rate to exercise full vrr range.
> + */
> +static drmModeModeInfo
> +output_mode_with_maxrate(igt_output_t *output, unsigned int vrr_max)
> +{
> + int i;
> + drmModeConnectorPtr connector = output->config.connector;
> + drmModeModeInfo mode = *igt_output_get_mode(output);
> +
> + igt_debug("Default Mode " DRM_MODE_FMT "\n", DRM_MODE_ARG(&mode));
> +
> + for (i = 0; i < connector->count_modes; i++)
> + if (connector->modes[i].vrefresh > mode.vrefresh &&
> + connector->modes[i].vrefresh <= vrr_max)
> + mode = connector->modes[i];
> + igt_debug("Override Mode " DRM_MODE_FMT "\n", DRM_MODE_ARG(&mode));
> +
> + return mode;
> +}
> +
> static void display_fini(data_t *data)
> {
> igt_display_fini(&data->display);
> @@ -582,6 +666,173 @@ static unsigned int read_pkgc_counter(int debugfs_root_fd)
> return get_dc_counter(str);
> }
>
> +/* Converts a timespec structure to nanoseconds. */
> +static uint64_t timespec_to_ns(struct timespec *ts)
> +{
> + return ts->tv_sec * NSECS_PER_SEC + ts->tv_nsec;
> +}
> +
> +/*
> + * Returns the current CLOCK_MONOTONIC time in nanoseconds.
> + * The regular IGT helpers can't be used since they default to
> + * CLOCK_MONOTONIC_RAW - which isn't what the kernel uses for its timestamps.
> + */
> +static uint64_t get_time_ns(void)
> +{
> + struct timespec ts;
> + memset(&ts, 0, sizeof(ts));
> + errno = 0;
> +
> + if (!clock_gettime(CLOCK_MONOTONIC, &ts))
> + return timespec_to_ns(&ts);
> +
> + igt_warn("Could not read monotonic time: %s\n", strerror(errno));
> + igt_fail(-errno);
> +
> + return 0;
> +}
> +
> +/*
> + * Gets an event from DRM and returns its timestamp in nanoseconds.
> + * Asserts if the event from DRM is not matched with requested one.
> + *
> + * This blocks until the event is received.
> + */
> +static uint64_t get_kernel_event_ns(data_t *data, uint32_t event)
> +{
> + struct drm_event_vblank ev;
> +
> + igt_set_timeout(1, "Waiting for an event\n");
> + igt_assert_eq(read(data->drm_fd, &ev, sizeof(ev)), sizeof(ev));
> + igt_assert_eq(ev.base.type, event);
> + igt_reset_timeout();
> +
> + return ev.tv_sec * NSECS_PER_SEC + ev.tv_usec * 1000ull;
> +}
> +
> +/* Performs an atomic non-blocking page-flip on a pipe. */
> +static void
> +do_flip(data_t *data, igt_fb_t *fb)
> +{
> + int ret;
> +
> + igt_set_timeout(1, "Scheduling page flip\n");
> +
> + igt_plane_set_fb(data->primary, fb);
> +
> + do {
> + ret = igt_display_try_commit_atomic(&data->display,
> + DRM_MODE_ATOMIC_NONBLOCK |
> + DRM_MODE_PAGE_FLIP_EVENT,
> + data);
> + } while (ret == -EBUSY);
> +
> + igt_assert_eq(ret, 0);
> + igt_reset_timeout();
> +}
> +
> +/* Prepare the display for testing on the given pipe. */
> +static void prepare_test(data_t *data, igt_output_t *output, enum pipe pipe)
> +{
> + drmModeModeInfo mode;
> + cairo_t *cr;
> +
> + mode = *igt_output_get_mode(output);
> +
> + /* Prepare resources */
> + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0.50, 0.50, 0.50, &data->fb_rgb);
> +
> + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay,
> + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
> + 0.50, 0.50, 0.50, &data->fb_rgr);
> +
> + cr = igt_get_cairo_ctx(data->drm_fd, &data->fb_rgb);
> +
> + igt_paint_color(cr, 0, 0, mode.hdisplay / 10, mode.vdisplay / 10,
> + 1.00, 0.00, 0.00);
> +
> + igt_put_cairo_ctx(cr);
> +
> + /* Take care of any required modesetting before the test begins. */
> + data->primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> + igt_plane_set_fb(data->primary, &data->fb_rgb);
> +
> + /* Clear vrr_enabled state before enabling it, because
> + * it might be left enabled if the previous test fails.
> + */
> + igt_pipe_set_prop_value(&data->display, pipe, IGT_CRTC_VRR_ENABLED, 0);
> +
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +static void test_deep_pkgc_state(data_t *data)
> +{
> + unsigned int pre_val = 0, cur_val = 0;
> + bool flag, front = false, pkgc_flag = false;
> + uint64_t start_ns, target_ns, event_ns;
> + drmModeModeInfo mode;
> + enum pipe pipe;
> + igt_display_t *display = &data->display;
> + igt_output_t *output;
> +
> + pre_val = read_pkgc_counter(data->debugfs_root_fd);
> + psr_dpms(data, DRM_MODE_DPMS_OFF);
> +
> + for_each_pipe_with_valid_output(display, pipe, output) {
> + igt_display_reset(display);
> + igt_output_set_pipe(output, pipe);
> + data->output = output;
> + data->mode = igt_output_get_mode(output);
> + igt_require(has_vrr(data->output));
> + if (!vrr_capable(data->output)) {
> + flag = false;
> + continue;
> + }
> +
> + /* Capture VRR range */
> + data->range = get_vrr_range(data, data->output);
> + /* Override mode with max vrefresh.
> + * - vrr_min range should be less than the override mode vrefresh.
> + * - Limit the vrr_max range with the override mode vrefresh.
> + */
> + mode = output_mode_with_maxrate(data->output, data->range.max);
> + igt_require(mode.vrefresh > data->range.min);
> + data->range.max = mode.vrefresh;
> + igt_output_override_mode(data->output, &mode);
> + prepare_test(data, output, pipe);
> + data->primary = igt_output_get_plane_type(data->output,
> + DRM_PLANE_TYPE_PRIMARY);
> + target_ns = NSECS_PER_SEC / (data->range.max - 10);
> + do_flip(data, &data->fb_rgb);
> + start_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> +
> + while(event_ns - start_ns > TEST_DURATION_NS) {
> + front = !front;
> + do_flip(data, front ? &data->fb_rgb : &data->fb_rgr);
> + event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> +
> + cur_val = read_pkgc_counter(data->debugfs_root_fd);
> + if (cur_val > pre_val) {
> + pkgc_flag = true;
> + }
> +
> + if ( pkgc_flag == true)
> + break;
> + while (get_time_ns() < target_ns);
> + }
> +
> + psr_dpms(data, DRM_MODE_DPMS_ON);
> + cleanup_dc3co_fbs(data);
> + }
> +
> + if (flag)
> + igt_skip("No connector with VRR found\n");
> + igt_assert_f(pkgc_flag, "PKGC10 is not achieved.\n");
> +
> +}
> +
> static void test_pkgc_state_dpms(data_t *data)
> {
> unsigned int timeout_sec = 6;
> @@ -669,6 +920,17 @@ igt_main
> test_dc_state_psr(&data, CHECK_DC5);
> }
>
> + igt_describe("This test validates display engine entry to DC8 state "
> + "while extended vblank");
> + igt_subtest("deep-pkgc") {
> + igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
> + "PC8+ residencies not supported\n");
> + if (intel_display_ver(data.devid) >= 20)
> + test_deep_pkgc_state(&data);
> + else
> + igt_skip("Deep PKGC not supported on this platform");
> + }
> +
> igt_describe("This test validates display engine entry to DC6 state "
> "while PSR is active");
> igt_subtest("dc6-psr") {
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-02-06 17:50 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-18 16:21 [PATCH i-g-t] Add a new test to validate the deep sleep state during extended vblank Jeevan B
2024-01-18 19:04 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-01-18 19:20 ` ✓ CI.xeBAT: " Patchwork
2024-01-19 8:38 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-02-05 6:46 ` [PATCH i-g-t] " Modem, Bhanuprakash
2024-02-06 17:50 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox