* [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
@ 2026-02-10 3:24 Jeevan B
2026-02-10 4:08 ` ✓ Xe.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev4) Patchwork
` (5 more replies)
0 siblings, 6 replies; 15+ messages in thread
From: Jeevan B @ 2026-02-10 3:24 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, mohammed.thasleem, mohammed.bilal, Jeevan B
Move DC counter utility functions from tests/intel/kms_pm_dc.c
to lib/igt_pm.c for reuse across other tests.
v2: Add 'igt_' prefix before all functions.
v3: Fix typos, fix debugfs_fd type and add errno.h include.
v4: Add IGT_INTEL_ prefix to all CHECK_DC* flag constants and
PACKAGE_CSTATE_PATH constant.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
lib/igt_pm.c | 170 +++++++++++++++++++++++++++++++++++
lib/igt_pm.h | 15 ++++
tests/intel/kms_pm_dc.c | 191 ++++++++--------------------------------
3 files changed, 222 insertions(+), 154 deletions(-)
diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 1ffcdcef3..ebf39baab 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -31,6 +31,7 @@
#include <pciaccess.h>
#include <stdlib.h>
#include <string.h>
+#include <errno.h>
#include <unistd.h>
#include <sys/stat.h>
#ifdef __linux__
@@ -1543,3 +1544,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
DRM_MODE_DPMS_ON);
igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
}
+
+/**
+ * igt_get_dc_counter:
+ * @dc_data: String containing DC counter data in format
+ *
+ * Returns the counter value as uint32_t
+ */
+uint32_t igt_get_dc_counter(const char *dc_data)
+{
+ char *e;
+ long ret;
+ char *s = strchr(dc_data, ':');
+
+ igt_assert(s);
+ s++;
+ ret = strtol(s, &e, 10);
+ igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) &&
+ e > s && *e == '\n' && ret >= 0);
+ return ret;
+}
+
+/**
+ * igt_support_dc6:
+ * @debugfs_fd: DRM file descriptor
+ *
+ * Returns true if DC6 is supported.
+ */
+bool igt_support_dc6(int debugfs_fd)
+{
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+ return !!strstr(buf, "DC5 -> DC6 count");
+}
+
+/**
+ * igt_get_dc6_counter: Locate DC6 counter string in debugfs buffer
+ * @buf: Buffer containing i915_dmc_info debugfs output
+ *
+ * Searches for DC6 counter information in the DMC info buffer.
+ */
+char *igt_get_dc6_counter(const char *buf)
+{
+ char *str;
+
+ str = strstr(buf, "DC5 -> DC6 count");
+ if (!str)
+ str = strstr(buf, "DC5 -> DC6 allowed count");
+
+ return str;
+}
+
+/**
+ * igt_read_dc_counter:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag (IGT_INTEL_CHECK_DC5, IGT_INTEL_CHECK_DC6, or IGT_INTEL_CHECK_DC3CO)
+ *
+ * Returns current counter value for the specified DC state
+ */
+uint32_t igt_read_dc_counter(int debugfs_fd, int dc_flag)
+{
+ char buf[4096];
+ char *str;
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
+
+ if (dc_flag & IGT_INTEL_CHECK_DC5) {
+ str = strstr(buf, "DC3 -> DC5 count");
+ igt_assert_f(str, "DC5 counter is not available\n");
+ } else if (dc_flag & IGT_INTEL_CHECK_DC6) {
+ str = igt_get_dc6_counter(buf);
+ igt_assert_f(str, "No DC6 counter available\n");
+ } else if (dc_flag & IGT_INTEL_CHECK_DC3CO) {
+ str = strstr(buf, "DC3CO count");
+ igt_assert_f(str, "DC3CO counter is not available\n");
+ } else {
+ igt_assert(!"reached");
+ str = NULL;
+ }
+
+ return igt_get_dc_counter(str);
+}
+
+/**
+ * igt_dc_state_wait_entry:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag
+ * @prev_dc_count: Previous counter value to compare against
+ *
+ * Returns true if DC state entry detected within timeout, false otherwise
+ */
+bool igt_dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
+{
+ return igt_wait(igt_read_dc_counter(debugfs_fd, dc_flag) >
+ prev_dc_count, 3000, 100);
+}
+
+/**
+ * igt_dc_state_name:
+ * @dc_flag: DC state flag
+ *
+ * Converts DC state flag constants to readable string names
+ */
+const char *igt_dc_state_name(int dc_flag)
+{
+ if (dc_flag & IGT_INTEL_CHECK_DC3CO)
+ return "DC3CO";
+ else if (dc_flag & IGT_INTEL_CHECK_DC5)
+ return "DC5";
+ else
+ return "DC6";
+}
+
+/**
+ * igt_require_dc_counter:
+ * @debugfs_fd: File descriptor for the debugfs
+ * @dc_flag: DC counter type to check (IGT_INTEL_CHECK_DC3CO, IGT_INTEL_CHECK_DC5,
+ * or IGT_INTEL_CHECK_DC6)
+ *
+ * Skips the current test if the requested DC counter is not available
+ * on the system.
+ */
+void igt_require_dc_counter(int debugfs_fd, int dc_flag)
+{
+ char *str;
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+
+ switch (dc_flag) {
+ case IGT_INTEL_CHECK_DC3CO:
+ igt_skip_on_f(!strstr(buf, "DC3CO count"),
+ "DC3CO counter is not available\n");
+ break;
+ case IGT_INTEL_CHECK_DC5:
+ igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
+ "DC5 counter is not available\n");
+ break;
+ case IGT_INTEL_CHECK_DC6:
+ str = igt_get_dc6_counter(buf);
+ igt_skip_on_f(!str, "No DC6 counter available\n");
+ break;
+ default:
+ igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
+ }
+}
+
+/**
+ * igt_read_pkgc_counter:
+ * @debugfs_root_fd: File descriptor for the debugfs
+ *
+ * Returns PC10 counter value.
+ */
+unsigned int igt_read_pkgc_counter(int debugfs_root_fd)
+{
+ char buf[4096];
+ char *str;
+ int len;
+
+ len = igt_sysfs_read(debugfs_root_fd, IGT_INTEL_PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
+ igt_skip_on_f(len < 0, "PKGC state file not found\n");
+ buf[len] = '\0';
+ str = strstr(buf, "Package C10");
+ igt_skip_on_f(!str, "PKGC10 is not supported.\n");
+
+ return igt_get_dc_counter(str);
+}
diff --git a/lib/igt_pm.h b/lib/igt_pm.h
index e931e51af..6a33c6db2 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -29,6 +29,13 @@
#include "igt_kms.h"
+#define IGT_INTEL_PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
+
+/* DC State Flags */
+#define IGT_INTEL_CHECK_DC5 (1 << 0)
+#define IGT_INTEL_CHECK_DC6 (1 << 1)
+#define IGT_INTEL_CHECK_DC3CO (1 << 2)
+
void igt_pm_enable_audio_runtime_pm(void);
void igt_pm_enable_sata_link_power_management(void);
void igt_pm_restore_sata_link_power_management(void);
@@ -99,5 +106,13 @@ int igt_pm_get_runtime_usage(struct pci_device *pci_dev);
void igt_pm_ignore_slpc_efficient_freq(int i915, int gtfd, bool val);
bool igt_has_pci_pm_capability(struct pci_device *pci_dev);
void igt_pm_dpms_toggle(igt_output_t *output);
+uint32_t igt_get_dc_counter(const char *dc_data);
+bool igt_support_dc6(int debugfs_fd);
+char *igt_get_dc6_counter(const char *buf);
+uint32_t igt_read_dc_counter(int debugfs_fd, int dc_flag);
+bool igt_dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count);
+const char *igt_dc_state_name(int dc_flag);
+void igt_require_dc_counter(int debugfs_fd, int dc_flag);
+unsigned int igt_read_pkgc_counter(int debugfs_root_fd);
#endif /* IGT_PM_H */
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 83dbac296..39e94f36b 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -79,15 +79,9 @@
* Description: This test validates display engine entry to DC5 state while PSR is active on Pipe B
*/
-/* DC State Flags */
-#define CHECK_DC5 (1 << 0)
-#define CHECK_DC6 (1 << 1)
-#define CHECK_DC3CO (1 << 2)
-
#define PWR_DOMAIN_INFO "i915_power_domain_info"
#define RPM_STATUS "i915_runtime_pm_status"
#define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
-#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) || intel_display_ver(devid) >= 14))
#define SEC 1
@@ -116,7 +110,6 @@ typedef struct {
bool runtime_suspend_disabled;
} data_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);
static void set_output_on_pipe_b(data_t *data)
@@ -260,82 +253,20 @@ static void create_color_fb(data_t *data, igt_fb_t *fb, color_t *fb_color)
paint_rectangles(data, data->mode, fb_color, fb);
}
-static uint32_t get_dc_counter(char *dc_data)
-{
- char *e;
- long ret;
- char *s = strchr(dc_data, ':');
-
- igt_assert(s);
- s++;
- ret = strtol(s, &e, 10);
- igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) && e > s && *e == '\n' && ret >= 0);
- return ret;
-}
-
-static char *get_dc6_counter(const char *buf)
-{
- char *str;
-
- str = strstr(buf, "DC5 -> DC6 count");
- if (!str)
- str = strstr(buf, "DC5 -> DC6 allowed count");
-
- return str;
-}
-
-static uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag)
-{
- char buf[4096];
- char *str;
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
-
- if (dc_flag & CHECK_DC5) {
- str = strstr(buf, "DC3 -> DC5 count");
- igt_assert_f(str, "DC5 counter is not available\n");
- } else if (dc_flag & CHECK_DC6) {
- str = get_dc6_counter(buf);
- igt_assert_f(str, "No DC6 counter available\n");
- } else if (dc_flag & CHECK_DC3CO) {
- str = strstr(buf, "DC3CO count");
- igt_assert_f(str, "DC3CO counter is not available\n");
- } else {
- igt_assert(!"reached");
- str = NULL;
- }
-
- return get_dc_counter(str);
-}
-
-static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
-{
- return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
- prev_dc_count, 3000, 100);
-}
-
-static const char *dc_state_name(int dc_flag)
-{
- if (dc_flag & CHECK_DC3CO)
- return "DC3CO";
- else if (dc_flag & CHECK_DC5)
- return "DC5";
- else
- return "DC6";
-}
-
static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count)
{
- igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
- "%s state is not achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
- data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
+ igt_assert_f(igt_dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
+ "%s state is not achieved\n%s:\n%s\n", igt_dc_state_name(dc_flag),
+ PWR_DOMAIN_INFO, data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
+ PWR_DOMAIN_INFO));
}
static void check_dc_counter_negative(data_t *data, int dc_flag, uint32_t prev_dc_count)
{
- igt_assert_f(!dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
- "%s state is achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
- data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
+ igt_assert_f(!igt_dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
+ "%s state is achieved\n%s:\n%s\n", igt_dc_state_name(dc_flag),
+ PWR_DOMAIN_INFO, data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
+ PWR_DOMAIN_INFO));
}
static void setup_videoplayback(data_t *data)
@@ -366,7 +297,7 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
primary = igt_output_get_plane_type(data->output,
DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, NULL);
- dc3co_prev_cnt = read_dc_counter(data->debugfs_fd, CHECK_DC3CO);
+ dc3co_prev_cnt = igt_read_dc_counter(data->debugfs_fd, IGT_INTEL_CHECK_DC3CO);
/* Calculate delay to generate idle frame in usec*/
delay = 1.5 * ((1000 * 1000) / data->mode->vrefresh);
@@ -381,34 +312,8 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
usleep(delay);
}
- igt_require_f(dc_state_wait_entry(data->debugfs_fd,
- CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n");
-}
-
-static void require_dc_counter(int debugfs_fd, int dc_flag)
-{
- char *str;
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
-
- switch (dc_flag) {
- case CHECK_DC3CO:
- igt_skip_on_f(!strstr(buf, "DC3CO count"),
- "DC3CO counter is not available\n");
- break;
- case CHECK_DC5:
- igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
- "DC5 counter is not available\n");
- break;
- case CHECK_DC6:
- str = get_dc6_counter(buf);
- igt_skip_on_f(!str, "No DC6 counter available\n");
- break;
- default:
- igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
- }
+ igt_require_f(igt_dc_state_wait_entry(data->debugfs_fd, IGT_INTEL_CHECK_DC3CO,
+ dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n");
}
static void setup_dc3co(data_t *data)
@@ -421,7 +326,7 @@ static void setup_dc3co(data_t *data)
static void test_dc3co_vpb_simulation(data_t *data)
{
- require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
+ igt_require_dc_counter(data->debugfs_fd, IGT_INTEL_CHECK_DC3CO);
setup_output(data);
setup_dc3co(data);
setup_videoplayback(data);
@@ -433,8 +338,8 @@ static void test_dc5_retention_flops(data_t *data, int dc_flag)
{
uint32_t dc_counter_before_psr;
- require_dc_counter(data->debugfs_fd, dc_flag);
- dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd, dc_flag);
set_output_on_pipe_b(data);
setup_primary(data);
igt_assert(psr_wait_entry(data->debugfs_fd, data->op_psr_mode, NULL));
@@ -446,8 +351,8 @@ static void test_dc_state_psr(data_t *data, int dc_flag)
{
uint32_t dc_counter_before_psr;
- require_dc_counter(data->debugfs_fd, dc_flag);
- dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd, dc_flag);
setup_output(data);
setup_primary(data);
igt_require(!psr_disabled_check(data->debugfs_fd));
@@ -510,9 +415,9 @@ static void test_dc_state_dpms(data_t *data, int dc_flag)
{
uint32_t dc_counter;
- require_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
setup_dc_dpms(data);
- dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
dpms_off(data);
check_dc_counter(data, dc_flag, dc_counter);
dpms_on(data);
@@ -523,23 +428,14 @@ static void test_dc_state_dpms_negative(data_t *data, int dc_flag)
{
uint32_t dc_counter;
- require_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
setup_dc_dpms(data);
- dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
dpms_on(data);
check_dc_counter_negative(data, dc_flag, dc_counter);
cleanup_dc_dpms(data);
}
-static bool support_dc6(int debugfs_fd)
-{
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
- return strstr(buf, "DC5 -> DC6 count");
-}
-
static uint64_t read_runtime_suspended_time(int drm_fd)
{
struct pci_device *i915;
@@ -562,7 +458,8 @@ static bool dc9_wait_entry(data_t *data, int dc_target, int prev_dc, uint64_t pr
*/
return igt_wait((read_runtime_suspended_time(data->drm_fd) > prev_rpm) &&
(!DC9_RESETS_DC_COUNTERS(data->devid) ||
- (read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs, 1000);
+ (igt_read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs,
+ 1000);
}
static void check_dc9(data_t *data, int dc_target, int prev_dc, int prev_rpm)
@@ -582,12 +479,12 @@ static void setup_dc9_dpms(data_t *data, int dc_target)
__igt_sysfs_set_boolean(sysfs_fd, "poll", KMS_POLL_DISABLE);
close(sysfs_fd);
if (DC9_RESETS_DC_COUNTERS(data->devid)) {
- prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
+ prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
setup_dc_dpms(data);
dpms_off(data);
- igt_skip_on_f(!(igt_wait(read_dc_counter(data->debugfs_fd, dc_target) >
+ igt_skip_on_f(!(igt_wait(igt_read_dc_counter(data->debugfs_fd, dc_target) >
prev_dc, 3000, 100)), "Unable to enters shallow DC states\n");
- prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
+ prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
dpms_on(data);
cleanup_dc_dpms(data);
}
@@ -601,8 +498,8 @@ static void test_dc9_dpms(data_t *data)
{
int dc_target;
- require_dc_counter(data->debugfs_fd, CHECK_DC5);
- dc_target = support_dc6(data->debugfs_fd) ? CHECK_DC6 : CHECK_DC5;
+ igt_require_dc_counter(data->debugfs_fd, IGT_INTEL_CHECK_DC5);
+ dc_target = igt_support_dc6(data->debugfs_fd) ? IGT_INTEL_CHECK_DC6 : IGT_INTEL_CHECK_DC5;
setup_dc9_dpms(data, dc_target);
}
@@ -621,21 +518,6 @@ static int has_panels_without_dc_support(igt_display_t *display)
return external_panel;
}
-static unsigned int read_pkgc_counter(int debugfs_root_fd)
-{
- char buf[4096];
- char *str;
- int len;
-
- len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
- igt_skip_on_f(len < 0, "PKGC state file not found\n");
- buf[len] = '\0';
- str = strstr(buf, "Package C10");
- igt_skip_on_f(!str, "PKGC10 is not supported.\n");
-
- return get_dc_counter(str);
-}
-
static void test_deep_pkgc_state(data_t *data)
{
unsigned int pre_val = 0, cur_val = 0;
@@ -697,7 +579,7 @@ static void test_deep_pkgc_state(data_t *data)
igt_display_commit(&data->display);
/* Wait for the vblank to sync the frame time */
igt_wait_for_vblank_count(crtc, 1);
- pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ pre_val = igt_read_pkgc_counter(data->debugfs_root_fd);
/* Add a half-frame delay to ensure the flip occurs when the frame is active. */
usleep(delay * 0.5);
@@ -706,8 +588,9 @@ static void test_deep_pkgc_state(data_t *data)
igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
igt_display_commit(&data->display);
- igt_wait((cur_val = read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
- (delay * 2), (5 * MSEC));
+ igt_wait((cur_val = igt_read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
+ (delay * 2), (5 * MSEC));
+
if (cur_val > pre_val) {
pkgc_flag = true;
break;
@@ -769,7 +652,7 @@ int igt_main()
PSR_MODE_1, NULL));
data.op_psr_mode = PSR_MODE_1;
psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
- test_dc_state_psr(&data, CHECK_DC5);
+ test_dc_state_psr(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates display engine entry to DC6 state "
@@ -781,7 +664,7 @@ int igt_main()
psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
"PC8+ residencies not supported\n");
- test_dc_state_psr(&data, CHECK_DC6);
+ test_dc_state_psr(&data, IGT_INTEL_CHECK_DC6);
}
igt_describe("This test validates display engine entry to PKGC10 state "
@@ -796,7 +679,7 @@ int igt_main()
igt_describe("This test validates display engine entry to DC5 state "
"while all connectors's DPMS property set to OFF");
igt_subtest("dc5-dpms") {
- test_dc_state_dpms(&data, CHECK_DC5);
+ test_dc_state_dpms(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates display engine entry to DC5 state "
@@ -809,7 +692,7 @@ int igt_main()
data.op_psr_mode = PSR_MODE_1;
psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
igt_require(!psr_disabled_check(data.debugfs_fd));
- test_dc5_retention_flops(&data, CHECK_DC5);
+ test_dc5_retention_flops(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates negative scenario of DC5 display "
@@ -818,7 +701,7 @@ int igt_main()
igt_subtest("dc5-dpms-negative") {
igt_require_f(has_panels_without_dc_support(&data.display),
"External panel not detected, skip execution\n");
- test_dc_state_dpms_negative(&data, CHECK_DC5);
+ test_dc_state_dpms_negative(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates display engine entry to DC6 state "
@@ -826,7 +709,7 @@ int igt_main()
igt_subtest("dc6-dpms") {
igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
"PC8+ residencies not supported\n");
- test_dc_state_dpms(&data, CHECK_DC6);
+ test_dc_state_dpms(&data, IGT_INTEL_CHECK_DC6);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* ✓ Xe.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev4)
2026-02-10 3:24 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
@ 2026-02-10 4:08 ` Patchwork
2026-02-10 4:29 ` ✓ i915.CI.BAT: " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-02-10 4:08 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1003 bytes --]
== Series Details ==
Series: lib/igt_pm: Move DC State Counter Functions to common library (rev4)
URL : https://patchwork.freedesktop.org/series/158629/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8746_BAT -> XEIGTPW_14524_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8746 -> IGTPW_14524
* Linux: xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2 -> xe-4532-d2a98b98376b6a16c835a131b12f295848c656db
IGTPW_14524: 14524
IGT_8746: 8746
xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2
xe-4532-d2a98b98376b6a16c835a131b12f295848c656db: d2a98b98376b6a16c835a131b12f295848c656db
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/index.html
[-- Attachment #2: Type: text/html, Size: 1562 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* ✓ i915.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev4)
2026-02-10 3:24 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
2026-02-10 4:08 ` ✓ Xe.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev4) Patchwork
@ 2026-02-10 4:29 ` Patchwork
2026-02-10 9:23 ` ✗ Xe.CI.FULL: failure " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-02-10 4:29 UTC (permalink / raw)
To: B, Jeevan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6985 bytes --]
== Series Details ==
Series: lib/igt_pm: Move DC State Counter Functions to common library (rev4)
URL : https://patchwork.freedesktop.org/series/158629/
State : success
== Summary ==
CI Bug Log - changes from IGT_8746 -> IGTPW_14524
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/index.html
Participating hosts (42 -> 41)
------------------------------
Additional (1): bat-atsm-1
Missing (2): bat-dg2-13 fi-snb-2520m
New tests
---------
New tests have been introduced between IGT_8746 and IGTPW_14524:
### New IGT tests (9) ###
* igt@gem_exec_basic@basic@vecs1-lmem0:
- Statuses : 4 pass(s)
- Exec time: [0.0] s
* igt@gem_exec_basic@basic@vecs1-smem:
- Statuses : 4 pass(s)
- Exec time: [0.0, 0.00] s
* igt@gem_exec_fence@basic-await@vecs1:
- Statuses : 4 pass(s)
- Exec time: [0.08, 0.10] s
* igt@gem_exec_fence@basic-busy@vecs1:
- Statuses : 4 pass(s)
- Exec time: [0.06, 0.07] s
* igt@gem_exec_fence@basic-wait@vecs1:
- Statuses : 4 pass(s)
- Exec time: [0.05, 0.07] s
* igt@gem_exec_fence@nb-await@vecs1:
- Statuses : 4 pass(s)
- Exec time: [0.07, 0.08] s
* igt@i915_pm_rpm@module-reload:
- Statuses : 37 pass(s) 4 skip(s)
- Exec time: [0.0, 35.86] s
* igt@kms_busy@basic@flip:
- Statuses : 32 pass(s)
- Exec time: [0.37, 1.06] s
* igt@kms_busy@basic@modeset:
- Statuses : 31 pass(s) 1 skip(s)
- Exec time: [0.0, 4.57] s
Known issues
------------
Here are the changes found in IGTPW_14524 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#1849] / [i915#2582])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@fbdev@info.html
* igt@fbdev@read:
- bat-atsm-1: NOTRUN -> [SKIP][2] ([i915#2582]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@fbdev@read.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#4079])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4077]) +4 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#15657])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- fi-glk-j4005: [PASS][8] -> [DMESG-FAIL][9] ([i915#14808]) +1 other test dmesg-fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8746/fi-glk-j4005/igt@i915_selftest@live.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/fi-glk-j4005/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-atsm-1: NOTRUN -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#6077]) +37 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#6078]) +22 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#6093]) +4 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-atsm-1: NOTRUN -> [SKIP][14] ([i915#1836]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#7357])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#6094])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][17] +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/bat-atsm-1/igt@prime_vgem@basic-write.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14808
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6094
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7357]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7357
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8746 -> IGTPW_14524
* Linux: CI_DRM_17961 -> CI_DRM_17964
CI-20190529: 20190529
CI_DRM_17961: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_17964: d2a98b98376b6a16c835a131b12f295848c656db @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14524: 14524
IGT_8746: 8746
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/index.html
[-- Attachment #2: Type: text/html, Size: 8357 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ Xe.CI.FULL: failure for lib/igt_pm: Move DC State Counter Functions to common library (rev4)
2026-02-10 3:24 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
2026-02-10 4:08 ` ✓ Xe.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev4) Patchwork
2026-02-10 4:29 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-02-10 9:23 ` Patchwork
2026-02-10 15:26 ` ✗ i915.CI.Full: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-02-10 9:23 UTC (permalink / raw)
To: B, Jeevan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 50561 bytes --]
== Series Details ==
Series: lib/igt_pm: Move DC State Counter Functions to common library (rev4)
URL : https://patchwork.freedesktop.org/series/158629/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8746_FULL -> XEIGTPW_14524_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14524_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14524_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14524_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
#### Warnings ####
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: [SKIP][5] ([Intel XE#736]) -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
Known issues
------------
Here are the changes found in XEIGTPW_14524_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-lnl: [PASS][7] -> [ABORT][8] ([Intel XE#7169]) +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-3/igt@kms_async_flips@async-flip-suspend-resume.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-7/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2370])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2314] / [Intel XE#2894])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +5 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3432]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#3432])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2724])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-10/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#4418])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#306])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2325])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2252]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-10/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#373]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2341]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2390] / [Intel XE#6974])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-9/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#3304]) +2 other tests fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-8/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@legacy@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][32] ([Intel XE#1178] / [Intel XE#3304])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@kms_content_protection@legacy@pipe-a-dp-2.html
* igt@kms_content_protection@uevent:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3278])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2321]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2320]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-5/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2321])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#309]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2291]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2291]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][42] -> [FAIL][43] ([Intel XE#5299])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4210])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2244]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1138])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@kms_feature_discovery@display-4x.html
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1138])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2374])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1421]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2316]) +6 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-3/igt@kms_flip@2x-flip-vs-wf_vblank.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#301])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7178]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7178]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7061])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4141]) +7 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2312]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7061]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#651]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2311]) +11 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2313]) +14 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#656]) +22 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#3544])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#7086])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#7130]) +8 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-3/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-0:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7130]) +17 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#7111] / [Intel XE#7130]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7131])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7111] / [Intel XE#7131])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2393])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#4596]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2392])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#3309])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-8/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#3309])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][79] ([Intel XE#2029])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1406] / [Intel XE#2893]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-5/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1406]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-3/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@kms_psr@psr-basic.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#2414])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1127]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2330])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1435]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2168])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-10/igt@kms_vrr@lobf.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][92] ([Intel XE#6390]) +1 other test fail
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-5/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][93] -> [SKIP][94] ([Intel XE#1499])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-4/igt@kms_vrr@negative-basic.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#1499])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#6599])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-vm-bind-ufence:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#4837]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-ufence.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-8/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#4518])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-2/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#688]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1392]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2322]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-7/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#7136]) +6 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#7136]) +7 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#6874]) +11 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-5/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#6874]) +12 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#4837]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-7/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#5007])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#6196])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#4943]) +10 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-1/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#4943]) +9 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-huge.html
* igt@xe_exec_system_allocator@twice-malloc-busy-nomemset:
- shard-bmg: [PASS][113] -> [ABORT][114] ([Intel XE#7169])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-3/igt@xe_exec_system_allocator@twice-malloc-busy-nomemset.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@xe_exec_system_allocator@twice-malloc-busy-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#7138]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html
* igt@xe_exec_threads@threads-multi-queue-fd-rebind:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#7138]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2833])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2833])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_multigpu_svm@mgpu-latency-copy-prefetch:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#6964])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@xe_multigpu_svm@mgpu-latency-copy-prefetch.html
* igt@xe_multigpu_svm@mgpu-pagefault-conflict:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#6964]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@xe_multigpu_svm@mgpu-pagefault-conflict.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2284])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-1/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#584]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-5/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#579])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-7/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#4650])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#4733])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-config:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#944])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-engines:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#944]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-1/igt@xe_query@multigpu-query-engines.html
* igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#7174])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-2/igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [PASS][129] -> [FAIL][130] ([Intel XE#6569])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-10/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#4273])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-3/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][132] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][134] ([Intel XE#2291]) -> [PASS][135] +4 other tests pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][136] ([Intel XE#6715]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [SKIP][138] ([Intel XE#4354]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][140] ([Intel XE#2316]) -> [PASS][141] +7 other tests pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][142] ([Intel XE#301]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [DMESG-WARN][144] ([Intel XE#5208]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-bmg: [DMESG-WARN][146] ([Intel XE#3428]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][148] ([Intel XE#2571]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][150] ([Intel XE#718]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-lnl: [SKIP][152] ([Intel XE#7197]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-4/igt@kms_pm_rpm@universal-planes-dpms.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][154] ([Intel XE#6321]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_prime_self_import@basic-with_two_bos:
- shard-bmg: [ABORT][156] ([Intel XE#7169]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-4/igt@xe_prime_self_import@basic-with_two_bos.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-8/igt@xe_prime_self_import@basic-with_two_bos.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-bmg: [SKIP][158] ([Intel XE#7194]) -> [FAIL][159] ([Intel XE#3304])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: [FAIL][160] ([Intel XE#3304]) -> [SKIP][161] ([Intel XE#7194])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-8/igt@kms_content_protection@atomic-hdcp14.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@legacy:
- shard-bmg: [SKIP][162] ([Intel XE#2341]) -> [FAIL][163] ([Intel XE#1178] / [Intel XE#3304])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_content_protection@legacy.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: [FAIL][164] ([Intel XE#6707]) -> [SKIP][165] ([Intel XE#7194])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-9/igt@kms_content_protection@uevent-hdcp14.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][166] ([Intel XE#2311]) -> [SKIP][167] ([Intel XE#2312]) +10 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][168] ([Intel XE#4141]) -> [SKIP][169] ([Intel XE#2312]) +7 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][170] ([Intel XE#2312]) -> [SKIP][171] ([Intel XE#4141]) +10 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][172] ([Intel XE#2312]) -> [SKIP][173] ([Intel XE#2311]) +11 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][174] ([Intel XE#2312]) -> [SKIP][175] ([Intel XE#2313]) +19 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][176] ([Intel XE#2313]) -> [SKIP][177] ([Intel XE#2312]) +17 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#7197]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7197
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8746 -> IGTPW_14524
* Linux: xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2 -> xe-4532-d2a98b98376b6a16c835a131b12f295848c656db
IGTPW_14524: 14524
IGT_8746: 8746
xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2
xe-4532-d2a98b98376b6a16c835a131b12f295848c656db: d2a98b98376b6a16c835a131b12f295848c656db
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14524/index.html
[-- Attachment #2: Type: text/html, Size: 58645 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ i915.CI.Full: failure for lib/igt_pm: Move DC State Counter Functions to common library (rev4)
2026-02-10 3:24 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
` (2 preceding siblings ...)
2026-02-10 9:23 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-10 15:26 ` Patchwork
2026-02-10 20:17 ` [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Thasleem, Mohammed
2026-02-11 13:53 ` Kamil Konieczny
5 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-02-10 15:26 UTC (permalink / raw)
To: B, Jeevan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 142595 bytes --]
== Series Details ==
Series: lib/igt_pm: Move DC State Counter Functions to common library (rev4)
URL : https://patchwork.freedesktop.org/series/158629/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17964_full -> IGTPW_14524_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14524_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14524_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_14524/index.html
Participating hosts (10 -> 11)
------------------------------
Additional (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14524_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_3d@basic:
- shard-mtlp: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-mtlp-7/igt@kms_3d@basic.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@kms_3d@basic.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-rkl: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
#### Warnings ####
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: [SKIP][6] ([i915#9292]) -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-mtlp-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: [SKIP][8] ([i915#14104]) -> [SKIP][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-3/igt@kms_pm_dc@dc6-dpms.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][10] ([i915#4281]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
New tests
---------
New tests have been introduced between CI_DRM_17964_full and IGTPW_14524_full:
### New IGT tests (4) ###
* igt@gem_ctx_shared@q-in-order@vecs1:
- Statuses : 1 pass(s)
- Exec time: [0.19] s
* igt@gem_exec_schedule@lateslice@vecs1:
- Statuses : 1 pass(s)
- Exec time: [0.02] s
* igt@gem_spin_batch@engines@vecs1:
- Statuses : 1 pass(s)
- Exec time: [3.24] s
* igt@perf_pmu@busy-start@vecs1:
- Statuses : 1 pass(s)
- Exec time: [2.55] s
Known issues
------------
Here are the changes found in IGTPW_14524_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#6230])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#6230])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#8411]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8411])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8411])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#8411])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#7697]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#7697])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-8/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#6335])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@reset-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#15314])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-2/igt@gem_eio@reset-stress@blt.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-12/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-7/igt@gem_exec_balancer@noheartbeat.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#8555])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-16/igt@gem_exec_balancer@noheartbeat.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#8555])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-5/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][33] ([i915#11713])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-6/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#6334]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#6334]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-14/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#6334]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-8/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][40] +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#14544] / [i915#3281])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +13 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#7276])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: NOTRUN -> [INCOMPLETE][47] ([i915#13356]) +1 other test incomplete
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-none.html
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4860]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#2190])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
- shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#2190])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-2/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#12193])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4565])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-12/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_vme:
- shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#284])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4083])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-4/igt@gem_mmap@bad-size.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4083])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-15/igt@gem_mmap@bad-size.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-5/igt@gem_mmap_gtt@ptrace.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#14544] / [i915#3282])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk10: NOTRUN -> [WARN][67] ([i915#14702] / [i915#2658])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#13398])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#13398])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#13398])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-rkl: [PASS][72] -> [SKIP][73] ([i915#4270])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-2.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][74] +485 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#15656])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-4/igt@gem_userptr_blits@access-control.html
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-1/igt@gem_userptr_blits@access-control.html
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#14544] / [i915#3297])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gem_userptr_blits@access-control.html
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-12/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][81] ([i915#3323])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4958])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [PASS][84] -> [ABORT][85] ([i915#15131])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@gem_workarounds@suspend-resume-context.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@gem_workarounds@suspend-resume-context.html
* igt@gen7_exec_parse@bitmasks:
- shard-glk10: NOTRUN -> [SKIP][86] +195 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#14544] / [i915#2527])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-10/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-oversize:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-5/igt@gen9_exec_parse@bb-oversize.html
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-14/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html
- shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_drm_fdinfo@busy-idle@bcs0:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#14073]) +11 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-17/igt@i915_drm_fdinfo@busy-idle@bcs0.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#14118])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-5/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#14118])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#8399]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-9/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][98] -> [INCOMPLETE][99] ([i915#13356] / [i915#13820]) +1 other test incomplete
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-8/igt@i915_pm_freq_api@freq-suspend@gt0.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#6590]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-6/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#14498] / [i915#14544])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#11681])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#11681])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#11681])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@i915_pm_rps@thresholds-park.html
* igt@i915_selftest@live:
- shard-mtlp: [PASS][106] -> [DMESG-FAIL][107] ([i915#12061] / [i915#15560])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-mtlp-5/igt@i915_selftest@live.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][108] -> [DMESG-FAIL][109] ([i915#12061])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#4077]) +5 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-2/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#7707])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@intel_hwmon@hwmon-read.html
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#7707])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#7707])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-6/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#7707])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4212])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-12/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#12454] / [i915#12712])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [PASS][117] -> [INCOMPLETE][118] ([i915#12761])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@kms_async_flips@async-flip-suspend-resume.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
- shard-glk: NOTRUN -> [INCOMPLETE][119] ([i915#12761])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][120] ([i915#12761] / [i915#14995])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
- shard-rkl: NOTRUN -> [INCOMPLETE][121] ([i915#12761])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3555])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#9531])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#9531])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][125] ([i915#1769])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#5286]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#14544] / [i915#5286])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#5286])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#5286]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-8/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-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#5286]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#3638]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3828])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#3828])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#14544] / [i915#3638])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-3/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-snb: NOTRUN -> [SKIP][138] +80 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-snb7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#14544]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#14544] / [i915#6095]) +6 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +104 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-10/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#12313])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#6095]) +68 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +64 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#14098] / [i915#6095]) +44 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#6095]) +56 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#12313])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#6095]) +205 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][153] ([i915#15582]) +1 other test incomplete
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#12313]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#6095]) +39 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6095]) +24 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +7 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-14/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +6 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][163] -> [SKIP][164] ([i915#12655] / [i915#3555])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-11/igt@kms_color@deep-color.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#6944] / [i915#7116] / [i915#9424]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-15/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#14544] / [i915#15330] / [i915#3116])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#15330] / [i915#3299])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#15330] / [i915#3299])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#14544] / [i915#15330])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#15330])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-9/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#15330]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#6944])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-2/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6944] / [i915#9424])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-7/igt@kms_content_protection@uevent.html
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#7118] / [i915#9424])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@kms_content_protection@uevent.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#6944] / [i915#7118] / [i915#9424])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-8/igt@kms_content_protection@uevent.html
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3555])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-max-size.html
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#3555]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8814])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: NOTRUN -> [FAIL][182] ([i915#13566]) +5 other tests fail
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: [PASS][183] -> [FAIL][184] ([i915#13566]) +1 other test fail
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][185] ([i915#13566]) +1 other test fail
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][186] ([i915#13566]) +3 other tests fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#13049])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#13049])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8814])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#13049])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][192] -> [FAIL][193] ([i915#13566]) +3 other tests fail
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][194] +19 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#4103] / [i915#4213])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#4213])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#4103] / [i915#4213])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg1: [PASS][198] -> [DMESG-WARN][199] ([i915#4423])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg1-18/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-tglu-1: NOTRUN -> [SKIP][200] +41 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#9809]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#13046] / [i915#5354]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#9067])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#4103])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#9723])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#9723])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3804])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3804])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#13749])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#13707])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#8812])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-5/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#3955])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#3469])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-16/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#1839])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#1839])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#9337])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#3637] / [i915#9934]) +8 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][220] ([i915#12745] / [i915#4839])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk9/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][221] ([i915#4839])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk9/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#9934]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#9934]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-15/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#15643]) +6 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8810] / [i915#8813])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#8810] / [i915#8813])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#15643]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#15643]) +8 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#15643]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#15643]) +7 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#15643]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#8708]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#8708]) +4 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][235] -> [INCOMPLETE][236] ([i915#10056])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#15104])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#15102] / [i915#3458]) +10 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][239] +25 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#14544] / [i915#1825]) +6 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#1825]) +30 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#5439])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#10055])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#10055])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#15102]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#8708]) +12 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#15102] / [i915#3458]) +2 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#1825]) +13 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#5354]) +6 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#15102] / [i915#3023]) +13 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#15102]) +14 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#15102]) +17 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228]) +2 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-10/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: [PASS][255] -> [SKIP][256] ([i915#3555] / [i915#8228])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [PASS][258] -> [SKIP][259] ([i915#3555] / [i915#8228]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-11/igt@kms_hdr@static-toggle.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@kms_hdr@static-toggle.html
* igt@kms_invalid_mode@clock-too-high:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#6403] / [i915#8826])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#9457]) +2 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#8826] / [i915#9457])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#13688])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-15/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#15458])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#15458])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#15458])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#1839])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#6301])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][269] +6 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-7/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#14712])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#15608] / [i915#8825]) +5 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#15609]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#15609] / [i915#8825]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-3:
- shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#15608]) +32 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#15608] / [i915#8825]) +7 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#15608] / [i915#8825]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-0:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#15608]) +8 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-3:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#15608]) +27 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#15608]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#15608]) +5 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#15608] / [i915#8825]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#15608] / [i915#8825]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-10/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15608] / [i915#15609] / [i915#8825])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#15608] / [i915#15609] / [i915#8825])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#15609])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-5.html
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#15609])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#15609] / [i915#8825])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#15609] / [i915#8825])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#15609]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#15609]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#14544] / [i915#15608] / [i915#8825]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#15609] / [i915#8825]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-0:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#14544] / [i915#15608])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-b-plane-3:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#15608]) +25 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-9/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-b-plane-3.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][297] ([i915#13026]) +1 other test incomplete
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk10: NOTRUN -> [FAIL][298] ([i915#12178])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][299] ([i915#7862]) +1 other test fail
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk10: NOTRUN -> [FAIL][300] ([i915#10647] / [i915#12177])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][301] ([i915#10647]) +1 other test fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-4:
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#14259])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-17/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#14259])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#15329]) +4 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#15329]) +6 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#15329]) +9 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#15329] / [i915#3555])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#15329]) +7 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#15329] / [i915#3555] / [i915#6953]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#9812])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#12343])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#5354])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#9812])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-9/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#9685]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#15073])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#4077]) +12 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-12/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [PASS][317] -> [SKIP][318] ([i915#15073]) +3 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#15403])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#6524] / [i915#6805])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#6524])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#6524])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@kms_prime@basic-modeset-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#6524])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-3/igt@kms_prime@basic-modeset-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#6524])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#11520]) +3 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][326] ([i915#11520]) +10 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#11520]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][328] ([i915#11520]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-snb5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#9808])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#11520]) +3 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-16/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#11520]) +4 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#12316]) +2 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-glk10: NOTRUN -> [SKIP][333] ([i915#11520]) +6 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#11520]) +5 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#9683])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#9683])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-12/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#14544] / [i915#9732])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#9732]) +12 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@pr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#9688]) +5 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#9732]) +7 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-16/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +13 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#9732]) +9 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9685])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg1: NOTRUN -> [SKIP][344] ([i915#9685])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#9685])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][346] ([i915#15492])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk3/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][347] ([i915#15500])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][348] ([i915#5289])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#12755])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#12755])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#3555]) +3 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#3555]) +2 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk10: NOTRUN -> [ABORT][353] ([i915#13179]) +1 other test abort
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-snb: [PASS][354] -> [FAIL][355] ([i915#15106]) +2 other tests fail
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-snb1/igt@kms_setmode@basic.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-snb7/igt@kms_setmode@basic.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#8623])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][357] ([i915#9906])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-4/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@negative-basic:
- shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#3555] / [i915#9906])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#9906]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][360] ([i915#9906])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][361] ([i915#9100]) +1 other test fail
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@module-unload:
- shard-glk10: NOTRUN -> [FAIL][362] ([i915#14433])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#8516])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#3708] / [i915#4077])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-14/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#3291] / [i915#3708]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@prime_vgem@basic-write.html
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#10216] / [i915#3708])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][367] +53 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#9917])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@sriov_basic@bind-unbind-vf.html
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#9917])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@sriov_basic@bind-unbind-vf.html
- shard-dg1: NOTRUN -> [SKIP][370] ([i915#9917])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-16/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][371] ([i915#12910]) +9 other tests fail
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-tglu-6/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@bind-unbind-vf@vf-5:
- shard-mtlp: NOTRUN -> [FAIL][372] ([i915#12910]) +9 other tests fail
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-1/igt@sriov_basic@bind-unbind-vf@vf-5.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3-devices:
- shard-rkl: [ABORT][373] ([i915#15131]) -> [PASS][374] +1 other test pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_exec_suspend@basic-s3-devices@smem:
- shard-rkl: [ABORT][375] ([i915#15542]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices@smem.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@gem_exec_suspend@basic-s3-devices@smem.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][377] ([i915#14809]) -> [PASS][378] +1 other test pass
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: [SKIP][379] ([i915#4270]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [INCOMPLETE][381] ([i915#13809]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@gem_softpin@noreloc-s3.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [INCOMPLETE][383] ([i915#4817]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_color@deep-color:
- shard-rkl: [SKIP][385] ([i915#12655] / [i915#3555]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-7/igt@kms_color@deep-color.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][387] ([i915#13707]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_hdmi_inject@inject-4k:
- shard-mtlp: [SKIP][389] -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-2/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: [SKIP][391] ([i915#3555] / [i915#8228]) -> [PASS][392] +1 other test pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-5/igt@kms_hdr@bpc-switch.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-11/igt@kms_hdr@bpc-switch.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [SKIP][393] ([i915#15459]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [SKIP][395] ([i915#15073]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][397] ([i915#15073]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-glk10: [FAIL][399] -> [PASS][400] +1 other test pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-glk10/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][401] ([i915#15106]) -> [PASS][402] +2 other tests pass
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-1:
- shard-glk10: [FAIL][403] ([i915#15106]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-glk10/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-glk10/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][405] ([i915#15420]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-mtlp-5/igt@kms_vrr@negative-basic.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-7/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [FAIL][407] ([i915#15453]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [FAIL][409] ([i915#4349]) -> [PASS][410] +1 other test pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@perf_pmu@most-busy-check-all.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@perf_pmu@most-busy-check-all.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][411] ([i915#8411]) -> [SKIP][412] ([i915#14544] / [i915#8411])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][413] ([i915#11078]) -> [SKIP][414] ([i915#11078] / [i915#14544])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][415] ([i915#9323]) -> [SKIP][416] ([i915#14544] / [i915#9323])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][417] ([i915#8562]) -> [SKIP][418] ([i915#14544] / [i915#8562])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-3/igt@gem_create@create-ext-set-pat.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: [SKIP][419] ([i915#14544] / [i915#4525]) -> [SKIP][420] ([i915#4525])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: [SKIP][421] ([i915#3281]) -> [SKIP][422] ([i915#14544] / [i915#3281]) +4 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: [SKIP][423] ([i915#4613]) -> [SKIP][424] ([i915#14544] / [i915#4613]) +3 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_pread@display:
- shard-rkl: [SKIP][425] ([i915#14544] / [i915#3282]) -> [SKIP][426] ([i915#3282]) +1 other test skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@gem_pread@display.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@gem_pread@display.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][427] ([i915#14544] / [i915#8411]) -> [SKIP][428] ([i915#8411])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][429] ([i915#3282]) -> [SKIP][430] ([i915#14544] / [i915#3282]) +2 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-8/igt@gem_set_tiling_vs_pwrite.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][431] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][432] ([i915#3297] / [i915#3323])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: [SKIP][433] ([i915#3297]) -> [SKIP][434] ([i915#14544] / [i915#3297])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@bb-secure:
- shard-rkl: [SKIP][435] ([i915#2527]) -> [SKIP][436] ([i915#14544] / [i915#2527])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-2/igt@gen9_exec_parse@bb-secure.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][437] ([i915#1769] / [i915#3555]) -> [SKIP][438] ([i915#14544] / [i915#1769] / [i915#3555])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][439] ([i915#5286]) -> [SKIP][440] ([i915#14544] / [i915#5286]) +3 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][441] ([i915#3828]) -> [SKIP][442] ([i915#14544] / [i915#3828])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][443] ([i915#14544] / [i915#3638]) -> [SKIP][444] ([i915#3638])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][445] ([i915#3638]) -> [SKIP][446] ([i915#14544] / [i915#3638])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][447] ([i915#14544] / [i915#6095]) -> [SKIP][448] ([i915#6095]) +1 other test skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-a-hdmi-a-2.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][449] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][450] ([i915#14098] / [i915#6095]) +5 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-2.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][451] ([i915#6095]) -> [SKIP][452] ([i915#14544] / [i915#6095]) +2 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][453] ([i915#14098] / [i915#6095]) -> [SKIP][454] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][455] ([i915#12805]) -> [SKIP][456] ([i915#12805] / [i915#14544])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][457] ([i915#12313]) -> [SKIP][458] ([i915#12313] / [i915#14544]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-rkl: [SKIP][459] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][460] ([i915#11151] / [i915#7828]) +1 other test skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: [SKIP][461] ([i915#11151] / [i915#7828]) -> [SKIP][462] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-multiple.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [FAIL][463] ([i915#7173]) -> [SKIP][464] ([i915#6944] / [i915#7118] / [i915#9424])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy:
- shard-rkl: [SKIP][465] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][466] ([i915#6944] / [i915#7118] / [i915#9424])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_content_protection@legacy.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][467] ([i915#9433]) -> [SKIP][468] ([i915#6944] / [i915#9424])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-14/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-rkl: [SKIP][469] ([i915#3555]) -> [SKIP][470] ([i915#14544] / [i915#3555])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-32x32.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][471] ([i915#13049]) -> [SKIP][472] ([i915#13049] / [i915#14544]) +1 other test skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: [SKIP][473] -> [SKIP][474] ([i915#14544]) +5 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-rkl: [SKIP][475] ([i915#14544]) -> [SKIP][476] +5 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_dp_aux_dev:
- shard-rkl: [SKIP][477] ([i915#1257]) -> [SKIP][478] ([i915#1257] / [i915#14544])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-7/igt@kms_dp_aux_dev.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: [SKIP][479] ([i915#13748]) -> [SKIP][480] ([i915#13748] / [i915#14544])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: [SKIP][481] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][482] ([i915#3555] / [i915#3840])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][483] ([i915#3555] / [i915#3840]) -> [SKIP][484] ([i915#14544] / [i915#3555] / [i915#3840])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-rkl: [SKIP][485] ([i915#9934]) -> [SKIP][486] ([i915#14544] / [i915#9934]) +2 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-8/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#9934]) -> [SKIP][488] ([i915#9934]) +1 other test skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-rkl: [SKIP][489] ([i915#14544] / [i915#15643]) -> [SKIP][490] ([i915#15643])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#15102]) -> [SKIP][492] ([i915#15102])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][493] ([i915#15102]) -> [SKIP][494] ([i915#14544] / [i915#15102]) +2 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][495] ([i915#1825]) -> [SKIP][496] ([i915#14544] / [i915#1825]) +12 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg1: [SKIP][497] ([i915#4423]) -> [SKIP][498] +1 other test skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: [SKIP][499] ([i915#15102] / [i915#3023]) -> [SKIP][500] ([i915#14544] / [i915#15102] / [i915#3023]) +8 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][501] ([i915#15102] / [i915#3458]) -> [SKIP][502] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][504] ([i915#15102] / [i915#3023]) +5 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: [SKIP][505] ([i915#14544] / [i915#1825]) -> [SKIP][506] ([i915#1825]) +8 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][507] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][508] ([i915#15102] / [i915#3458]) +2 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][509] ([i915#14544] / [i915#15458]) -> [SKIP][510] ([i915#15458])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: [SKIP][511] ([i915#15458]) -> [SKIP][512] ([i915#14544] / [i915#15458]) +1 other test skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][513] ([i915#14544] / [i915#15638]) -> [SKIP][514] ([i915#15638])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][515] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][516] ([i915#15608] / [i915#15609] / [i915#8825])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-0:
- shard-rkl: [SKIP][517] ([i915#14544] / [i915#15608]) -> [SKIP][518] ([i915#15608]) +1 other test skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-0.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#15609] / [i915#8825]) -> [SKIP][520] ([i915#15609] / [i915#8825])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-b-plane-5.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-rkl: [SKIP][521] ([i915#14544] / [i915#15608] / [i915#8825]) -> [SKIP][522] ([i915#15608] / [i915#8825]) +1 other test skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane_lowres@tiling-4:
- shard-rkl: [SKIP][523] ([i915#14544] / [i915#3555]) -> [SKIP][524] ([i915#3555]) +1 other test skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_plane_lowres@tiling-4.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-5/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-rkl: [SKIP][525] ([i915#13958]) -> [SKIP][526] ([i915#13958] / [i915#14544])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-yf.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][527] ([i915#14259] / [i915#14544]) -> [SKIP][528] ([i915#14259])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#5354]) -> [SKIP][530] ([i915#5354])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-7/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: [SKIP][531] ([i915#9340]) -> [SKIP][532] ([i915#3828])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: [SKIP][533] ([i915#8430]) -> [SKIP][534] ([i915#14544] / [i915#8430])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][535] ([i915#11520]) -> [SKIP][536] ([i915#11520] / [i915#14544]) +2 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: [SKIP][537] ([i915#11520] / [i915#14544]) -> [SKIP][538] ([i915#11520]) +1 other test skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-rkl: [SKIP][539] ([i915#1072] / [i915#9732]) -> [SKIP][540] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-8/igt@kms_psr@psr2-primary-mmap-gtt.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: [SKIP][541] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][542] ([i915#1072] / [i915#9732]) +8 other tests skip
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-2/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: [SKIP][543] ([i915#9685]) -> [SKIP][544] ([i915#14544] / [i915#9685])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: [SKIP][545] ([i915#5289]) -> [SKIP][546] ([i915#14544] / [i915#5289])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_vrr@flipline:
- shard-rkl: [SKIP][547] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][548] ([i915#15243] / [i915#3555])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@kms_vrr@flipline.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-3/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][549] ([i915#9906]) -> [SKIP][550] ([i915#14544] / [i915#9906])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][551] ([i915#2435]) -> [SKIP][552] ([i915#14544] / [i915#2435])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: [SKIP][553] ([i915#14544] / [i915#8516]) -> [SKIP][554] ([i915#8516])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-8/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][555] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][556] ([i915#3291] / [i915#3708])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-1/igt@prime_vgem@basic-fence-read.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: [SKIP][557] ([i915#9917]) -> [SKIP][558] ([i915#14544] / [i915#9917])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17964/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14104
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
[i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8746 -> IGTPW_14524
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_17964: d2a98b98376b6a16c835a131b12f295848c656db @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14524: 14524
IGT_8746: 8746
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14524/index.html
[-- Attachment #2: Type: text/html, Size: 192864 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* RE: [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
2026-02-10 3:24 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
` (3 preceding siblings ...)
2026-02-10 15:26 ` ✗ i915.CI.Full: " Patchwork
@ 2026-02-10 20:17 ` Thasleem, Mohammed
2026-02-11 13:53 ` Kamil Konieczny
5 siblings, 0 replies; 15+ messages in thread
From: Thasleem, Mohammed @ 2026-02-10 20:17 UTC (permalink / raw)
To: B, Jeevan, igt-dev@lists.freedesktop.org; +Cc: B S, Karthik, Bilal, Mohammed
-----Original Message-----
From: B, Jeevan <jeevan.b@intel.com>
Sent: 10 February 2026 08:55 AM
To: igt-dev@lists.freedesktop.org
Cc: B S, Karthik <karthik.b.s@intel.com>; Thasleem, Mohammed <mohammed.thasleem@intel.com>; Bilal, Mohammed <mohammed.bilal@intel.com>; B, Jeevan <jeevan.b@intel.com>
Subject: [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
Move DC counter utility functions from tests/intel/kms_pm_dc.c to lib/igt_pm.c for reuse across other tests.
v2: Add 'igt_' prefix before all functions.
v3: Fix typos, fix debugfs_fd type and add errno.h include.
v4: Add IGT_INTEL_ prefix to all CHECK_DC* flag constants and
PACKAGE_CSTATE_PATH constant.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
LGTM.
Reviewed-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
lib/igt_pm.c | 170 +++++++++++++++++++++++++++++++++++
lib/igt_pm.h | 15 ++++
tests/intel/kms_pm_dc.c | 191 ++++++++--------------------------------
3 files changed, 222 insertions(+), 154 deletions(-)
diff --git a/lib/igt_pm.c b/lib/igt_pm.c index 1ffcdcef3..ebf39baab 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -31,6 +31,7 @@
#include <pciaccess.h>
#include <stdlib.h>
#include <string.h>
+#include <errno.h>
#include <unistd.h>
#include <sys/stat.h>
#ifdef __linux__
@@ -1543,3 +1544,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
DRM_MODE_DPMS_ON);
igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
}
+
+/**
+ * igt_get_dc_counter:
+ * @dc_data: String containing DC counter data in format
+ *
+ * Returns the counter value as uint32_t */ uint32_t
+igt_get_dc_counter(const char *dc_data) {
+ char *e;
+ long ret;
+ char *s = strchr(dc_data, ':');
+
+ igt_assert(s);
+ s++;
+ ret = strtol(s, &e, 10);
+ igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) &&
+ e > s && *e == '\n' && ret >= 0);
+ return ret;
+}
+
+/**
+ * igt_support_dc6:
+ * @debugfs_fd: DRM file descriptor
+ *
+ * Returns true if DC6 is supported.
+ */
+bool igt_support_dc6(int debugfs_fd)
+{
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+ return !!strstr(buf, "DC5 -> DC6 count"); }
+
+/**
+ * igt_get_dc6_counter: Locate DC6 counter string in debugfs buffer
+ * @buf: Buffer containing i915_dmc_info debugfs output
+ *
+ * Searches for DC6 counter information in the DMC info buffer.
+ */
+char *igt_get_dc6_counter(const char *buf) {
+ char *str;
+
+ str = strstr(buf, "DC5 -> DC6 count");
+ if (!str)
+ str = strstr(buf, "DC5 -> DC6 allowed count");
+
+ return str;
+}
+
+/**
+ * igt_read_dc_counter:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag (IGT_INTEL_CHECK_DC5, IGT_INTEL_CHECK_DC6,
+or IGT_INTEL_CHECK_DC3CO)
+ *
+ * Returns current counter value for the specified DC state */
+uint32_t igt_read_dc_counter(int debugfs_fd, int dc_flag) {
+ char buf[4096];
+ char *str;
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf,
+sizeof(buf));
+
+ if (dc_flag & IGT_INTEL_CHECK_DC5) {
+ str = strstr(buf, "DC3 -> DC5 count");
+ igt_assert_f(str, "DC5 counter is not available\n");
+ } else if (dc_flag & IGT_INTEL_CHECK_DC6) {
+ str = igt_get_dc6_counter(buf);
+ igt_assert_f(str, "No DC6 counter available\n");
+ } else if (dc_flag & IGT_INTEL_CHECK_DC3CO) {
+ str = strstr(buf, "DC3CO count");
+ igt_assert_f(str, "DC3CO counter is not available\n");
+ } else {
+ igt_assert(!"reached");
+ str = NULL;
+ }
+
+ return igt_get_dc_counter(str);
+}
+
+/**
+ * igt_dc_state_wait_entry:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag
+ * @prev_dc_count: Previous counter value to compare against
+ *
+ * Returns true if DC state entry detected within timeout, false
+otherwise */ bool igt_dc_state_wait_entry(int debugfs_fd, int dc_flag,
+int prev_dc_count) {
+ return igt_wait(igt_read_dc_counter(debugfs_fd, dc_flag) >
+ prev_dc_count, 3000, 100);
+}
+
+/**
+ * igt_dc_state_name:
+ * @dc_flag: DC state flag
+ *
+ * Converts DC state flag constants to readable string names */ const
+char *igt_dc_state_name(int dc_flag) {
+ if (dc_flag & IGT_INTEL_CHECK_DC3CO)
+ return "DC3CO";
+ else if (dc_flag & IGT_INTEL_CHECK_DC5)
+ return "DC5";
+ else
+ return "DC6";
+}
+
+/**
+ * igt_require_dc_counter:
+ * @debugfs_fd: File descriptor for the debugfs
+ * @dc_flag: DC counter type to check (IGT_INTEL_CHECK_DC3CO,
+IGT_INTEL_CHECK_DC5,
+ * or IGT_INTEL_CHECK_DC6)
+ *
+ * Skips the current test if the requested DC counter is not available
+ * on the system.
+ */
+void igt_require_dc_counter(int debugfs_fd, int dc_flag) {
+ char *str;
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+
+ switch (dc_flag) {
+ case IGT_INTEL_CHECK_DC3CO:
+ igt_skip_on_f(!strstr(buf, "DC3CO count"),
+ "DC3CO counter is not available\n");
+ break;
+ case IGT_INTEL_CHECK_DC5:
+ igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
+ "DC5 counter is not available\n");
+ break;
+ case IGT_INTEL_CHECK_DC6:
+ str = igt_get_dc6_counter(buf);
+ igt_skip_on_f(!str, "No DC6 counter available\n");
+ break;
+ default:
+ igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
+ }
+}
+
+/**
+ * igt_read_pkgc_counter:
+ * @debugfs_root_fd: File descriptor for the debugfs
+ *
+ * Returns PC10 counter value.
+ */
+unsigned int igt_read_pkgc_counter(int debugfs_root_fd) {
+ char buf[4096];
+ char *str;
+ int len;
+
+ len = igt_sysfs_read(debugfs_root_fd, IGT_INTEL_PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
+ igt_skip_on_f(len < 0, "PKGC state file not found\n");
+ buf[len] = '\0';
+ str = strstr(buf, "Package C10");
+ igt_skip_on_f(!str, "PKGC10 is not supported.\n");
+
+ return igt_get_dc_counter(str);
+}
diff --git a/lib/igt_pm.h b/lib/igt_pm.h index e931e51af..6a33c6db2 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -29,6 +29,13 @@
#include "igt_kms.h"
+#define IGT_INTEL_PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
+
+/* DC State Flags */
+#define IGT_INTEL_CHECK_DC5 (1 << 0)
+#define IGT_INTEL_CHECK_DC6 (1 << 1)
+#define IGT_INTEL_CHECK_DC3CO (1 << 2)
+
void igt_pm_enable_audio_runtime_pm(void);
void igt_pm_enable_sata_link_power_management(void);
void igt_pm_restore_sata_link_power_management(void);
@@ -99,5 +106,13 @@ int igt_pm_get_runtime_usage(struct pci_device *pci_dev); void igt_pm_ignore_slpc_efficient_freq(int i915, int gtfd, bool val); bool igt_has_pci_pm_capability(struct pci_device *pci_dev); void igt_pm_dpms_toggle(igt_output_t *output);
+uint32_t igt_get_dc_counter(const char *dc_data); bool
+igt_support_dc6(int debugfs_fd); char *igt_get_dc6_counter(const char
+*buf); uint32_t igt_read_dc_counter(int debugfs_fd, int dc_flag); bool
+igt_dc_state_wait_entry(int debugfs_fd, int dc_flag, int
+prev_dc_count); const char *igt_dc_state_name(int dc_flag); void
+igt_require_dc_counter(int debugfs_fd, int dc_flag); unsigned int
+igt_read_pkgc_counter(int debugfs_root_fd);
#endif /* IGT_PM_H */
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c index 83dbac296..39e94f36b 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -79,15 +79,9 @@
* Description: This test validates display engine entry to DC5 state while PSR is active on Pipe B
*/
-/* DC State Flags */
-#define CHECK_DC5 (1 << 0)
-#define CHECK_DC6 (1 << 1)
-#define CHECK_DC3CO (1 << 2)
-
#define PWR_DOMAIN_INFO "i915_power_domain_info"
#define RPM_STATUS "i915_runtime_pm_status"
#define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
-#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) || intel_display_ver(devid) >= 14)) #define SEC 1 @@ -116,7 +110,6 @@ typedef struct {
bool runtime_suspend_disabled;
} data_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);
static void set_output_on_pipe_b(data_t *data) @@ -260,82 +253,20 @@ static void create_color_fb(data_t *data, igt_fb_t *fb, color_t *fb_color)
paint_rectangles(data, data->mode, fb_color, fb); }
-static uint32_t get_dc_counter(char *dc_data) -{
- char *e;
- long ret;
- char *s = strchr(dc_data, ':');
-
- igt_assert(s);
- s++;
- ret = strtol(s, &e, 10);
- igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) && e > s && *e == '\n' && ret >= 0);
- return ret;
-}
-
-static char *get_dc6_counter(const char *buf) -{
- char *str;
-
- str = strstr(buf, "DC5 -> DC6 count");
- if (!str)
- str = strstr(buf, "DC5 -> DC6 allowed count");
-
- return str;
-}
-
-static uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag) -{
- char buf[4096];
- char *str;
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
-
- if (dc_flag & CHECK_DC5) {
- str = strstr(buf, "DC3 -> DC5 count");
- igt_assert_f(str, "DC5 counter is not available\n");
- } else if (dc_flag & CHECK_DC6) {
- str = get_dc6_counter(buf);
- igt_assert_f(str, "No DC6 counter available\n");
- } else if (dc_flag & CHECK_DC3CO) {
- str = strstr(buf, "DC3CO count");
- igt_assert_f(str, "DC3CO counter is not available\n");
- } else {
- igt_assert(!"reached");
- str = NULL;
- }
-
- return get_dc_counter(str);
-}
-
-static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count) -{
- return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
- prev_dc_count, 3000, 100);
-}
-
-static const char *dc_state_name(int dc_flag) -{
- if (dc_flag & CHECK_DC3CO)
- return "DC3CO";
- else if (dc_flag & CHECK_DC5)
- return "DC5";
- else
- return "DC6";
-}
-
static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count) {
- igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
- "%s state is not achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
- data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
+ igt_assert_f(igt_dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
+ "%s state is not achieved\n%s:\n%s\n", igt_dc_state_name(dc_flag),
+ PWR_DOMAIN_INFO, data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
+ PWR_DOMAIN_INFO));
}
static void check_dc_counter_negative(data_t *data, int dc_flag, uint32_t prev_dc_count) {
- igt_assert_f(!dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
- "%s state is achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
- data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
+ igt_assert_f(!igt_dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
+ "%s state is achieved\n%s:\n%s\n", igt_dc_state_name(dc_flag),
+ PWR_DOMAIN_INFO, data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
+ PWR_DOMAIN_INFO));
}
static void setup_videoplayback(data_t *data) @@ -366,7 +297,7 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
primary = igt_output_get_plane_type(data->output,
DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, NULL);
- dc3co_prev_cnt = read_dc_counter(data->debugfs_fd, CHECK_DC3CO);
+ dc3co_prev_cnt = igt_read_dc_counter(data->debugfs_fd,
+IGT_INTEL_CHECK_DC3CO);
/* Calculate delay to generate idle frame in usec*/
delay = 1.5 * ((1000 * 1000) / data->mode->vrefresh); @@ -381,34 +312,8 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
usleep(delay);
}
- igt_require_f(dc_state_wait_entry(data->debugfs_fd,
- CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n");
-}
-
-static void require_dc_counter(int debugfs_fd, int dc_flag) -{
- char *str;
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
-
- switch (dc_flag) {
- case CHECK_DC3CO:
- igt_skip_on_f(!strstr(buf, "DC3CO count"),
- "DC3CO counter is not available\n");
- break;
- case CHECK_DC5:
- igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
- "DC5 counter is not available\n");
- break;
- case CHECK_DC6:
- str = get_dc6_counter(buf);
- igt_skip_on_f(!str, "No DC6 counter available\n");
- break;
- default:
- igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
- }
+ igt_require_f(igt_dc_state_wait_entry(data->debugfs_fd, IGT_INTEL_CHECK_DC3CO,
+ dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n");
}
static void setup_dc3co(data_t *data)
@@ -421,7 +326,7 @@ static void setup_dc3co(data_t *data)
static void test_dc3co_vpb_simulation(data_t *data) {
- require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
+ igt_require_dc_counter(data->debugfs_fd, IGT_INTEL_CHECK_DC3CO);
setup_output(data);
setup_dc3co(data);
setup_videoplayback(data);
@@ -433,8 +338,8 @@ static void test_dc5_retention_flops(data_t *data, int dc_flag) {
uint32_t dc_counter_before_psr;
- require_dc_counter(data->debugfs_fd, dc_flag);
- dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd,
+dc_flag);
set_output_on_pipe_b(data);
setup_primary(data);
igt_assert(psr_wait_entry(data->debugfs_fd, data->op_psr_mode, NULL)); @@ -446,8 +351,8 @@ static void test_dc_state_psr(data_t *data, int dc_flag) {
uint32_t dc_counter_before_psr;
- require_dc_counter(data->debugfs_fd, dc_flag);
- dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd,
+dc_flag);
setup_output(data);
setup_primary(data);
igt_require(!psr_disabled_check(data->debugfs_fd));
@@ -510,9 +415,9 @@ static void test_dc_state_dpms(data_t *data, int dc_flag) {
uint32_t dc_counter;
- require_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
setup_dc_dpms(data);
- dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
dpms_off(data);
check_dc_counter(data, dc_flag, dc_counter);
dpms_on(data);
@@ -523,23 +428,14 @@ static void test_dc_state_dpms_negative(data_t *data, int dc_flag) {
uint32_t dc_counter;
- require_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
setup_dc_dpms(data);
- dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
dpms_on(data);
check_dc_counter_negative(data, dc_flag, dc_counter);
cleanup_dc_dpms(data);
}
-static bool support_dc6(int debugfs_fd) -{
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
- return strstr(buf, "DC5 -> DC6 count");
-}
-
static uint64_t read_runtime_suspended_time(int drm_fd) {
struct pci_device *i915;
@@ -562,7 +458,8 @@ static bool dc9_wait_entry(data_t *data, int dc_target, int prev_dc, uint64_t pr
*/
return igt_wait((read_runtime_suspended_time(data->drm_fd) > prev_rpm) &&
(!DC9_RESETS_DC_COUNTERS(data->devid) ||
- (read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs, 1000);
+ (igt_read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs,
+ 1000);
}
static void check_dc9(data_t *data, int dc_target, int prev_dc, int prev_rpm) @@ -582,12 +479,12 @@ static void setup_dc9_dpms(data_t *data, int dc_target)
__igt_sysfs_set_boolean(sysfs_fd, "poll", KMS_POLL_DISABLE);
close(sysfs_fd);
if (DC9_RESETS_DC_COUNTERS(data->devid)) {
- prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
+ prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
setup_dc_dpms(data);
dpms_off(data);
- igt_skip_on_f(!(igt_wait(read_dc_counter(data->debugfs_fd, dc_target) >
+ igt_skip_on_f(!(igt_wait(igt_read_dc_counter(data->debugfs_fd,
+dc_target) >
prev_dc, 3000, 100)), "Unable to enters shallow DC states\n");
- prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
+ prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
dpms_on(data);
cleanup_dc_dpms(data);
}
@@ -601,8 +498,8 @@ static void test_dc9_dpms(data_t *data) {
int dc_target;
- require_dc_counter(data->debugfs_fd, CHECK_DC5);
- dc_target = support_dc6(data->debugfs_fd) ? CHECK_DC6 : CHECK_DC5;
+ igt_require_dc_counter(data->debugfs_fd, IGT_INTEL_CHECK_DC5);
+ dc_target = igt_support_dc6(data->debugfs_fd) ? IGT_INTEL_CHECK_DC6 :
+IGT_INTEL_CHECK_DC5;
setup_dc9_dpms(data, dc_target);
}
@@ -621,21 +518,6 @@ static int has_panels_without_dc_support(igt_display_t *display)
return external_panel;
}
-static unsigned int read_pkgc_counter(int debugfs_root_fd) -{
- char buf[4096];
- char *str;
- int len;
-
- len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
- igt_skip_on_f(len < 0, "PKGC state file not found\n");
- buf[len] = '\0';
- str = strstr(buf, "Package C10");
- igt_skip_on_f(!str, "PKGC10 is not supported.\n");
-
- return get_dc_counter(str);
-}
-
static void test_deep_pkgc_state(data_t *data) {
unsigned int pre_val = 0, cur_val = 0; @@ -697,7 +579,7 @@ static void test_deep_pkgc_state(data_t *data)
igt_display_commit(&data->display);
/* Wait for the vblank to sync the frame time */
igt_wait_for_vblank_count(crtc, 1);
- pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ pre_val = igt_read_pkgc_counter(data->debugfs_root_fd);
/* Add a half-frame delay to ensure the flip occurs when the frame is active. */
usleep(delay * 0.5);
@@ -706,8 +588,9 @@ static void test_deep_pkgc_state(data_t *data)
igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
igt_display_commit(&data->display);
- igt_wait((cur_val = read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
- (delay * 2), (5 * MSEC));
+ igt_wait((cur_val = igt_read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
+ (delay * 2), (5 * MSEC));
+
if (cur_val > pre_val) {
pkgc_flag = true;
break;
@@ -769,7 +652,7 @@ int igt_main()
PSR_MODE_1, NULL));
data.op_psr_mode = PSR_MODE_1;
psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
- test_dc_state_psr(&data, CHECK_DC5);
+ test_dc_state_psr(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates display engine entry to DC6 state "
@@ -781,7 +664,7 @@ int igt_main()
psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
"PC8+ residencies not supported\n");
- test_dc_state_psr(&data, CHECK_DC6);
+ test_dc_state_psr(&data, IGT_INTEL_CHECK_DC6);
}
igt_describe("This test validates display engine entry to PKGC10 state "
@@ -796,7 +679,7 @@ int igt_main()
igt_describe("This test validates display engine entry to DC5 state "
"while all connectors's DPMS property set to OFF");
igt_subtest("dc5-dpms") {
- test_dc_state_dpms(&data, CHECK_DC5);
+ test_dc_state_dpms(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates display engine entry to DC5 state "
@@ -809,7 +692,7 @@ int igt_main()
data.op_psr_mode = PSR_MODE_1;
psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
igt_require(!psr_disabled_check(data.debugfs_fd));
- test_dc5_retention_flops(&data, CHECK_DC5);
+ test_dc5_retention_flops(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates negative scenario of DC5 display "
@@ -818,7 +701,7 @@ int igt_main()
igt_subtest("dc5-dpms-negative") {
igt_require_f(has_panels_without_dc_support(&data.display),
"External panel not detected, skip execution\n");
- test_dc_state_dpms_negative(&data, CHECK_DC5);
+ test_dc_state_dpms_negative(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates display engine entry to DC6 state "
@@ -826,7 +709,7 @@ int igt_main()
igt_subtest("dc6-dpms") {
igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
"PC8+ residencies not supported\n");
- test_dc_state_dpms(&data, CHECK_DC6);
+ test_dc_state_dpms(&data, IGT_INTEL_CHECK_DC6);
}
--
2.43.0
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
2026-02-10 3:24 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
` (4 preceding siblings ...)
2026-02-10 20:17 ` [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Thasleem, Mohammed
@ 2026-02-11 13:53 ` Kamil Konieczny
5 siblings, 0 replies; 15+ messages in thread
From: Kamil Konieczny @ 2026-02-11 13:53 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev, karthik.b.s, mohammed.thasleem, mohammed.bilal
Hi Jeevan,
On 2026-02-10 at 08:54:33 +0530, Jeevan B wrote:
> Move DC counter utility functions from tests/intel/kms_pm_dc.c
> to lib/igt_pm.c for reuse across other tests.
>
> v2: Add 'igt_' prefix before all functions.
> v3: Fix typos, fix debugfs_fd type and add errno.h include.
> v4: Add IGT_INTEL_ prefix to all CHECK_DC* flag constants and
> PACKAGE_CSTATE_PATH constant.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> lib/igt_pm.c | 170 +++++++++++++++++++++++++++++++++++
> lib/igt_pm.h | 15 ++++
> tests/intel/kms_pm_dc.c | 191 ++++++++--------------------------------
> 3 files changed, 222 insertions(+), 154 deletions(-)
>
> diff --git a/lib/igt_pm.c b/lib/igt_pm.c
> index 1ffcdcef3..ebf39baab 100644
> --- a/lib/igt_pm.c
> +++ b/lib/igt_pm.c
> @@ -31,6 +31,7 @@
> #include <pciaccess.h>
> #include <stdlib.h>
> #include <string.h>
> +#include <errno.h>
You forgot about this, it should be moved up before
#include <fcntl.h>
Regards,
Kamil
> #include <unistd.h>
> #include <sys/stat.h>
> #ifdef __linux__
> @@ -1543,3 +1544,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
> DRM_MODE_DPMS_ON);
> igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
> }
[cut]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
@ 2026-02-13 7:16 Jeevan B
0 siblings, 0 replies; 15+ messages in thread
From: Jeevan B @ 2026-02-13 7:16 UTC (permalink / raw)
To: igt-dev; +Cc: kamil.konieczny, Jeevan B, Mohammed Thasleem
Move DC counter utility functions from tests/intel/kms_pm_dc.c
to lib/igt_pm.c for reuse across other tests.
v2: Add 'igt_' prefix before all functions.
v3: Fix typos, fix debugfs_fd type and add errno.h include.
v4: Add IGT_INTEL_ prefix to all CHECK_DC* flag constants and
PACKAGE_CSTATE_PATH constant.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Reviewed-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
lib/igt_pm.c | 170 +++++++++++++++++++++++++++++++++++
lib/igt_pm.h | 15 ++++
tests/intel/kms_pm_dc.c | 191 ++++++++--------------------------------
3 files changed, 222 insertions(+), 154 deletions(-)
diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 1ffcdcef3..64b15dd08 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -25,6 +25,7 @@
* David Weinehall <david.weinehall@intel.com>
*
*/
+#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <limits.h>
@@ -1543,3 +1544,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
DRM_MODE_DPMS_ON);
igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
}
+
+/**
+ * igt_get_dc_counter:
+ * @dc_data: String containing DC counter data in format
+ *
+ * Returns the counter value as uint32_t
+ */
+uint32_t igt_get_dc_counter(const char *dc_data)
+{
+ char *e;
+ long ret;
+ char *s = strchr(dc_data, ':');
+
+ igt_assert(s);
+ s++;
+ ret = strtol(s, &e, 10);
+ igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) &&
+ e > s && *e == '\n' && ret >= 0);
+ return ret;
+}
+
+/**
+ * igt_support_dc6:
+ * @debugfs_fd: DRM file descriptor
+ *
+ * Returns true if DC6 is supported.
+ */
+bool igt_support_dc6(int debugfs_fd)
+{
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+ return !!strstr(buf, "DC5 -> DC6 count");
+}
+
+/**
+ * igt_get_dc6_counter: Locate DC6 counter string in debugfs buffer
+ * @buf: Buffer containing i915_dmc_info debugfs output
+ *
+ * Searches for DC6 counter information in the DMC info buffer.
+ */
+char *igt_get_dc6_counter(const char *buf)
+{
+ char *str;
+
+ str = strstr(buf, "DC5 -> DC6 count");
+ if (!str)
+ str = strstr(buf, "DC5 -> DC6 allowed count");
+
+ return str;
+}
+
+/**
+ * igt_read_dc_counter:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag (IGT_INTEL_CHECK_DC5, IGT_INTEL_CHECK_DC6, or IGT_INTEL_CHECK_DC3CO)
+ *
+ * Returns current counter value for the specified DC state
+ */
+uint32_t igt_read_dc_counter(int debugfs_fd, int dc_flag)
+{
+ char buf[4096];
+ char *str;
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
+
+ if (dc_flag & IGT_INTEL_CHECK_DC5) {
+ str = strstr(buf, "DC3 -> DC5 count");
+ igt_assert_f(str, "DC5 counter is not available\n");
+ } else if (dc_flag & IGT_INTEL_CHECK_DC6) {
+ str = igt_get_dc6_counter(buf);
+ igt_assert_f(str, "No DC6 counter available\n");
+ } else if (dc_flag & IGT_INTEL_CHECK_DC3CO) {
+ str = strstr(buf, "DC3CO count");
+ igt_assert_f(str, "DC3CO counter is not available\n");
+ } else {
+ igt_assert(!"reached");
+ str = NULL;
+ }
+
+ return igt_get_dc_counter(str);
+}
+
+/**
+ * igt_dc_state_wait_entry:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag
+ * @prev_dc_count: Previous counter value to compare against
+ *
+ * Returns true if DC state entry detected within timeout, false otherwise
+ */
+bool igt_dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
+{
+ return igt_wait(igt_read_dc_counter(debugfs_fd, dc_flag) >
+ prev_dc_count, 3000, 100);
+}
+
+/**
+ * igt_dc_state_name:
+ * @dc_flag: DC state flag
+ *
+ * Converts DC state flag constants to readable string names
+ */
+const char *igt_dc_state_name(int dc_flag)
+{
+ if (dc_flag & IGT_INTEL_CHECK_DC3CO)
+ return "DC3CO";
+ else if (dc_flag & IGT_INTEL_CHECK_DC5)
+ return "DC5";
+ else
+ return "DC6";
+}
+
+/**
+ * igt_require_dc_counter:
+ * @debugfs_fd: File descriptor for the debugfs
+ * @dc_flag: DC counter type to check (IGT_INTEL_CHECK_DC3CO, IGT_INTEL_CHECK_DC5,
+ * or IGT_INTEL_CHECK_DC6)
+ *
+ * Skips the current test if the requested DC counter is not available
+ * on the system.
+ */
+void igt_require_dc_counter(int debugfs_fd, int dc_flag)
+{
+ char *str;
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+
+ switch (dc_flag) {
+ case IGT_INTEL_CHECK_DC3CO:
+ igt_skip_on_f(!strstr(buf, "DC3CO count"),
+ "DC3CO counter is not available\n");
+ break;
+ case IGT_INTEL_CHECK_DC5:
+ igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
+ "DC5 counter is not available\n");
+ break;
+ case IGT_INTEL_CHECK_DC6:
+ str = igt_get_dc6_counter(buf);
+ igt_skip_on_f(!str, "No DC6 counter available\n");
+ break;
+ default:
+ igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
+ }
+}
+
+/**
+ * igt_read_pkgc_counter:
+ * @debugfs_root_fd: File descriptor for the debugfs
+ *
+ * Returns PC10 counter value.
+ */
+unsigned int igt_read_pkgc_counter(int debugfs_root_fd)
+{
+ char buf[4096];
+ char *str;
+ int len;
+
+ len = igt_sysfs_read(debugfs_root_fd, IGT_INTEL_PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
+ igt_skip_on_f(len < 0, "PKGC state file not found\n");
+ buf[len] = '\0';
+ str = strstr(buf, "Package C10");
+ igt_skip_on_f(!str, "PKGC10 is not supported.\n");
+
+ return igt_get_dc_counter(str);
+}
diff --git a/lib/igt_pm.h b/lib/igt_pm.h
index e931e51af..6a33c6db2 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -29,6 +29,13 @@
#include "igt_kms.h"
+#define IGT_INTEL_PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
+
+/* DC State Flags */
+#define IGT_INTEL_CHECK_DC5 (1 << 0)
+#define IGT_INTEL_CHECK_DC6 (1 << 1)
+#define IGT_INTEL_CHECK_DC3CO (1 << 2)
+
void igt_pm_enable_audio_runtime_pm(void);
void igt_pm_enable_sata_link_power_management(void);
void igt_pm_restore_sata_link_power_management(void);
@@ -99,5 +106,13 @@ int igt_pm_get_runtime_usage(struct pci_device *pci_dev);
void igt_pm_ignore_slpc_efficient_freq(int i915, int gtfd, bool val);
bool igt_has_pci_pm_capability(struct pci_device *pci_dev);
void igt_pm_dpms_toggle(igt_output_t *output);
+uint32_t igt_get_dc_counter(const char *dc_data);
+bool igt_support_dc6(int debugfs_fd);
+char *igt_get_dc6_counter(const char *buf);
+uint32_t igt_read_dc_counter(int debugfs_fd, int dc_flag);
+bool igt_dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count);
+const char *igt_dc_state_name(int dc_flag);
+void igt_require_dc_counter(int debugfs_fd, int dc_flag);
+unsigned int igt_read_pkgc_counter(int debugfs_root_fd);
#endif /* IGT_PM_H */
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 83dbac296..39e94f36b 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -79,15 +79,9 @@
* Description: This test validates display engine entry to DC5 state while PSR is active on Pipe B
*/
-/* DC State Flags */
-#define CHECK_DC5 (1 << 0)
-#define CHECK_DC6 (1 << 1)
-#define CHECK_DC3CO (1 << 2)
-
#define PWR_DOMAIN_INFO "i915_power_domain_info"
#define RPM_STATUS "i915_runtime_pm_status"
#define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
-#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) || intel_display_ver(devid) >= 14))
#define SEC 1
@@ -116,7 +110,6 @@ typedef struct {
bool runtime_suspend_disabled;
} data_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);
static void set_output_on_pipe_b(data_t *data)
@@ -260,82 +253,20 @@ static void create_color_fb(data_t *data, igt_fb_t *fb, color_t *fb_color)
paint_rectangles(data, data->mode, fb_color, fb);
}
-static uint32_t get_dc_counter(char *dc_data)
-{
- char *e;
- long ret;
- char *s = strchr(dc_data, ':');
-
- igt_assert(s);
- s++;
- ret = strtol(s, &e, 10);
- igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) && e > s && *e == '\n' && ret >= 0);
- return ret;
-}
-
-static char *get_dc6_counter(const char *buf)
-{
- char *str;
-
- str = strstr(buf, "DC5 -> DC6 count");
- if (!str)
- str = strstr(buf, "DC5 -> DC6 allowed count");
-
- return str;
-}
-
-static uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag)
-{
- char buf[4096];
- char *str;
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
-
- if (dc_flag & CHECK_DC5) {
- str = strstr(buf, "DC3 -> DC5 count");
- igt_assert_f(str, "DC5 counter is not available\n");
- } else if (dc_flag & CHECK_DC6) {
- str = get_dc6_counter(buf);
- igt_assert_f(str, "No DC6 counter available\n");
- } else if (dc_flag & CHECK_DC3CO) {
- str = strstr(buf, "DC3CO count");
- igt_assert_f(str, "DC3CO counter is not available\n");
- } else {
- igt_assert(!"reached");
- str = NULL;
- }
-
- return get_dc_counter(str);
-}
-
-static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
-{
- return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
- prev_dc_count, 3000, 100);
-}
-
-static const char *dc_state_name(int dc_flag)
-{
- if (dc_flag & CHECK_DC3CO)
- return "DC3CO";
- else if (dc_flag & CHECK_DC5)
- return "DC5";
- else
- return "DC6";
-}
-
static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count)
{
- igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
- "%s state is not achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
- data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
+ igt_assert_f(igt_dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
+ "%s state is not achieved\n%s:\n%s\n", igt_dc_state_name(dc_flag),
+ PWR_DOMAIN_INFO, data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
+ PWR_DOMAIN_INFO));
}
static void check_dc_counter_negative(data_t *data, int dc_flag, uint32_t prev_dc_count)
{
- igt_assert_f(!dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
- "%s state is achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
- data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
+ igt_assert_f(!igt_dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
+ "%s state is achieved\n%s:\n%s\n", igt_dc_state_name(dc_flag),
+ PWR_DOMAIN_INFO, data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
+ PWR_DOMAIN_INFO));
}
static void setup_videoplayback(data_t *data)
@@ -366,7 +297,7 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
primary = igt_output_get_plane_type(data->output,
DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, NULL);
- dc3co_prev_cnt = read_dc_counter(data->debugfs_fd, CHECK_DC3CO);
+ dc3co_prev_cnt = igt_read_dc_counter(data->debugfs_fd, IGT_INTEL_CHECK_DC3CO);
/* Calculate delay to generate idle frame in usec*/
delay = 1.5 * ((1000 * 1000) / data->mode->vrefresh);
@@ -381,34 +312,8 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
usleep(delay);
}
- igt_require_f(dc_state_wait_entry(data->debugfs_fd,
- CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n");
-}
-
-static void require_dc_counter(int debugfs_fd, int dc_flag)
-{
- char *str;
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
-
- switch (dc_flag) {
- case CHECK_DC3CO:
- igt_skip_on_f(!strstr(buf, "DC3CO count"),
- "DC3CO counter is not available\n");
- break;
- case CHECK_DC5:
- igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
- "DC5 counter is not available\n");
- break;
- case CHECK_DC6:
- str = get_dc6_counter(buf);
- igt_skip_on_f(!str, "No DC6 counter available\n");
- break;
- default:
- igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
- }
+ igt_require_f(igt_dc_state_wait_entry(data->debugfs_fd, IGT_INTEL_CHECK_DC3CO,
+ dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n");
}
static void setup_dc3co(data_t *data)
@@ -421,7 +326,7 @@ static void setup_dc3co(data_t *data)
static void test_dc3co_vpb_simulation(data_t *data)
{
- require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
+ igt_require_dc_counter(data->debugfs_fd, IGT_INTEL_CHECK_DC3CO);
setup_output(data);
setup_dc3co(data);
setup_videoplayback(data);
@@ -433,8 +338,8 @@ static void test_dc5_retention_flops(data_t *data, int dc_flag)
{
uint32_t dc_counter_before_psr;
- require_dc_counter(data->debugfs_fd, dc_flag);
- dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd, dc_flag);
set_output_on_pipe_b(data);
setup_primary(data);
igt_assert(psr_wait_entry(data->debugfs_fd, data->op_psr_mode, NULL));
@@ -446,8 +351,8 @@ static void test_dc_state_psr(data_t *data, int dc_flag)
{
uint32_t dc_counter_before_psr;
- require_dc_counter(data->debugfs_fd, dc_flag);
- dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd, dc_flag);
setup_output(data);
setup_primary(data);
igt_require(!psr_disabled_check(data->debugfs_fd));
@@ -510,9 +415,9 @@ static void test_dc_state_dpms(data_t *data, int dc_flag)
{
uint32_t dc_counter;
- require_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
setup_dc_dpms(data);
- dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
dpms_off(data);
check_dc_counter(data, dc_flag, dc_counter);
dpms_on(data);
@@ -523,23 +428,14 @@ static void test_dc_state_dpms_negative(data_t *data, int dc_flag)
{
uint32_t dc_counter;
- require_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
setup_dc_dpms(data);
- dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
dpms_on(data);
check_dc_counter_negative(data, dc_flag, dc_counter);
cleanup_dc_dpms(data);
}
-static bool support_dc6(int debugfs_fd)
-{
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
- return strstr(buf, "DC5 -> DC6 count");
-}
-
static uint64_t read_runtime_suspended_time(int drm_fd)
{
struct pci_device *i915;
@@ -562,7 +458,8 @@ static bool dc9_wait_entry(data_t *data, int dc_target, int prev_dc, uint64_t pr
*/
return igt_wait((read_runtime_suspended_time(data->drm_fd) > prev_rpm) &&
(!DC9_RESETS_DC_COUNTERS(data->devid) ||
- (read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs, 1000);
+ (igt_read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs,
+ 1000);
}
static void check_dc9(data_t *data, int dc_target, int prev_dc, int prev_rpm)
@@ -582,12 +479,12 @@ static void setup_dc9_dpms(data_t *data, int dc_target)
__igt_sysfs_set_boolean(sysfs_fd, "poll", KMS_POLL_DISABLE);
close(sysfs_fd);
if (DC9_RESETS_DC_COUNTERS(data->devid)) {
- prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
+ prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
setup_dc_dpms(data);
dpms_off(data);
- igt_skip_on_f(!(igt_wait(read_dc_counter(data->debugfs_fd, dc_target) >
+ igt_skip_on_f(!(igt_wait(igt_read_dc_counter(data->debugfs_fd, dc_target) >
prev_dc, 3000, 100)), "Unable to enters shallow DC states\n");
- prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
+ prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
dpms_on(data);
cleanup_dc_dpms(data);
}
@@ -601,8 +498,8 @@ static void test_dc9_dpms(data_t *data)
{
int dc_target;
- require_dc_counter(data->debugfs_fd, CHECK_DC5);
- dc_target = support_dc6(data->debugfs_fd) ? CHECK_DC6 : CHECK_DC5;
+ igt_require_dc_counter(data->debugfs_fd, IGT_INTEL_CHECK_DC5);
+ dc_target = igt_support_dc6(data->debugfs_fd) ? IGT_INTEL_CHECK_DC6 : IGT_INTEL_CHECK_DC5;
setup_dc9_dpms(data, dc_target);
}
@@ -621,21 +518,6 @@ static int has_panels_without_dc_support(igt_display_t *display)
return external_panel;
}
-static unsigned int read_pkgc_counter(int debugfs_root_fd)
-{
- char buf[4096];
- char *str;
- int len;
-
- len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
- igt_skip_on_f(len < 0, "PKGC state file not found\n");
- buf[len] = '\0';
- str = strstr(buf, "Package C10");
- igt_skip_on_f(!str, "PKGC10 is not supported.\n");
-
- return get_dc_counter(str);
-}
-
static void test_deep_pkgc_state(data_t *data)
{
unsigned int pre_val = 0, cur_val = 0;
@@ -697,7 +579,7 @@ static void test_deep_pkgc_state(data_t *data)
igt_display_commit(&data->display);
/* Wait for the vblank to sync the frame time */
igt_wait_for_vblank_count(crtc, 1);
- pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ pre_val = igt_read_pkgc_counter(data->debugfs_root_fd);
/* Add a half-frame delay to ensure the flip occurs when the frame is active. */
usleep(delay * 0.5);
@@ -706,8 +588,9 @@ static void test_deep_pkgc_state(data_t *data)
igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
igt_display_commit(&data->display);
- igt_wait((cur_val = read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
- (delay * 2), (5 * MSEC));
+ igt_wait((cur_val = igt_read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
+ (delay * 2), (5 * MSEC));
+
if (cur_val > pre_val) {
pkgc_flag = true;
break;
@@ -769,7 +652,7 @@ int igt_main()
PSR_MODE_1, NULL));
data.op_psr_mode = PSR_MODE_1;
psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
- test_dc_state_psr(&data, CHECK_DC5);
+ test_dc_state_psr(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates display engine entry to DC6 state "
@@ -781,7 +664,7 @@ int igt_main()
psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
"PC8+ residencies not supported\n");
- test_dc_state_psr(&data, CHECK_DC6);
+ test_dc_state_psr(&data, IGT_INTEL_CHECK_DC6);
}
igt_describe("This test validates display engine entry to PKGC10 state "
@@ -796,7 +679,7 @@ int igt_main()
igt_describe("This test validates display engine entry to DC5 state "
"while all connectors's DPMS property set to OFF");
igt_subtest("dc5-dpms") {
- test_dc_state_dpms(&data, CHECK_DC5);
+ test_dc_state_dpms(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates display engine entry to DC5 state "
@@ -809,7 +692,7 @@ int igt_main()
data.op_psr_mode = PSR_MODE_1;
psr_enable(data.drm_fd, data.debugfs_fd, data.op_psr_mode, NULL);
igt_require(!psr_disabled_check(data.debugfs_fd));
- test_dc5_retention_flops(&data, CHECK_DC5);
+ test_dc5_retention_flops(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates negative scenario of DC5 display "
@@ -818,7 +701,7 @@ int igt_main()
igt_subtest("dc5-dpms-negative") {
igt_require_f(has_panels_without_dc_support(&data.display),
"External panel not detected, skip execution\n");
- test_dc_state_dpms_negative(&data, CHECK_DC5);
+ test_dc_state_dpms_negative(&data, IGT_INTEL_CHECK_DC5);
}
igt_describe("This test validates display engine entry to DC6 state "
@@ -826,7 +709,7 @@ int igt_main()
igt_subtest("dc6-dpms") {
igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
"PC8+ residencies not supported\n");
- test_dc_state_dpms(&data, CHECK_DC6);
+ test_dc_state_dpms(&data, IGT_INTEL_CHECK_DC6);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
@ 2026-02-09 5:04 Jeevan B
2026-02-09 16:42 ` Kamil Konieczny
0 siblings, 1 reply; 15+ messages in thread
From: Jeevan B @ 2026-02-09 5:04 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, mohammed.thasleem, mohammed.bilal, Jeevan B
Move DC counter utility functions from tests/intel/kms_pm_dc.c
to lib/igt_pm.c for reuse across other tests.
v2: Add 'igt_' prefix before all functions.
v3: Fix typos, fix debugfs_fd type and add errno.h include.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
lib/igt_pm.c | 170 ++++++++++++++++++++++++++++++++++++++
lib/igt_pm.h | 15 ++++
tests/intel/kms_pm_dc.c | 179 +++++++---------------------------------
3 files changed, 216 insertions(+), 148 deletions(-)
diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 1ffcdcef3..d7bb9192e 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -31,6 +31,7 @@
#include <pciaccess.h>
#include <stdlib.h>
#include <string.h>
+#include <errno.h>
#include <unistd.h>
#include <sys/stat.h>
#ifdef __linux__
@@ -1543,3 +1544,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
DRM_MODE_DPMS_ON);
igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
}
+
+/**
+ * igt_get_dc_counter:
+ * @dc_data: String containing DC counter data in format
+ *
+ * Returns the counter value as uint32_t
+ */
+uint32_t igt_get_dc_counter(const char *dc_data)
+{
+ char *e;
+ long ret;
+ char *s = strchr(dc_data, ':');
+
+ igt_assert(s);
+ s++;
+ ret = strtol(s, &e, 10);
+ igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) &&
+ e > s && *e == '\n' && ret >= 0);
+ return ret;
+}
+
+/**
+ * igt_support_dc6:
+ * @debugfs_fd: DRM file descriptor
+ *
+ * Returns true if DC6 is supported.
+ */
+bool igt_support_dc6(int debugfs_fd)
+{
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+ return !!strstr(buf, "DC5 -> DC6 count");
+}
+
+/**
+ * igt_get_dc6_counter: Locate DC6 counter string in debugfs buffer
+ * @buf: Buffer containing i915_dmc_info debugfs output
+ *
+ * Searches for DC6 counter information in the DMC info buffer.
+ */
+char *igt_get_dc6_counter(const char *buf)
+{
+ char *str;
+
+ str = strstr(buf, "DC5 -> DC6 count");
+ if (!str)
+ str = strstr(buf, "DC5 -> DC6 allowed count");
+
+ return str;
+}
+
+/**
+ * igt_read_dc_counter:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag (CHECK_DC5, CHECK_DC6, or CHECK_DC3CO)
+ *
+ * Returns current counter value for the specified DC state
+ */
+uint32_t igt_read_dc_counter(int debugfs_fd, int dc_flag)
+{
+ char buf[4096];
+ char *str;
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
+
+ if (dc_flag & CHECK_DC5) {
+ str = strstr(buf, "DC3 -> DC5 count");
+ igt_assert_f(str, "DC5 counter is not available\n");
+ } else if (dc_flag & CHECK_DC6) {
+ str = igt_get_dc6_counter(buf);
+ igt_assert_f(str, "No DC6 counter available\n");
+ } else if (dc_flag & CHECK_DC3CO) {
+ str = strstr(buf, "DC3CO count");
+ igt_assert_f(str, "DC3CO counter is not available\n");
+ } else {
+ igt_assert(!"reached");
+ str = NULL;
+ }
+
+ return igt_get_dc_counter(str);
+}
+
+/**
+ * igt_dc_state_wait_entry:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag
+ * @prev_dc_count: Previous counter value to compare against
+ *
+ * Returns true if DC state entry detected within timeout, false otherwise
+ */
+bool igt_dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
+{
+ return igt_wait(igt_read_dc_counter(debugfs_fd, dc_flag) >
+ prev_dc_count, 3000, 100);
+}
+
+/**
+ * igt_dc_state_name:
+ * @dc_flag: DC state flag
+ *
+ * Converts DC state flag constants to readable string names
+ */
+const char *igt_dc_state_name(int dc_flag)
+{
+ if (dc_flag & CHECK_DC3CO)
+ return "DC3CO";
+ else if (dc_flag & CHECK_DC5)
+ return "DC5";
+ else
+ return "DC6";
+}
+
+/**
+ * igt_require_dc_counter:
+ * @debugfs_fd: File descriptor for the debugfs
+ * @dc_flag: DC counter type to check (CHECK_DC3CO, CHECK_DC5,
+ * or CHECK_DC6)
+ *
+ * Skips the current test if the requested DC counter is not available
+ * on the system.
+ */
+void igt_require_dc_counter(int debugfs_fd, int dc_flag)
+{
+ char *str;
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+
+ switch (dc_flag) {
+ case CHECK_DC3CO:
+ igt_skip_on_f(!strstr(buf, "DC3CO count"),
+ "DC3CO counter is not available\n");
+ break;
+ case CHECK_DC5:
+ igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
+ "DC5 counter is not available\n");
+ break;
+ case CHECK_DC6:
+ str = igt_get_dc6_counter(buf);
+ igt_skip_on_f(!str, "No DC6 counter available\n");
+ break;
+ default:
+ igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
+ }
+}
+
+/**
+ * igt_read_pkgc_counter:
+ * @debugfs_root_fd: File descriptor for the debugfs
+ *
+ * Returns PC10 counter value.
+ */
+unsigned int igt_read_pkgc_counter(int debugfs_root_fd)
+{
+ char buf[4096];
+ char *str;
+ int len;
+
+ len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
+ igt_skip_on_f(len < 0, "PKGC state file not found\n");
+ buf[len] = '\0';
+ str = strstr(buf, "Package C10");
+ igt_skip_on_f(!str, "PKGC10 is not supported.\n");
+
+ return igt_get_dc_counter(str);
+}
diff --git a/lib/igt_pm.h b/lib/igt_pm.h
index e931e51af..709c27dc6 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -29,6 +29,13 @@
#include "igt_kms.h"
+#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
+
+/* DC State Flags */
+#define CHECK_DC5 (1 << 0)
+#define CHECK_DC6 (1 << 1)
+#define CHECK_DC3CO (1 << 2)
+
void igt_pm_enable_audio_runtime_pm(void);
void igt_pm_enable_sata_link_power_management(void);
void igt_pm_restore_sata_link_power_management(void);
@@ -99,5 +106,13 @@ int igt_pm_get_runtime_usage(struct pci_device *pci_dev);
void igt_pm_ignore_slpc_efficient_freq(int i915, int gtfd, bool val);
bool igt_has_pci_pm_capability(struct pci_device *pci_dev);
void igt_pm_dpms_toggle(igt_output_t *output);
+uint32_t igt_get_dc_counter(const char *dc_data);
+bool igt_support_dc6(int debugfs_fd);
+char *igt_get_dc6_counter(const char *buf);
+uint32_t igt_read_dc_counter(int debugfs_fd, int dc_flag);
+bool igt_dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count);
+const char *igt_dc_state_name(int dc_flag);
+void igt_require_dc_counter(int debugfs_fd, int dc_flag);
+unsigned int igt_read_pkgc_counter(int debugfs_root_fd);
#endif /* IGT_PM_H */
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 83dbac296..32d83cd7d 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -79,15 +79,9 @@
* Description: This test validates display engine entry to DC5 state while PSR is active on Pipe B
*/
-/* DC State Flags */
-#define CHECK_DC5 (1 << 0)
-#define CHECK_DC6 (1 << 1)
-#define CHECK_DC3CO (1 << 2)
-
#define PWR_DOMAIN_INFO "i915_power_domain_info"
#define RPM_STATUS "i915_runtime_pm_status"
#define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
-#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) || intel_display_ver(devid) >= 14))
#define SEC 1
@@ -116,7 +110,6 @@ typedef struct {
bool runtime_suspend_disabled;
} data_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);
static void set_output_on_pipe_b(data_t *data)
@@ -260,82 +253,20 @@ static void create_color_fb(data_t *data, igt_fb_t *fb, color_t *fb_color)
paint_rectangles(data, data->mode, fb_color, fb);
}
-static uint32_t get_dc_counter(char *dc_data)
-{
- char *e;
- long ret;
- char *s = strchr(dc_data, ':');
-
- igt_assert(s);
- s++;
- ret = strtol(s, &e, 10);
- igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) && e > s && *e == '\n' && ret >= 0);
- return ret;
-}
-
-static char *get_dc6_counter(const char *buf)
-{
- char *str;
-
- str = strstr(buf, "DC5 -> DC6 count");
- if (!str)
- str = strstr(buf, "DC5 -> DC6 allowed count");
-
- return str;
-}
-
-static uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag)
-{
- char buf[4096];
- char *str;
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
-
- if (dc_flag & CHECK_DC5) {
- str = strstr(buf, "DC3 -> DC5 count");
- igt_assert_f(str, "DC5 counter is not available\n");
- } else if (dc_flag & CHECK_DC6) {
- str = get_dc6_counter(buf);
- igt_assert_f(str, "No DC6 counter available\n");
- } else if (dc_flag & CHECK_DC3CO) {
- str = strstr(buf, "DC3CO count");
- igt_assert_f(str, "DC3CO counter is not available\n");
- } else {
- igt_assert(!"reached");
- str = NULL;
- }
-
- return get_dc_counter(str);
-}
-
-static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
-{
- return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
- prev_dc_count, 3000, 100);
-}
-
-static const char *dc_state_name(int dc_flag)
-{
- if (dc_flag & CHECK_DC3CO)
- return "DC3CO";
- else if (dc_flag & CHECK_DC5)
- return "DC5";
- else
- return "DC6";
-}
-
static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count)
{
- igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
- "%s state is not achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
- data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
+ igt_assert_f(igt_dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
+ "%s state is not achieved\n%s:\n%s\n", igt_dc_state_name(dc_flag),
+ PWR_DOMAIN_INFO, data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
+ PWR_DOMAIN_INFO));
}
static void check_dc_counter_negative(data_t *data, int dc_flag, uint32_t prev_dc_count)
{
- igt_assert_f(!dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
- "%s state is achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
- data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
+ igt_assert_f(!igt_dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
+ "%s state is achieved\n%s:\n%s\n", igt_dc_state_name(dc_flag),
+ PWR_DOMAIN_INFO, data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
+ PWR_DOMAIN_INFO));
}
static void setup_videoplayback(data_t *data)
@@ -366,7 +297,7 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
primary = igt_output_get_plane_type(data->output,
DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, NULL);
- dc3co_prev_cnt = read_dc_counter(data->debugfs_fd, CHECK_DC3CO);
+ dc3co_prev_cnt = igt_read_dc_counter(data->debugfs_fd, CHECK_DC3CO);
/* Calculate delay to generate idle frame in usec*/
delay = 1.5 * ((1000 * 1000) / data->mode->vrefresh);
@@ -381,34 +312,8 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
usleep(delay);
}
- igt_require_f(dc_state_wait_entry(data->debugfs_fd,
- CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n");
-}
-
-static void require_dc_counter(int debugfs_fd, int dc_flag)
-{
- char *str;
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
-
- switch (dc_flag) {
- case CHECK_DC3CO:
- igt_skip_on_f(!strstr(buf, "DC3CO count"),
- "DC3CO counter is not available\n");
- break;
- case CHECK_DC5:
- igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
- "DC5 counter is not available\n");
- break;
- case CHECK_DC6:
- str = get_dc6_counter(buf);
- igt_skip_on_f(!str, "No DC6 counter available\n");
- break;
- default:
- igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
- }
+ igt_require_f(igt_dc_state_wait_entry(data->debugfs_fd, CHECK_DC3CO, dc3co_prev_cnt),
+ "dc3co-vpb-simulation not enabled\n");
}
static void setup_dc3co(data_t *data)
@@ -421,7 +326,7 @@ static void setup_dc3co(data_t *data)
static void test_dc3co_vpb_simulation(data_t *data)
{
- require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
+ igt_require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
setup_output(data);
setup_dc3co(data);
setup_videoplayback(data);
@@ -433,8 +338,8 @@ static void test_dc5_retention_flops(data_t *data, int dc_flag)
{
uint32_t dc_counter_before_psr;
- require_dc_counter(data->debugfs_fd, dc_flag);
- dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd, dc_flag);
set_output_on_pipe_b(data);
setup_primary(data);
igt_assert(psr_wait_entry(data->debugfs_fd, data->op_psr_mode, NULL));
@@ -446,8 +351,8 @@ static void test_dc_state_psr(data_t *data, int dc_flag)
{
uint32_t dc_counter_before_psr;
- require_dc_counter(data->debugfs_fd, dc_flag);
- dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd, dc_flag);
setup_output(data);
setup_primary(data);
igt_require(!psr_disabled_check(data->debugfs_fd));
@@ -510,9 +415,9 @@ static void test_dc_state_dpms(data_t *data, int dc_flag)
{
uint32_t dc_counter;
- require_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
setup_dc_dpms(data);
- dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
dpms_off(data);
check_dc_counter(data, dc_flag, dc_counter);
dpms_on(data);
@@ -523,23 +428,14 @@ static void test_dc_state_dpms_negative(data_t *data, int dc_flag)
{
uint32_t dc_counter;
- require_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
setup_dc_dpms(data);
- dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
dpms_on(data);
check_dc_counter_negative(data, dc_flag, dc_counter);
cleanup_dc_dpms(data);
}
-static bool support_dc6(int debugfs_fd)
-{
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
- return strstr(buf, "DC5 -> DC6 count");
-}
-
static uint64_t read_runtime_suspended_time(int drm_fd)
{
struct pci_device *i915;
@@ -562,7 +458,8 @@ static bool dc9_wait_entry(data_t *data, int dc_target, int prev_dc, uint64_t pr
*/
return igt_wait((read_runtime_suspended_time(data->drm_fd) > prev_rpm) &&
(!DC9_RESETS_DC_COUNTERS(data->devid) ||
- (read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs, 1000);
+ (igt_read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs,
+ 1000);
}
static void check_dc9(data_t *data, int dc_target, int prev_dc, int prev_rpm)
@@ -582,12 +479,12 @@ static void setup_dc9_dpms(data_t *data, int dc_target)
__igt_sysfs_set_boolean(sysfs_fd, "poll", KMS_POLL_DISABLE);
close(sysfs_fd);
if (DC9_RESETS_DC_COUNTERS(data->devid)) {
- prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
+ prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
setup_dc_dpms(data);
dpms_off(data);
- igt_skip_on_f(!(igt_wait(read_dc_counter(data->debugfs_fd, dc_target) >
+ igt_skip_on_f(!(igt_wait(igt_read_dc_counter(data->debugfs_fd, dc_target) >
prev_dc, 3000, 100)), "Unable to enters shallow DC states\n");
- prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
+ prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
dpms_on(data);
cleanup_dc_dpms(data);
}
@@ -601,8 +498,8 @@ static void test_dc9_dpms(data_t *data)
{
int dc_target;
- require_dc_counter(data->debugfs_fd, CHECK_DC5);
- dc_target = support_dc6(data->debugfs_fd) ? CHECK_DC6 : CHECK_DC5;
+ igt_require_dc_counter(data->debugfs_fd, CHECK_DC5);
+ dc_target = igt_support_dc6(data->debugfs_fd) ? CHECK_DC6 : CHECK_DC5;
setup_dc9_dpms(data, dc_target);
}
@@ -621,21 +518,6 @@ static int has_panels_without_dc_support(igt_display_t *display)
return external_panel;
}
-static unsigned int read_pkgc_counter(int debugfs_root_fd)
-{
- char buf[4096];
- char *str;
- int len;
-
- len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
- igt_skip_on_f(len < 0, "PKGC state file not found\n");
- buf[len] = '\0';
- str = strstr(buf, "Package C10");
- igt_skip_on_f(!str, "PKGC10 is not supported.\n");
-
- return get_dc_counter(str);
-}
-
static void test_deep_pkgc_state(data_t *data)
{
unsigned int pre_val = 0, cur_val = 0;
@@ -697,7 +579,7 @@ static void test_deep_pkgc_state(data_t *data)
igt_display_commit(&data->display);
/* Wait for the vblank to sync the frame time */
igt_wait_for_vblank_count(crtc, 1);
- pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ pre_val = igt_read_pkgc_counter(data->debugfs_root_fd);
/* Add a half-frame delay to ensure the flip occurs when the frame is active. */
usleep(delay * 0.5);
@@ -706,8 +588,9 @@ static void test_deep_pkgc_state(data_t *data)
igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
igt_display_commit(&data->display);
- igt_wait((cur_val = read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
- (delay * 2), (5 * MSEC));
+ igt_wait((cur_val = igt_read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
+ (delay * 2), (5 * MSEC));
+
if (cur_val > pre_val) {
pkgc_flag = true;
break;
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
2026-02-09 5:04 Jeevan B
@ 2026-02-09 16:42 ` Kamil Konieczny
0 siblings, 0 replies; 15+ messages in thread
From: Kamil Konieczny @ 2026-02-09 16:42 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev, karthik.b.s, mohammed.thasleem, mohammed.bilal
Hi Jeevan,
On 2026-02-09 at 10:34:51 +0530, Jeevan B wrote:
> Move DC counter utility functions from tests/intel/kms_pm_dc.c
> to lib/igt_pm.c for reuse across other tests.
>
> v2: Add 'igt_' prefix before all functions.
> v3: Fix typos, fix debugfs_fd type and add errno.h include.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> lib/igt_pm.c | 170 ++++++++++++++++++++++++++++++++++++++
> lib/igt_pm.h | 15 ++++
> tests/intel/kms_pm_dc.c | 179 +++++++---------------------------------
> 3 files changed, 216 insertions(+), 148 deletions(-)
>
> diff --git a/lib/igt_pm.c b/lib/igt_pm.c
> index 1ffcdcef3..d7bb9192e 100644
> --- a/lib/igt_pm.c
> +++ b/lib/igt_pm.c
> @@ -31,6 +31,7 @@
> #include <pciaccess.h>
> #include <stdlib.h>
> #include <string.h>
> +#include <errno.h>
Please move it up before fcntl.h, so it will be sorted alphabetically.
> #include <unistd.h>
> #include <sys/stat.h>
> #ifdef __linux__
> @@ -1543,3 +1544,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
> DRM_MODE_DPMS_ON);
> igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
> }
> +
> +/**
> + * igt_get_dc_counter:
> + * @dc_data: String containing DC counter data in format
> + *
> + * Returns the counter value as uint32_t
> + */
> +uint32_t igt_get_dc_counter(const char *dc_data)
> +{
> + char *e;
> + long ret;
> + char *s = strchr(dc_data, ':');
> +
> + igt_assert(s);
> + s++;
> + ret = strtol(s, &e, 10);
> + igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) &&
> + e > s && *e == '\n' && ret >= 0);
> + return ret;
> +}
> +
> +/**
> + * igt_support_dc6:
> + * @debugfs_fd: DRM file descriptor
> + *
> + * Returns true if DC6 is supported.
> + */
> +bool igt_support_dc6(int debugfs_fd)
> +{
> + char buf[4096];
> +
> + igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> + buf, sizeof(buf));
> + return !!strstr(buf, "DC5 -> DC6 count");
> +}
> +
> +/**
> + * igt_get_dc6_counter: Locate DC6 counter string in debugfs buffer
> + * @buf: Buffer containing i915_dmc_info debugfs output
> + *
> + * Searches for DC6 counter information in the DMC info buffer.
> + */
> +char *igt_get_dc6_counter(const char *buf)
> +{
> + char *str;
> +
> + str = strstr(buf, "DC5 -> DC6 count");
> + if (!str)
> + str = strstr(buf, "DC5 -> DC6 allowed count");
> +
> + return str;
> +}
> +
> +/**
> + * igt_read_dc_counter:
> + * @debugfs_fd: DRM file descriptor
> + * @dc_flag: DC state flag (CHECK_DC5, CHECK_DC6, or CHECK_DC3CO)
> + *
> + * Returns current counter value for the specified DC state
> + */
> +uint32_t igt_read_dc_counter(int debugfs_fd, int dc_flag)
> +{
> + char buf[4096];
> + char *str;
> +
> + igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
> +
> + if (dc_flag & CHECK_DC5) {
> + str = strstr(buf, "DC3 -> DC5 count");
> + igt_assert_f(str, "DC5 counter is not available\n");
> + } else if (dc_flag & CHECK_DC6) {
> + str = igt_get_dc6_counter(buf);
> + igt_assert_f(str, "No DC6 counter available\n");
> + } else if (dc_flag & CHECK_DC3CO) {
> + str = strstr(buf, "DC3CO count");
> + igt_assert_f(str, "DC3CO counter is not available\n");
> + } else {
> + igt_assert(!"reached");
> + str = NULL;
> + }
> +
> + return igt_get_dc_counter(str);
> +}
> +
> +/**
> + * igt_dc_state_wait_entry:
> + * @debugfs_fd: DRM file descriptor
> + * @dc_flag: DC state flag
> + * @prev_dc_count: Previous counter value to compare against
> + *
> + * Returns true if DC state entry detected within timeout, false otherwise
> + */
> +bool igt_dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
> +{
> + return igt_wait(igt_read_dc_counter(debugfs_fd, dc_flag) >
> + prev_dc_count, 3000, 100);
> +}
> +
> +/**
> + * igt_dc_state_name:
> + * @dc_flag: DC state flag
> + *
> + * Converts DC state flag constants to readable string names
> + */
> +const char *igt_dc_state_name(int dc_flag)
> +{
> + if (dc_flag & CHECK_DC3CO)
> + return "DC3CO";
> + else if (dc_flag & CHECK_DC5)
> + return "DC5";
> + else
> + return "DC6";
> +}
> +
> +/**
> + * igt_require_dc_counter:
> + * @debugfs_fd: File descriptor for the debugfs
> + * @dc_flag: DC counter type to check (CHECK_DC3CO, CHECK_DC5,
> + * or CHECK_DC6)
> + *
> + * Skips the current test if the requested DC counter is not available
> + * on the system.
> + */
> +void igt_require_dc_counter(int debugfs_fd, int dc_flag)
> +{
> + char *str;
> + char buf[4096];
> +
> + igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> + buf, sizeof(buf));
> +
> + switch (dc_flag) {
> + case CHECK_DC3CO:
> + igt_skip_on_f(!strstr(buf, "DC3CO count"),
> + "DC3CO counter is not available\n");
> + break;
> + case CHECK_DC5:
> + igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
> + "DC5 counter is not available\n");
> + break;
> + case CHECK_DC6:
> + str = igt_get_dc6_counter(buf);
> + igt_skip_on_f(!str, "No DC6 counter available\n");
> + break;
> + default:
> + igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
> + }
> +}
> +
> +/**
> + * igt_read_pkgc_counter:
> + * @debugfs_root_fd: File descriptor for the debugfs
> + *
> + * Returns PC10 counter value.
> + */
> +unsigned int igt_read_pkgc_counter(int debugfs_root_fd)
> +{
> + char buf[4096];
> + char *str;
> + int len;
> +
> + len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
> + igt_skip_on_f(len < 0, "PKGC state file not found\n");
> + buf[len] = '\0';
> + str = strstr(buf, "Package C10");
> + igt_skip_on_f(!str, "PKGC10 is not supported.\n");
> +
> + return igt_get_dc_counter(str);
> +}
> diff --git a/lib/igt_pm.h b/lib/igt_pm.h
> index e931e51af..709c27dc6 100644
> --- a/lib/igt_pm.h
> +++ b/lib/igt_pm.h
> @@ -29,6 +29,13 @@
>
> #include "igt_kms.h"
>
> +#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
> +
> +/* DC State Flags */
> +#define CHECK_DC5 (1 << 0)
> +#define CHECK_DC6 (1 << 1)
> +#define CHECK_DC3CO (1 << 2)
I guess that all of above are Intel-specific, so please add
IGT_INTEL_ prefix to all above constants, PACKAGE_... and CHECK_...
Regards,
Kamil
> +
> void igt_pm_enable_audio_runtime_pm(void);
> void igt_pm_enable_sata_link_power_management(void);
> void igt_pm_restore_sata_link_power_management(void);
> @@ -99,5 +106,13 @@ int igt_pm_get_runtime_usage(struct pci_device *pci_dev);
> void igt_pm_ignore_slpc_efficient_freq(int i915, int gtfd, bool val);
> bool igt_has_pci_pm_capability(struct pci_device *pci_dev);
> void igt_pm_dpms_toggle(igt_output_t *output);
> +uint32_t igt_get_dc_counter(const char *dc_data);
> +bool igt_support_dc6(int debugfs_fd);
> +char *igt_get_dc6_counter(const char *buf);
> +uint32_t igt_read_dc_counter(int debugfs_fd, int dc_flag);
> +bool igt_dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count);
> +const char *igt_dc_state_name(int dc_flag);
> +void igt_require_dc_counter(int debugfs_fd, int dc_flag);
> +unsigned int igt_read_pkgc_counter(int debugfs_root_fd);
>
> #endif /* IGT_PM_H */
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
> index 83dbac296..32d83cd7d 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -79,15 +79,9 @@
> * Description: This test validates display engine entry to DC5 state while PSR is active on Pipe B
> */
>
> -/* DC State Flags */
> -#define CHECK_DC5 (1 << 0)
> -#define CHECK_DC6 (1 << 1)
> -#define CHECK_DC3CO (1 << 2)
> -
> #define PWR_DOMAIN_INFO "i915_power_domain_info"
> #define RPM_STATUS "i915_runtime_pm_status"
> #define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
> -#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) || intel_display_ver(devid) >= 14))
> #define SEC 1
> @@ -116,7 +110,6 @@ typedef struct {
> bool runtime_suspend_disabled;
> } data_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);
>
> static void set_output_on_pipe_b(data_t *data)
> @@ -260,82 +253,20 @@ static void create_color_fb(data_t *data, igt_fb_t *fb, color_t *fb_color)
> paint_rectangles(data, data->mode, fb_color, fb);
> }
>
> -static uint32_t get_dc_counter(char *dc_data)
> -{
> - char *e;
> - long ret;
> - char *s = strchr(dc_data, ':');
> -
> - igt_assert(s);
> - s++;
> - ret = strtol(s, &e, 10);
> - igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) && e > s && *e == '\n' && ret >= 0);
> - return ret;
> -}
> -
> -static char *get_dc6_counter(const char *buf)
> -{
> - char *str;
> -
> - str = strstr(buf, "DC5 -> DC6 count");
> - if (!str)
> - str = strstr(buf, "DC5 -> DC6 allowed count");
> -
> - return str;
> -}
> -
> -static uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag)
> -{
> - char buf[4096];
> - char *str;
> -
> - igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
> -
> - if (dc_flag & CHECK_DC5) {
> - str = strstr(buf, "DC3 -> DC5 count");
> - igt_assert_f(str, "DC5 counter is not available\n");
> - } else if (dc_flag & CHECK_DC6) {
> - str = get_dc6_counter(buf);
> - igt_assert_f(str, "No DC6 counter available\n");
> - } else if (dc_flag & CHECK_DC3CO) {
> - str = strstr(buf, "DC3CO count");
> - igt_assert_f(str, "DC3CO counter is not available\n");
> - } else {
> - igt_assert(!"reached");
> - str = NULL;
> - }
> -
> - return get_dc_counter(str);
> -}
> -
> -static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
> -{
> - return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
> - prev_dc_count, 3000, 100);
> -}
> -
> -static const char *dc_state_name(int dc_flag)
> -{
> - if (dc_flag & CHECK_DC3CO)
> - return "DC3CO";
> - else if (dc_flag & CHECK_DC5)
> - return "DC5";
> - else
> - return "DC6";
> -}
> -
> static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count)
> {
> - igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
> - "%s state is not achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
> - data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
> + igt_assert_f(igt_dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
> + "%s state is not achieved\n%s:\n%s\n", igt_dc_state_name(dc_flag),
> + PWR_DOMAIN_INFO, data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
> + PWR_DOMAIN_INFO));
> }
>
> static void check_dc_counter_negative(data_t *data, int dc_flag, uint32_t prev_dc_count)
> {
> - igt_assert_f(!dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
> - "%s state is achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
> - data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
> + igt_assert_f(!igt_dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
> + "%s state is achieved\n%s:\n%s\n", igt_dc_state_name(dc_flag),
> + PWR_DOMAIN_INFO, data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
> + PWR_DOMAIN_INFO));
> }
>
> static void setup_videoplayback(data_t *data)
> @@ -366,7 +297,7 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
> primary = igt_output_get_plane_type(data->output,
> DRM_PLANE_TYPE_PRIMARY);
> igt_plane_set_fb(primary, NULL);
> - dc3co_prev_cnt = read_dc_counter(data->debugfs_fd, CHECK_DC3CO);
> + dc3co_prev_cnt = igt_read_dc_counter(data->debugfs_fd, CHECK_DC3CO);
>
> /* Calculate delay to generate idle frame in usec*/
> delay = 1.5 * ((1000 * 1000) / data->mode->vrefresh);
> @@ -381,34 +312,8 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
> usleep(delay);
> }
>
> - igt_require_f(dc_state_wait_entry(data->debugfs_fd,
> - CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n");
> -}
> -
> -static void require_dc_counter(int debugfs_fd, int dc_flag)
> -{
> - char *str;
> - char buf[4096];
> -
> - igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> - buf, sizeof(buf));
> -
> - switch (dc_flag) {
> - case CHECK_DC3CO:
> - igt_skip_on_f(!strstr(buf, "DC3CO count"),
> - "DC3CO counter is not available\n");
> - break;
> - case CHECK_DC5:
> - igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
> - "DC5 counter is not available\n");
> - break;
> - case CHECK_DC6:
> - str = get_dc6_counter(buf);
> - igt_skip_on_f(!str, "No DC6 counter available\n");
> - break;
> - default:
> - igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
> - }
> + igt_require_f(igt_dc_state_wait_entry(data->debugfs_fd, CHECK_DC3CO, dc3co_prev_cnt),
> + "dc3co-vpb-simulation not enabled\n");
> }
>
> static void setup_dc3co(data_t *data)
> @@ -421,7 +326,7 @@ static void setup_dc3co(data_t *data)
>
> static void test_dc3co_vpb_simulation(data_t *data)
> {
> - require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
> + igt_require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
> setup_output(data);
> setup_dc3co(data);
> setup_videoplayback(data);
> @@ -433,8 +338,8 @@ static void test_dc5_retention_flops(data_t *data, int dc_flag)
> {
> uint32_t dc_counter_before_psr;
>
> - require_dc_counter(data->debugfs_fd, dc_flag);
> - dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
> + igt_require_dc_counter(data->debugfs_fd, dc_flag);
> + dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd, dc_flag);
> set_output_on_pipe_b(data);
> setup_primary(data);
> igt_assert(psr_wait_entry(data->debugfs_fd, data->op_psr_mode, NULL));
> @@ -446,8 +351,8 @@ static void test_dc_state_psr(data_t *data, int dc_flag)
> {
> uint32_t dc_counter_before_psr;
>
> - require_dc_counter(data->debugfs_fd, dc_flag);
> - dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
> + igt_require_dc_counter(data->debugfs_fd, dc_flag);
> + dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd, dc_flag);
> setup_output(data);
> setup_primary(data);
> igt_require(!psr_disabled_check(data->debugfs_fd));
> @@ -510,9 +415,9 @@ static void test_dc_state_dpms(data_t *data, int dc_flag)
> {
> uint32_t dc_counter;
>
> - require_dc_counter(data->debugfs_fd, dc_flag);
> + igt_require_dc_counter(data->debugfs_fd, dc_flag);
> setup_dc_dpms(data);
> - dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
> + dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
> dpms_off(data);
> check_dc_counter(data, dc_flag, dc_counter);
> dpms_on(data);
> @@ -523,23 +428,14 @@ static void test_dc_state_dpms_negative(data_t *data, int dc_flag)
> {
> uint32_t dc_counter;
>
> - require_dc_counter(data->debugfs_fd, dc_flag);
> + igt_require_dc_counter(data->debugfs_fd, dc_flag);
> setup_dc_dpms(data);
> - dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
> + dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
> dpms_on(data);
> check_dc_counter_negative(data, dc_flag, dc_counter);
> cleanup_dc_dpms(data);
> }
>
> -static bool support_dc6(int debugfs_fd)
> -{
> - char buf[4096];
> -
> - igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> - buf, sizeof(buf));
> - return strstr(buf, "DC5 -> DC6 count");
> -}
> -
> static uint64_t read_runtime_suspended_time(int drm_fd)
> {
> struct pci_device *i915;
> @@ -562,7 +458,8 @@ static bool dc9_wait_entry(data_t *data, int dc_target, int prev_dc, uint64_t pr
> */
> return igt_wait((read_runtime_suspended_time(data->drm_fd) > prev_rpm) &&
> (!DC9_RESETS_DC_COUNTERS(data->devid) ||
> - (read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs, 1000);
> + (igt_read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs,
> + 1000);
> }
>
> static void check_dc9(data_t *data, int dc_target, int prev_dc, int prev_rpm)
> @@ -582,12 +479,12 @@ static void setup_dc9_dpms(data_t *data, int dc_target)
> __igt_sysfs_set_boolean(sysfs_fd, "poll", KMS_POLL_DISABLE);
> close(sysfs_fd);
> if (DC9_RESETS_DC_COUNTERS(data->devid)) {
> - prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
> + prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
> setup_dc_dpms(data);
> dpms_off(data);
> - igt_skip_on_f(!(igt_wait(read_dc_counter(data->debugfs_fd, dc_target) >
> + igt_skip_on_f(!(igt_wait(igt_read_dc_counter(data->debugfs_fd, dc_target) >
> prev_dc, 3000, 100)), "Unable to enters shallow DC states\n");
> - prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
> + prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
> dpms_on(data);
> cleanup_dc_dpms(data);
> }
> @@ -601,8 +498,8 @@ static void test_dc9_dpms(data_t *data)
> {
> int dc_target;
>
> - require_dc_counter(data->debugfs_fd, CHECK_DC5);
> - dc_target = support_dc6(data->debugfs_fd) ? CHECK_DC6 : CHECK_DC5;
> + igt_require_dc_counter(data->debugfs_fd, CHECK_DC5);
> + dc_target = igt_support_dc6(data->debugfs_fd) ? CHECK_DC6 : CHECK_DC5;
> setup_dc9_dpms(data, dc_target);
> }
>
> @@ -621,21 +518,6 @@ static int has_panels_without_dc_support(igt_display_t *display)
> return external_panel;
> }
>
> -static unsigned int read_pkgc_counter(int debugfs_root_fd)
> -{
> - char buf[4096];
> - char *str;
> - int len;
> -
> - len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
> - igt_skip_on_f(len < 0, "PKGC state file not found\n");
> - buf[len] = '\0';
> - str = strstr(buf, "Package C10");
> - igt_skip_on_f(!str, "PKGC10 is not supported.\n");
> -
> - return get_dc_counter(str);
> -}
> -
> static void test_deep_pkgc_state(data_t *data)
> {
> unsigned int pre_val = 0, cur_val = 0;
> @@ -697,7 +579,7 @@ static void test_deep_pkgc_state(data_t *data)
> igt_display_commit(&data->display);
> /* Wait for the vblank to sync the frame time */
> igt_wait_for_vblank_count(crtc, 1);
> - pre_val = read_pkgc_counter(data->debugfs_root_fd);
> + pre_val = igt_read_pkgc_counter(data->debugfs_root_fd);
> /* Add a half-frame delay to ensure the flip occurs when the frame is active. */
> usleep(delay * 0.5);
>
> @@ -706,8 +588,9 @@ static void test_deep_pkgc_state(data_t *data)
> igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
> igt_display_commit(&data->display);
>
> - igt_wait((cur_val = read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
> - (delay * 2), (5 * MSEC));
> + igt_wait((cur_val = igt_read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
> + (delay * 2), (5 * MSEC));
> +
> if (cur_val > pre_val) {
> pkgc_flag = true;
> break;
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
@ 2026-01-27 6:34 Jeevan B
2026-01-29 15:58 ` Bilal, Mohammed
0 siblings, 1 reply; 15+ messages in thread
From: Jeevan B @ 2026-01-27 6:34 UTC (permalink / raw)
To: igt-dev; +Cc: mohammed.thasleem, Jeevan B
Move DC counter utility functions from tests/intel/kms_pm_dc.c
to lib/igt_pm.c for reuse across other tests.
v2: Add 'igt_' prefix before all functions. (Thasleem)
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
lib/igt_pm.c | 169 ++++++++++++++++++++++++++++++++++++++++
lib/igt_pm.h | 15 ++++
tests/intel/kms_pm_dc.c | 167 ++++++---------------------------------
3 files changed, 207 insertions(+), 144 deletions(-)
diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 1ffcdcef3..cc82e2134 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -1543,3 +1543,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
DRM_MODE_DPMS_ON);
igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
}
+
+/**
+ * igt_get_dc_counter:
+ * @dc_data: String containing DC counter data in format
+ *
+ * Returns the counter value as uint32_t
+ */
+uint32_t igt_get_dc_counter(char *dc_data)
+{
+ char *e;
+ long ret;
+ char *s = strchr(dc_data, ':');
+
+ igt_assert(s);
+ s++;
+ ret = strtol(s, &e, 10);
+ igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) &&
+ e > s && *e == '\n' && ret >= 0);
+ return ret;
+}
+
+/**
+ * igt_support_dc6:
+ * @debugfs_fd: DRM file descriptor
+ *
+ * Returns true if DC6 is supported.
+ */
+bool igt_support_dc6(int debugfs_fd)
+{
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+ return strstr(buf, "DC5 -> DC6 count");
+}
+
+/**
+ * igt_get_dc6_counter:Locate DC6 counter string in debugfs buffer
+ * @buf: Buffer containing i915_dmc_info debugfs output
+ *
+ * Searches for DC6 counter information in the DMC info buffer.
+ */
+char *igt_get_dc6_counter(const char *buf)
+{
+ char *str;
+
+ str = strstr(buf, "DC5 -> DC6 count");
+ if (!str)
+ str = strstr(buf, "DC5 -> DC6 allowed count");
+
+ return str;
+}
+
+/**
+ * igt_read_dc_counter:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag (CHECK_DC5, CHECK_DC6, or CHECK_DC3CO)
+ *
+ * Returns current counter value for the specified DC state
+ */
+uint32_t igt_read_dc_counter(uint32_t debugfs_fd, int dc_flag)
+{
+ char buf[4096];
+ char *str;
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
+
+ if (dc_flag & CHECK_DC5) {
+ str = strstr(buf, "DC3 -> DC5 count");
+ igt_assert_f(str, "DC5 counter is not available\n");
+ } else if (dc_flag & CHECK_DC6) {
+ str = igt_get_dc6_counter(buf);
+ igt_assert_f(str, "No DC6 counter available\n");
+ } else if (dc_flag & CHECK_DC3CO) {
+ str = strstr(buf, "DC3CO count");
+ igt_assert_f(str, "DC3CO counter is not available\n");
+ } else {
+ igt_assert(!"reached");
+ str = NULL;
+ }
+
+ return igt_get_dc_counter(str);
+}
+
+/**
+ * igt_dc_state_wait_entrytry:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag
+ * @prev_dc_count: Previous counter value to compare against
+ *
+ * Returns true if DC state entry detected within timeout, false otherwise
+ */
+bool igt_dc_state_wait_entrytry(int debugfs_fd, int dc_flag, int prev_dc_count)
+{
+ return igt_wait(igt_read_dc_counter(debugfs_fd, dc_flag) >
+ prev_dc_count, 3000, 100);
+}
+
+/**
+ * igt_dc_state_namee:
+ * @dc_flag: DC state flag
+ *
+ * Converts DC state flag constants to readable string names
+ */
+const char *igt_dc_state_namee(int dc_flag)
+{
+ if (dc_flag & CHECK_DC3CO)
+ return "DC3CO";
+ else if (dc_flag & CHECK_DC5)
+ return "DC5";
+ else
+ return "DC6";
+}
+
+/**
+ * igt_require_dc_counter:
+ * @debugfs_fd: File descriptor for the debugfs
+ * @dc_flag: DC counter type to check (CHECK_DC3CO, CHECK_DC5,
+ * or CHECK_DC6)
+ *
+ * Skips the current test if the requested DC counter is not available
+ * on the system.
+ */
+void igt_require_dc_counter(int debugfs_fd, int dc_flag)
+{
+ char *str;
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+
+ switch (dc_flag) {
+ case CHECK_DC3CO:
+ igt_skip_on_f(!strstr(buf, "DC3CO count"),
+ "DC3CO counter is not available\n");
+ break;
+ case CHECK_DC5:
+ igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
+ "DC5 counter is not available\n");
+ break;
+ case CHECK_DC6:
+ str = igt_get_dc6_counter(buf);
+ igt_skip_on_f(!str, "No DC6 counter available\n");
+ break;
+ default:
+ igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
+ }
+}
+
+/**
+ * igt_read_pkgc_counter:
+ * @debugfs_root_fd: File descriptor for the debugfs
+ *
+ * Returns PC10 counter value.
+ */
+unsigned int igt_read_pkgc_counter(int debugfs_root_fd)
+{
+ char buf[4096];
+ char *str;
+ int len;
+
+ len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
+ igt_skip_on_f(len < 0, "PKGC state file not found\n");
+ buf[len] = '\0';
+ str = strstr(buf, "Package C10");
+ igt_skip_on_f(!str, "PKGC10 is not supported.\n");
+
+ return igt_get_dc_counter(str);
+}
diff --git a/lib/igt_pm.h b/lib/igt_pm.h
index e931e51af..1930b3255 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -29,6 +29,13 @@
#include "igt_kms.h"
+#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
+
+/* DC State Flags */
+#define CHECK_DC5 (1 << 0)
+#define CHECK_DC6 (1 << 1)
+#define CHECK_DC3CO (1 << 2)
+
void igt_pm_enable_audio_runtime_pm(void);
void igt_pm_enable_sata_link_power_management(void);
void igt_pm_restore_sata_link_power_management(void);
@@ -99,5 +106,13 @@ int igt_pm_get_runtime_usage(struct pci_device *pci_dev);
void igt_pm_ignore_slpc_efficient_freq(int i915, int gtfd, bool val);
bool igt_has_pci_pm_capability(struct pci_device *pci_dev);
void igt_pm_dpms_toggle(igt_output_t *output);
+uint32_t igt_get_dc_counter(char *dc_data);
+bool igt_support_dc6(int debugfs_fd);
+char *igt_get_dc6_counter(const char *buf);
+uint32_t igt_read_dc_counter(uint32_t debugfs_fd, int dc_flag);
+bool igt_dc_state_wait_entrytry(int debugfs_fd, int dc_flag, int prev_dc_count);
+const char *igt_dc_state_namee(int dc_flag);
+void igt_require_dc_counter(int debugfs_fd, int dc_flag);
+unsigned int igt_read_pkgc_counter(int debugfs_root_fd);
#endif /* IGT_PM_H */
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 4babf1341..81e11c41d 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -79,15 +79,9 @@
* Description: This test validates display engine entry to DC5 state while PSR is active on Pipe B
*/
-/* DC State Flags */
-#define CHECK_DC5 (1 << 0)
-#define CHECK_DC6 (1 << 1)
-#define CHECK_DC3CO (1 << 2)
-
#define PWR_DOMAIN_INFO "i915_power_domain_info"
#define RPM_STATUS "i915_runtime_pm_status"
#define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
-#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) || intel_display_ver(devid) >= 14))
#define SEC 1
@@ -116,7 +110,6 @@ typedef struct {
bool runtime_suspend_disabled;
} data_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);
static void set_output_on_pipe_b(data_t *data)
@@ -262,81 +255,17 @@ static void create_color_fb(data_t *data, igt_fb_t *fb, color_t *fb_color)
paint_rectangles(data, data->mode, fb_color, fb);
}
-static uint32_t get_dc_counter(char *dc_data)
-{
- char *e;
- long ret;
- char *s = strchr(dc_data, ':');
-
- igt_assert(s);
- s++;
- ret = strtol(s, &e, 10);
- igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) && e > s && *e == '\n' && ret >= 0);
- return ret;
-}
-
-static char *get_dc6_counter(const char *buf)
-{
- char *str;
-
- str = strstr(buf, "DC5 -> DC6 count");
- if (!str)
- str = strstr(buf, "DC5 -> DC6 allowed count");
-
- return str;
-}
-
-static uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag)
-{
- char buf[4096];
- char *str;
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
-
- if (dc_flag & CHECK_DC5) {
- str = strstr(buf, "DC3 -> DC5 count");
- igt_assert_f(str, "DC5 counter is not available\n");
- } else if (dc_flag & CHECK_DC6) {
- str = get_dc6_counter(buf);
- igt_assert_f(str, "No DC6 counter available\n");
- } else if (dc_flag & CHECK_DC3CO) {
- str = strstr(buf, "DC3CO count");
- igt_assert_f(str, "DC3CO counter is not available\n");
- } else {
- igt_assert(!"reached");
- str = NULL;
- }
-
- return get_dc_counter(str);
-}
-
-static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
-{
- return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
- prev_dc_count, 3000, 100);
-}
-
-static const char *dc_state_name(int dc_flag)
-{
- if (dc_flag & CHECK_DC3CO)
- return "DC3CO";
- else if (dc_flag & CHECK_DC5)
- return "DC5";
- else
- return "DC6";
-}
-
static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count)
{
- igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
- "%s state is not achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
+ igt_assert_f(igt_dc_state_wait_entrytry(data->debugfs_fd, dc_flag, prev_dc_count),
+ "%s state is not achieved\n%s:\n%s\n", igt_dc_state_namee(dc_flag), PWR_DOMAIN_INFO,
data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
}
static void check_dc_counter_negative(data_t *data, int dc_flag, uint32_t prev_dc_count)
{
- igt_assert_f(!dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
- "%s state is achieved\n%s:\n%s\n", dc_state_name(dc_flag), PWR_DOMAIN_INFO,
+ igt_assert_f(!igt_dc_state_wait_entrytry(data->debugfs_fd, dc_flag, prev_dc_count),
+ "%s state is achieved\n%s:\n%s\n", igt_dc_state_namee(dc_flag), PWR_DOMAIN_INFO,
data->debugfs_dump = igt_sysfs_get(data->debugfs_fd, PWR_DOMAIN_INFO));
}
@@ -368,7 +297,7 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
primary = igt_output_get_plane_type(data->output,
DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, NULL);
- dc3co_prev_cnt = read_dc_counter(data->debugfs_fd, CHECK_DC3CO);
+ dc3co_prev_cnt = igt_read_dc_counter(data->debugfs_fd, CHECK_DC3CO);
/* Calculate delay to generate idle frame in usec*/
delay = 1.5 * ((1000 * 1000) / data->mode->vrefresh);
@@ -383,36 +312,10 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
usleep(delay);
}
- igt_require_f(dc_state_wait_entry(data->debugfs_fd,
+ igt_require_f(igt_dc_state_wait_entrytry(data->debugfs_fd,
CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n");
}
-static void require_dc_counter(int debugfs_fd, int dc_flag)
-{
- char *str;
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
-
- switch (dc_flag) {
- case CHECK_DC3CO:
- igt_skip_on_f(!strstr(buf, "DC3CO count"),
- "DC3CO counter is not available\n");
- break;
- case CHECK_DC5:
- igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
- "DC5 counter is not available\n");
- break;
- case CHECK_DC6:
- str = get_dc6_counter(buf);
- igt_skip_on_f(!str, "No DC6 counter available\n");
- break;
- default:
- igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
- }
-}
-
static void setup_dc3co(data_t *data)
{
data->op_psr_mode = PSR_MODE_2;
@@ -423,7 +326,7 @@ static void setup_dc3co(data_t *data)
static void test_dc3co_vpb_simulation(data_t *data)
{
- require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
+ igt_require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
setup_output(data);
setup_dc3co(data);
setup_videoplayback(data);
@@ -435,8 +338,8 @@ static void test_dc5_retention_flops(data_t *data, int dc_flag)
{
uint32_t dc_counter_before_psr;
- require_dc_counter(data->debugfs_fd, dc_flag);
- dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd, dc_flag);
set_output_on_pipe_b(data);
setup_primary(data);
igt_assert(psr_wait_entry(data->debugfs_fd, data->op_psr_mode, NULL));
@@ -448,8 +351,8 @@ static void test_dc_state_psr(data_t *data, int dc_flag)
{
uint32_t dc_counter_before_psr;
- require_dc_counter(data->debugfs_fd, dc_flag);
- dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd, dc_flag);
setup_output(data);
setup_primary(data);
igt_require(!psr_disabled_check(data->debugfs_fd));
@@ -512,9 +415,9 @@ static void test_dc_state_dpms(data_t *data, int dc_flag)
{
uint32_t dc_counter;
- require_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
setup_dc_dpms(data);
- dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
dpms_off(data);
check_dc_counter(data, dc_flag, dc_counter);
dpms_on(data);
@@ -525,23 +428,14 @@ static void test_dc_state_dpms_negative(data_t *data, int dc_flag)
{
uint32_t dc_counter;
- require_dc_counter(data->debugfs_fd, dc_flag);
+ igt_require_dc_counter(data->debugfs_fd, dc_flag);
setup_dc_dpms(data);
- dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
+ dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
dpms_on(data);
check_dc_counter_negative(data, dc_flag, dc_counter);
cleanup_dc_dpms(data);
}
-static bool support_dc6(int debugfs_fd)
-{
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
- return strstr(buf, "DC5 -> DC6 count");
-}
-
static uint64_t read_runtime_suspended_time(int drm_fd)
{
struct pci_device *i915;
@@ -564,7 +458,7 @@ static bool dc9_wait_entry(data_t *data, int dc_target, int prev_dc, uint64_t pr
*/
return igt_wait((read_runtime_suspended_time(data->drm_fd) > prev_rpm) &&
(!DC9_RESETS_DC_COUNTERS(data->devid) ||
- (read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs, 1000);
+ (igt_read_dc_counter(data->debugfs_fd, dc_target) < prev_dc)), msecs, 1000);
}
static void check_dc9(data_t *data, int dc_target, int prev_dc, int prev_rpm)
@@ -584,12 +478,12 @@ static void setup_dc9_dpms(data_t *data, int dc_target)
__igt_sysfs_set_boolean(sysfs_fd, "poll", KMS_POLL_DISABLE);
close(sysfs_fd);
if (DC9_RESETS_DC_COUNTERS(data->devid)) {
- prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
+ prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
setup_dc_dpms(data);
dpms_off(data);
- igt_skip_on_f(!(igt_wait(read_dc_counter(data->debugfs_fd, dc_target) >
+ igt_skip_on_f(!(igt_wait(igt_read_dc_counter(data->debugfs_fd, dc_target) >
prev_dc, 3000, 100)), "Unable to enters shallow DC states\n");
- prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
+ prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
dpms_on(data);
cleanup_dc_dpms(data);
}
@@ -603,8 +497,8 @@ static void test_dc9_dpms(data_t *data)
{
int dc_target;
- require_dc_counter(data->debugfs_fd, CHECK_DC5);
- dc_target = support_dc6(data->debugfs_fd) ? CHECK_DC6 : CHECK_DC5;
+ igt_require_dc_counter(data->debugfs_fd, CHECK_DC5);
+ dc_target = igt_support_dc6(data->debugfs_fd) ? CHECK_DC6 : CHECK_DC5;
setup_dc9_dpms(data, dc_target);
}
@@ -623,21 +517,6 @@ static int has_panels_without_dc_support(igt_display_t *display)
return external_panel;
}
-static unsigned int read_pkgc_counter(int debugfs_root_fd)
-{
- char buf[4096];
- char *str;
- int len;
-
- len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
- igt_skip_on_f(len < 0, "PKGC state file not found\n");
- buf[len] = '\0';
- str = strstr(buf, "Package C10");
- igt_skip_on_f(!str, "PKGC10 is not supported.\n");
-
- return get_dc_counter(str);
-}
-
static void test_deep_pkgc_state(data_t *data)
{
unsigned int pre_val = 0, cur_val = 0;
@@ -701,7 +580,7 @@ static void test_deep_pkgc_state(data_t *data)
igt_display_commit(&data->display);
/* Wait for the vblank to sync the frame time */
igt_wait_for_vblank_count(igt_crtc_for_pipe(&data->display, pipe), 1);
- pre_val = read_pkgc_counter(data->debugfs_root_fd);
+ pre_val = igt_read_pkgc_counter(data->debugfs_root_fd);
/* Add a half-frame delay to ensure the flip occurs when the frame is active. */
usleep(delay * 0.5);
@@ -710,7 +589,7 @@ static void test_deep_pkgc_state(data_t *data)
igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
igt_display_commit(&data->display);
- igt_wait((cur_val = read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
+ igt_wait((cur_val = igt_read_pkgc_counter(data->debugfs_root_fd)) > pre_val,
(delay * 2), (5 * MSEC));
if (cur_val > pre_val) {
pkgc_flag = true;
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* RE: [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
2026-01-27 6:34 Jeevan B
@ 2026-01-29 15:58 ` Bilal, Mohammed
0 siblings, 0 replies; 15+ messages in thread
From: Bilal, Mohammed @ 2026-01-29 15:58 UTC (permalink / raw)
To: B, Jeevan, igt-dev@lists.freedesktop.org; +Cc: Thasleem, Mohammed, B, Jeevan
Hi Jeevan ,
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Jeevan B
> Sent: 27 January 2026 12:05
> To: igt-dev@lists.freedesktop.org
> Cc: Thasleem, Mohammed <mohammed.thasleem@intel.com>; B, Jeevan
> <jeevan.b@intel.com>
> Subject: [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common
> library
>
> Move DC counter utility functions from tests/intel/kms_pm_dc.c to lib/igt_pm.c
> for reuse across other tests.
>
> v2: Add 'igt_' prefix before all functions. (Thasleem)
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> lib/igt_pm.c | 169 ++++++++++++++++++++++++++++++++++++++++
> lib/igt_pm.h | 15 ++++
> tests/intel/kms_pm_dc.c | 167 ++++++---------------------------------
> 3 files changed, 207 insertions(+), 144 deletions(-)
>
> diff --git a/lib/igt_pm.c b/lib/igt_pm.c index 1ffcdcef3..cc82e2134 100644
> --- a/lib/igt_pm.c
> +++ b/lib/igt_pm.c
> @@ -1543,3 +1543,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
> DRM_MODE_DPMS_ON);
>
> igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE))
> ;
> }
> +
> +/**
> + * igt_get_dc_counter:
> + * @dc_data: String containing DC counter data in format
> + *
> + * Returns the counter value as uint32_t */ uint32_t
> +igt_get_dc_counter(char *dc_data) {
> + char *e;
> + long ret;
> + char *s = strchr(dc_data, ':');
> +
> + igt_assert(s);
> + s++;
> + ret = strtol(s, &e, 10);
> + igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno !=
> ERANGE) &&
> + e > s && *e == '\n' && ret >= 0);
> + return ret;
> +}
> +
> +/**
> + * igt_support_dc6:
> + * @debugfs_fd: DRM file descriptor
> + *
> + * Returns true if DC6 is supported.
> + */
> +bool igt_support_dc6(int debugfs_fd)
> +{
> + char buf[4096];
> +
> + igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> + buf, sizeof(buf));
> + return strstr(buf, "DC5 -> DC6 count"); }
> +
> +/**
> + * igt_get_dc6_counter:Locate DC6 counter string in debugfs buffer
> + * @buf: Buffer containing i915_dmc_info debugfs output
> + *
> + * Searches for DC6 counter information in the DMC info buffer.
> + */
> +char *igt_get_dc6_counter(const char *buf) {
> + char *str;
> +
> + str = strstr(buf, "DC5 -> DC6 count");
> + if (!str)
> + str = strstr(buf, "DC5 -> DC6 allowed count");
> +
> + return str;
> +}
> +
> +/**
> + * igt_read_dc_counter:
> + * @debugfs_fd: DRM file descriptor
> + * @dc_flag: DC state flag (CHECK_DC5, CHECK_DC6, or CHECK_DC3CO)
> + *
> + * Returns current counter value for the specified DC state */
> +uint32_t igt_read_dc_counter(uint32_t debugfs_fd, int dc_flag) {
Prefer int instead of uint32_t for debugfs_fd to match igt_debugfs_simple_read() parameter type
Regards ,
Bilal
> + char buf[4096];
> + char *str;
> +
> + igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf,
> +sizeof(buf));
> +
> + if (dc_flag & CHECK_DC5) {
> + str = strstr(buf, "DC3 -> DC5 count");
> + igt_assert_f(str, "DC5 counter is not available\n");
> + } else if (dc_flag & CHECK_DC6) {
> + str = igt_get_dc6_counter(buf);
> + igt_assert_f(str, "No DC6 counter available\n");
> + } else if (dc_flag & CHECK_DC3CO) {
> + str = strstr(buf, "DC3CO count");
> + igt_assert_f(str, "DC3CO counter is not available\n");
> + } else {
> + igt_assert(!"reached");
> + str = NULL;
> + }
> +
> + return igt_get_dc_counter(str);
> +}
> +
> +/**
> + * igt_dc_state_wait_entrytry:
> + * @debugfs_fd: DRM file descriptor
> + * @dc_flag: DC state flag
> + * @prev_dc_count: Previous counter value to compare against
> + *
> + * Returns true if DC state entry detected within timeout, false
> +otherwise */ bool igt_dc_state_wait_entrytry(int debugfs_fd, int
> +dc_flag, int prev_dc_count) {
> + return igt_wait(igt_read_dc_counter(debugfs_fd, dc_flag) >
> + prev_dc_count, 3000, 100);
> +}
> +
> +/**
> + * igt_dc_state_namee:
> + * @dc_flag: DC state flag
> + *
> + * Converts DC state flag constants to readable string names */ const
> +char *igt_dc_state_namee(int dc_flag) {
> + if (dc_flag & CHECK_DC3CO)
> + return "DC3CO";
> + else if (dc_flag & CHECK_DC5)
> + return "DC5";
> + else
> + return "DC6";
> +}
> +
> +/**
> + * igt_require_dc_counter:
> + * @debugfs_fd: File descriptor for the debugfs
> + * @dc_flag: DC counter type to check (CHECK_DC3CO, CHECK_DC5,
> + * or CHECK_DC6)
> + *
> + * Skips the current test if the requested DC counter is not available
> + * on the system.
> + */
> +void igt_require_dc_counter(int debugfs_fd, int dc_flag) {
> + char *str;
> + char buf[4096];
> +
> + igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> + buf, sizeof(buf));
> +
> + switch (dc_flag) {
> + case CHECK_DC3CO:
> + igt_skip_on_f(!strstr(buf, "DC3CO count"),
> + "DC3CO counter is not available\n");
> + break;
> + case CHECK_DC5:
> + igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
> + "DC5 counter is not available\n");
> + break;
> + case CHECK_DC6:
> + str = igt_get_dc6_counter(buf);
> + igt_skip_on_f(!str, "No DC6 counter available\n");
> + break;
> + default:
> + igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
> + }
> +}
> +
> +/**
> + * igt_read_pkgc_counter:
> + * @debugfs_root_fd: File descriptor for the debugfs
> + *
> + * Returns PC10 counter value.
> + */
> +unsigned int igt_read_pkgc_counter(int debugfs_root_fd) {
> + char buf[4096];
> + char *str;
> + int len;
> +
> + len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf,
> sizeof(buf) - 1);
> + igt_skip_on_f(len < 0, "PKGC state file not found\n");
> + buf[len] = '\0';
> + str = strstr(buf, "Package C10");
> + igt_skip_on_f(!str, "PKGC10 is not supported.\n");
> +
> + return igt_get_dc_counter(str);
> +}
> diff --git a/lib/igt_pm.h b/lib/igt_pm.h index e931e51af..1930b3255 100644
> --- a/lib/igt_pm.h
> +++ b/lib/igt_pm.h
> @@ -29,6 +29,13 @@
>
> #include "igt_kms.h"
>
> +#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
> +
> +/* DC State Flags */
> +#define CHECK_DC5 (1 << 0)
> +#define CHECK_DC6 (1 << 1)
> +#define CHECK_DC3CO (1 << 2)
> +
> void igt_pm_enable_audio_runtime_pm(void);
> void igt_pm_enable_sata_link_power_management(void);
> void igt_pm_restore_sata_link_power_management(void);
> @@ -99,5 +106,13 @@ int igt_pm_get_runtime_usage(struct pci_device
> *pci_dev); void igt_pm_ignore_slpc_efficient_freq(int i915, int gtfd, bool val);
> bool igt_has_pci_pm_capability(struct pci_device *pci_dev); void
> igt_pm_dpms_toggle(igt_output_t *output);
> +uint32_t igt_get_dc_counter(char *dc_data); bool igt_support_dc6(int
> +debugfs_fd); char *igt_get_dc6_counter(const char *buf); uint32_t
> +igt_read_dc_counter(uint32_t debugfs_fd, int dc_flag); bool
> +igt_dc_state_wait_entrytry(int debugfs_fd, int dc_flag, int
> +prev_dc_count); const char *igt_dc_state_namee(int dc_flag); void
> +igt_require_dc_counter(int debugfs_fd, int dc_flag); unsigned int
> +igt_read_pkgc_counter(int debugfs_root_fd);
>
> #endif /* IGT_PM_H */
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c index
> 4babf1341..81e11c41d 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -79,15 +79,9 @@
> * Description: This test validates display engine entry to DC5 state while PSR is
> active on Pipe B
> */
>
> -/* DC State Flags */
> -#define CHECK_DC5 (1 << 0)
> -#define CHECK_DC6 (1 << 1)
> -#define CHECK_DC3CO (1 << 2)
> -
> #define PWR_DOMAIN_INFO "i915_power_domain_info"
> #define RPM_STATUS "i915_runtime_pm_status"
> #define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
> -#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)
> || intel_display_ver(devid) >= 14)) #define SEC 1 @@ -116,7 +110,6 @@ typedef
> struct {
> bool runtime_suspend_disabled;
> } data_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);
>
> static void set_output_on_pipe_b(data_t *data) @@ -262,81 +255,17 @@ static
> void create_color_fb(data_t *data, igt_fb_t *fb, color_t *fb_color)
> paint_rectangles(data, data->mode, fb_color, fb); }
>
> -static uint32_t get_dc_counter(char *dc_data) -{
> - char *e;
> - long ret;
> - char *s = strchr(dc_data, ':');
> -
> - igt_assert(s);
> - s++;
> - ret = strtol(s, &e, 10);
> - igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno !=
> ERANGE) && e > s && *e == '\n' && ret >= 0);
> - return ret;
> -}
> -
> -static char *get_dc6_counter(const char *buf) -{
> - char *str;
> -
> - str = strstr(buf, "DC5 -> DC6 count");
> - if (!str)
> - str = strstr(buf, "DC5 -> DC6 allowed count");
> -
> - return str;
> -}
> -
> -static uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag) -{
> - char buf[4096];
> - char *str;
> -
> - igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
> -
> - if (dc_flag & CHECK_DC5) {
> - str = strstr(buf, "DC3 -> DC5 count");
> - igt_assert_f(str, "DC5 counter is not available\n");
> - } else if (dc_flag & CHECK_DC6) {
> - str = get_dc6_counter(buf);
> - igt_assert_f(str, "No DC6 counter available\n");
> - } else if (dc_flag & CHECK_DC3CO) {
> - str = strstr(buf, "DC3CO count");
> - igt_assert_f(str, "DC3CO counter is not available\n");
> - } else {
> - igt_assert(!"reached");
> - str = NULL;
> - }
> -
> - return get_dc_counter(str);
> -}
> -
> -static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count) -{
> - return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
> - prev_dc_count, 3000, 100);
> -}
> -
> -static const char *dc_state_name(int dc_flag) -{
> - if (dc_flag & CHECK_DC3CO)
> - return "DC3CO";
> - else if (dc_flag & CHECK_DC5)
> - return "DC5";
> - else
> - return "DC6";
> -}
> -
> static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count)
> {
> - igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag,
> prev_dc_count),
> - "%s state is not achieved\n%s:\n%s\n",
> dc_state_name(dc_flag), PWR_DOMAIN_INFO,
> + igt_assert_f(igt_dc_state_wait_entrytry(data->debugfs_fd, dc_flag,
> prev_dc_count),
> + "%s state is not achieved\n%s:\n%s\n",
> +igt_dc_state_namee(dc_flag), PWR_DOMAIN_INFO,
> data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
> PWR_DOMAIN_INFO)); }
>
> static void check_dc_counter_negative(data_t *data, int dc_flag, uint32_t
> prev_dc_count) {
> - igt_assert_f(!dc_state_wait_entry(data->debugfs_fd, dc_flag,
> prev_dc_count),
> - "%s state is achieved\n%s:\n%s\n", dc_state_name(dc_flag),
> PWR_DOMAIN_INFO,
> + igt_assert_f(!igt_dc_state_wait_entrytry(data->debugfs_fd, dc_flag,
> prev_dc_count),
> + "%s state is achieved\n%s:\n%s\n",
> igt_dc_state_namee(dc_flag),
> +PWR_DOMAIN_INFO,
> data->debugfs_dump = igt_sysfs_get(data->debugfs_fd,
> PWR_DOMAIN_INFO)); }
>
> @@ -368,7 +297,7 @@ static void
> check_dc3co_with_videoplayback_like_load(data_t *data)
> primary = igt_output_get_plane_type(data->output,
> DRM_PLANE_TYPE_PRIMARY);
> igt_plane_set_fb(primary, NULL);
> - dc3co_prev_cnt = read_dc_counter(data->debugfs_fd, CHECK_DC3CO);
> + dc3co_prev_cnt = igt_read_dc_counter(data->debugfs_fd,
> CHECK_DC3CO);
>
> /* Calculate delay to generate idle frame in usec*/
> delay = 1.5 * ((1000 * 1000) / data->mode->vrefresh); @@ -383,36
> +312,10 @@ static void check_dc3co_with_videoplayback_like_load(data_t
> *data)
> usleep(delay);
> }
>
> - igt_require_f(dc_state_wait_entry(data->debugfs_fd,
> + igt_require_f(igt_dc_state_wait_entrytry(data->debugfs_fd,
> CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not
> enabled\n"); }
>
> -static void require_dc_counter(int debugfs_fd, int dc_flag) -{
> - char *str;
> - char buf[4096];
> -
> - igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> - buf, sizeof(buf));
> -
> - switch (dc_flag) {
> - case CHECK_DC3CO:
> - igt_skip_on_f(!strstr(buf, "DC3CO count"),
> - "DC3CO counter is not available\n");
> - break;
> - case CHECK_DC5:
> - igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
> - "DC5 counter is not available\n");
> - break;
> - case CHECK_DC6:
> - str = get_dc6_counter(buf);
> - igt_skip_on_f(!str, "No DC6 counter available\n");
> - break;
> - default:
> - igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
> - }
> -}
> -
> static void setup_dc3co(data_t *data)
> {
> data->op_psr_mode = PSR_MODE_2;
> @@ -423,7 +326,7 @@ static void setup_dc3co(data_t *data)
>
> static void test_dc3co_vpb_simulation(data_t *data) {
> - require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
> + igt_require_dc_counter(data->debugfs_fd, CHECK_DC3CO);
> setup_output(data);
> setup_dc3co(data);
> setup_videoplayback(data);
> @@ -435,8 +338,8 @@ static void test_dc5_retention_flops(data_t *data, int
> dc_flag) {
> uint32_t dc_counter_before_psr;
>
> - require_dc_counter(data->debugfs_fd, dc_flag);
> - dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
> + igt_require_dc_counter(data->debugfs_fd, dc_flag);
> + dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd,
> +dc_flag);
> set_output_on_pipe_b(data);
> setup_primary(data);
> igt_assert(psr_wait_entry(data->debugfs_fd, data->op_psr_mode,
> NULL)); @@ -448,8 +351,8 @@ static void test_dc_state_psr(data_t *data, int
> dc_flag) {
> uint32_t dc_counter_before_psr;
>
> - require_dc_counter(data->debugfs_fd, dc_flag);
> - dc_counter_before_psr = read_dc_counter(data->debugfs_fd, dc_flag);
> + igt_require_dc_counter(data->debugfs_fd, dc_flag);
> + dc_counter_before_psr = igt_read_dc_counter(data->debugfs_fd,
> +dc_flag);
> setup_output(data);
> setup_primary(data);
> igt_require(!psr_disabled_check(data->debugfs_fd));
> @@ -512,9 +415,9 @@ static void test_dc_state_dpms(data_t *data, int dc_flag)
> {
> uint32_t dc_counter;
>
> - require_dc_counter(data->debugfs_fd, dc_flag);
> + igt_require_dc_counter(data->debugfs_fd, dc_flag);
> setup_dc_dpms(data);
> - dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
> + dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
> dpms_off(data);
> check_dc_counter(data, dc_flag, dc_counter);
> dpms_on(data);
> @@ -525,23 +428,14 @@ static void test_dc_state_dpms_negative(data_t *data,
> int dc_flag) {
> uint32_t dc_counter;
>
> - require_dc_counter(data->debugfs_fd, dc_flag);
> + igt_require_dc_counter(data->debugfs_fd, dc_flag);
> setup_dc_dpms(data);
> - dc_counter = read_dc_counter(data->debugfs_fd, dc_flag);
> + dc_counter = igt_read_dc_counter(data->debugfs_fd, dc_flag);
> dpms_on(data);
> check_dc_counter_negative(data, dc_flag, dc_counter);
> cleanup_dc_dpms(data);
> }
>
> -static bool support_dc6(int debugfs_fd) -{
> - char buf[4096];
> -
> - igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> - buf, sizeof(buf));
> - return strstr(buf, "DC5 -> DC6 count");
> -}
> -
> static uint64_t read_runtime_suspended_time(int drm_fd) {
> struct pci_device *i915;
> @@ -564,7 +458,7 @@ static bool dc9_wait_entry(data_t *data, int dc_target,
> int prev_dc, uint64_t pr
> */
> return igt_wait((read_runtime_suspended_time(data->drm_fd) >
> prev_rpm) &&
> (!DC9_RESETS_DC_COUNTERS(data->devid) ||
> - (read_dc_counter(data->debugfs_fd, dc_target) <
> prev_dc)), msecs, 1000);
> + (igt_read_dc_counter(data->debugfs_fd, dc_target) <
> prev_dc)),
> +msecs, 1000);
> }
>
> static void check_dc9(data_t *data, int dc_target, int prev_dc, int prev_rpm) @@
> -584,12 +478,12 @@ static void setup_dc9_dpms(data_t *data, int dc_target)
> __igt_sysfs_set_boolean(sysfs_fd, "poll", KMS_POLL_DISABLE);
> close(sysfs_fd);
> if (DC9_RESETS_DC_COUNTERS(data->devid)) {
> - prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
> + prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
> setup_dc_dpms(data);
> dpms_off(data);
> - igt_skip_on_f(!(igt_wait(read_dc_counter(data->debugfs_fd,
> dc_target) >
> + igt_skip_on_f(!(igt_wait(igt_read_dc_counter(data->debugfs_fd,
> +dc_target) >
> prev_dc, 3000, 100)), "Unable to enters shallow
> DC states\n");
> - prev_dc = read_dc_counter(data->debugfs_fd, dc_target);
> + prev_dc = igt_read_dc_counter(data->debugfs_fd, dc_target);
> dpms_on(data);
> cleanup_dc_dpms(data);
> }
> @@ -603,8 +497,8 @@ static void test_dc9_dpms(data_t *data) {
> int dc_target;
>
> - require_dc_counter(data->debugfs_fd, CHECK_DC5);
> - dc_target = support_dc6(data->debugfs_fd) ? CHECK_DC6 : CHECK_DC5;
> + igt_require_dc_counter(data->debugfs_fd, CHECK_DC5);
> + dc_target = igt_support_dc6(data->debugfs_fd) ? CHECK_DC6 :
> CHECK_DC5;
> setup_dc9_dpms(data, dc_target);
> }
>
> @@ -623,21 +517,6 @@ static int has_panels_without_dc_support(igt_display_t
> *display)
> return external_panel;
> }
>
> -static unsigned int read_pkgc_counter(int debugfs_root_fd) -{
> - char buf[4096];
> - char *str;
> - int len;
> -
> - len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf,
> sizeof(buf) - 1);
> - igt_skip_on_f(len < 0, "PKGC state file not found\n");
> - buf[len] = '\0';
> - str = strstr(buf, "Package C10");
> - igt_skip_on_f(!str, "PKGC10 is not supported.\n");
> -
> - return get_dc_counter(str);
> -}
> -
> static void test_deep_pkgc_state(data_t *data) {
> unsigned int pre_val = 0, cur_val = 0; @@ -701,7 +580,7 @@ static void
> test_deep_pkgc_state(data_t *data)
> igt_display_commit(&data->display);
> /* Wait for the vblank to sync the frame time */
> igt_wait_for_vblank_count(igt_crtc_for_pipe(&data->display, pipe), 1);
> - pre_val = read_pkgc_counter(data->debugfs_root_fd);
> + pre_val = igt_read_pkgc_counter(data->debugfs_root_fd);
> /* Add a half-frame delay to ensure the flip occurs when the frame is
> active. */
> usleep(delay * 0.5);
>
> @@ -710,7 +589,7 @@ static void test_deep_pkgc_state(data_t *data)
> igt_plane_set_fb(primary, flip ? &data->fb_rgb : &data->fb_rgr);
> igt_display_commit(&data->display);
>
> - igt_wait((cur_val = read_pkgc_counter(data->debugfs_root_fd))
> > pre_val,
> + igt_wait((cur_val = igt_read_pkgc_counter(data-
> >debugfs_root_fd)) >
> +pre_val,
> (delay * 2), (5 * MSEC));
> if (cur_val > pre_val) {
> pkgc_flag = true;
> --
> 2.43.0
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
@ 2025-12-08 8:39 Jeevan B
2025-12-08 10:31 ` Thasleem, Mohammed
0 siblings, 1 reply; 15+ messages in thread
From: Jeevan B @ 2025-12-08 8:39 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, mohammed.thasleem, Jeevan B
Move DC counter utility functions from tests/intel/kms_pm_dc.c
to lib/igt_pm.c for reuse across other tests.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
lib/igt_pm.c | 169 ++++++++++++++++++++++++++++++++++++++++
lib/igt_pm.h | 15 ++++
tests/intel/kms_pm_dc.c | 121 ----------------------------
3 files changed, 184 insertions(+), 121 deletions(-)
diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 1ffcdcef3..7873c68a4 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -1543,3 +1543,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
DRM_MODE_DPMS_ON);
igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
}
+
+/**
+ * get_dc_counter:
+ * @dc_data: String containing DC counter data in format
+ *
+ * Returns the counter value as uint32_t
+ */
+uint32_t get_dc_counter(char *dc_data)
+{
+ char *e;
+ long ret;
+ char *s = strchr(dc_data, ':');
+
+ igt_assert(s);
+ s++;
+ ret = strtol(s, &e, 10);
+ igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) &&
+ e > s && *e == '\n' && ret >= 0);
+ return ret;
+}
+
+/**
+ * support_dc6:
+ * @debugfs_fd: DRM file descriptor
+ *
+ * Returns true if DC6 is supported.
+ */
+bool support_dc6(int debugfs_fd)
+{
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+ return strstr(buf, "DC5 -> DC6 count");
+}
+
+/**
+ * get_dc6_counter:Locate DC6 counter string in debugfs buffer
+ * @buf: Buffer containing i915_dmc_info debugfs output
+ *
+ * Searches for DC6 counter information in the DMC info buffer.
+ */
+char *get_dc6_counter(const char *buf)
+{
+ char *str;
+
+ str = strstr(buf, "DC5 -> DC6 count");
+ if (!str)
+ str = strstr(buf, "DC5 -> DC6 allowed count");
+
+ return str;
+}
+
+/**
+ * read_dc_counter:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag (CHECK_DC5, CHECK_DC6, or CHECK_DC3CO)
+ *
+ * Returns current counter value for the specified DC state
+ */
+uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag)
+{
+ char buf[4096];
+ char *str;
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
+
+ if (dc_flag & CHECK_DC5) {
+ str = strstr(buf, "DC3 -> DC5 count");
+ igt_assert_f(str, "DC5 counter is not available\n");
+ } else if (dc_flag & CHECK_DC6) {
+ str = get_dc6_counter(buf);
+ igt_assert_f(str, "No DC6 counter available\n");
+ } else if (dc_flag & CHECK_DC3CO) {
+ str = strstr(buf, "DC3CO count");
+ igt_assert_f(str, "DC3CO counter is not available\n");
+ } else {
+ igt_assert(!"reached");
+ str = NULL;
+ }
+
+ return get_dc_counter(str);
+}
+
+/**
+ * dc_state_wait_entry:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag
+ * @prev_dc_count: Previous counter value to compare against
+ *
+ * Returns true if DC state entry detected within timeout, false otherwise
+ */
+bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
+{
+ return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
+ prev_dc_count, 3000, 100);
+}
+
+/**
+ * dc_state_name:
+ * @dc_flag: DC state flag
+ *
+ * Converts DC state flag constants to readable string names
+ */
+const char *dc_state_name(int dc_flag)
+{
+ if (dc_flag & CHECK_DC3CO)
+ return "DC3CO";
+ else if (dc_flag & CHECK_DC5)
+ return "DC5";
+ else
+ return "DC6";
+}
+
+/**
+ * require_dc_counter:
+ * @debugfs_fd: File descriptor for the debugfs
+ * @dc_flag: DC counter type to check (CHECK_DC3CO, CHECK_DC5,
+ * or CHECK_DC6)
+ *
+ * Skips the current test if the requested DC counter is not available
+ * on the system.
+ */
+void require_dc_counter(int debugfs_fd, int dc_flag)
+{
+ char *str;
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+
+ switch (dc_flag) {
+ case CHECK_DC3CO:
+ igt_skip_on_f(!strstr(buf, "DC3CO count"),
+ "DC3CO counter is not available\n");
+ break;
+ case CHECK_DC5:
+ igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
+ "DC5 counter is not available\n");
+ break;
+ case CHECK_DC6:
+ str = get_dc6_counter(buf);
+ igt_skip_on_f(!str, "No DC6 counter available\n");
+ break;
+ default:
+ igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
+ }
+}
+
+/**
+ * read_pkgc_counter:
+ * @debugfs_root_fd: File descriptor for the debugfs
+ *
+ * Returns PC10 counter value.
+ */
+unsigned int read_pkgc_counter(int debugfs_root_fd)
+{
+ char buf[4096];
+ char *str;
+ int len;
+
+ len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
+ igt_skip_on_f(len < 0, "PKGC state file not found\n");
+ buf[len] = '\0';
+ str = strstr(buf, "Package C10");
+ igt_skip_on_f(!str, "PKGC10 is not supported.\n");
+
+ return get_dc_counter(str);
+}
diff --git a/lib/igt_pm.h b/lib/igt_pm.h
index e931e51af..2db71e826 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -29,6 +29,13 @@
#include "igt_kms.h"
+#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
+
+/* DC State Flags */
+#define CHECK_DC5 (1 << 0)
+#define CHECK_DC6 (1 << 1)
+#define CHECK_DC3CO (1 << 2)
+
void igt_pm_enable_audio_runtime_pm(void);
void igt_pm_enable_sata_link_power_management(void);
void igt_pm_restore_sata_link_power_management(void);
@@ -99,5 +106,13 @@ int igt_pm_get_runtime_usage(struct pci_device *pci_dev);
void igt_pm_ignore_slpc_efficient_freq(int i915, int gtfd, bool val);
bool igt_has_pci_pm_capability(struct pci_device *pci_dev);
void igt_pm_dpms_toggle(igt_output_t *output);
+uint32_t get_dc_counter(char *dc_data);
+bool support_dc6(int debugfs_fd);
+char *get_dc6_counter(const char *buf);
+uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag);
+bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count);
+const char *dc_state_name(int dc_flag);
+void require_dc_counter(int debugfs_fd, int dc_flag);
+unsigned int read_pkgc_counter(int debugfs_root_fd);
#endif /* IGT_PM_H */
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c
index 8cdf312f6..226bb753d 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -79,15 +79,9 @@
* Description: This test validates display engine entry to DC5 state while PSR is active on Pipe B
*/
-/* DC State Flags */
-#define CHECK_DC5 (1 << 0)
-#define CHECK_DC6 (1 << 1)
-#define CHECK_DC3CO (1 << 2)
-
#define PWR_DOMAIN_INFO "i915_power_domain_info"
#define RPM_STATUS "i915_runtime_pm_status"
#define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
-#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) || intel_display_ver(devid) >= 14))
#define SEC 1
@@ -116,7 +110,6 @@ typedef struct {
bool runtime_suspend_disabled;
} data_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);
static void set_output_on_pipe_b(data_t *data)
@@ -260,70 +253,6 @@ static void create_color_fb(data_t *data, igt_fb_t *fb, color_t *fb_color)
paint_rectangles(data, data->mode, fb_color, fb);
}
-static uint32_t get_dc_counter(char *dc_data)
-{
- char *e;
- long ret;
- char *s = strchr(dc_data, ':');
-
- igt_assert(s);
- s++;
- ret = strtol(s, &e, 10);
- igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) && e > s && *e == '\n' && ret >= 0);
- return ret;
-}
-
-static char *get_dc6_counter(const char *buf)
-{
- char *str;
-
- str = strstr(buf, "DC5 -> DC6 count");
- if (!str)
- str = strstr(buf, "DC5 -> DC6 allowed count");
-
- return str;
-}
-
-static uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag)
-{
- char buf[4096];
- char *str;
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
-
- if (dc_flag & CHECK_DC5) {
- str = strstr(buf, "DC3 -> DC5 count");
- igt_assert_f(str, "DC5 counter is not available\n");
- } else if (dc_flag & CHECK_DC6) {
- str = get_dc6_counter(buf);
- igt_assert_f(str, "No DC6 counter available\n");
- } else if (dc_flag & CHECK_DC3CO) {
- str = strstr(buf, "DC3CO count");
- igt_assert_f(str, "DC3CO counter is not available\n");
- } else {
- igt_assert(!"reached");
- str = NULL;
- }
-
- return get_dc_counter(str);
-}
-
-static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count)
-{
- return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
- prev_dc_count, 3000, 100);
-}
-
-static const char *dc_state_name(int dc_flag)
-{
- if (dc_flag & CHECK_DC3CO)
- return "DC3CO";
- else if (dc_flag & CHECK_DC5)
- return "DC5";
- else
- return "DC6";
-}
-
static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count)
{
igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count),
@@ -385,32 +314,6 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n");
}
-static void require_dc_counter(int debugfs_fd, int dc_flag)
-{
- char *str;
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
-
- switch (dc_flag) {
- case CHECK_DC3CO:
- igt_skip_on_f(!strstr(buf, "DC3CO count"),
- "DC3CO counter is not available\n");
- break;
- case CHECK_DC5:
- igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
- "DC5 counter is not available\n");
- break;
- case CHECK_DC6:
- str = get_dc6_counter(buf);
- igt_skip_on_f(!str, "No DC6 counter available\n");
- break;
- default:
- igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
- }
-}
-
static void setup_dc3co(data_t *data)
{
data->op_psr_mode = PSR_MODE_2;
@@ -531,15 +434,6 @@ static void test_dc_state_dpms_negative(data_t *data, int dc_flag)
cleanup_dc_dpms(data);
}
-static bool support_dc6(int debugfs_fd)
-{
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
- return strstr(buf, "DC5 -> DC6 count");
-}
-
static uint64_t read_runtime_suspended_time(int drm_fd)
{
struct pci_device *i915;
@@ -621,21 +515,6 @@ static int has_panels_without_dc_support(igt_display_t *display)
return external_panel;
}
-static unsigned int read_pkgc_counter(int debugfs_root_fd)
-{
- char buf[4096];
- char *str;
- int len;
-
- len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
- igt_skip_on_f(len < 0, "PKGC state file not found\n");
- buf[len] = '\0';
- str = strstr(buf, "Package C10");
- igt_skip_on_f(!str, "PKGC10 is not supported.\n");
-
- return get_dc_counter(str);
-}
-
static void test_deep_pkgc_state(data_t *data)
{
unsigned int pre_val = 0, cur_val = 0;
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* RE: [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
2025-12-08 8:39 Jeevan B
@ 2025-12-08 10:31 ` Thasleem, Mohammed
2026-01-12 8:24 ` Thasleem, Mohammed
0 siblings, 1 reply; 15+ messages in thread
From: Thasleem, Mohammed @ 2025-12-08 10:31 UTC (permalink / raw)
To: B, Jeevan, igt-dev@lists.freedesktop.org; +Cc: B S, Karthik
-----Original Message-----
From: B, Jeevan <jeevan.b@intel.com>
Sent: 08 December 2025 02:10 PM
To: igt-dev@lists.freedesktop.org
Cc: B S, Karthik <karthik.b.s@intel.com>; Thasleem, Mohammed <mohammed.thasleem@intel.com>; B, Jeevan <jeevan.b@intel.com>
Subject: [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
Move DC counter utility functions from tests/intel/kms_pm_dc.c to lib/igt_pm.c for reuse across other tests.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
lib/igt_pm.c | 169 ++++++++++++++++++++++++++++++++++++++++
lib/igt_pm.h | 15 ++++
tests/intel/kms_pm_dc.c | 121 ----------------------------
3 files changed, 184 insertions(+), 121 deletions(-)
diff --git a/lib/igt_pm.c b/lib/igt_pm.c index 1ffcdcef3..7873c68a4 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -1543,3 +1543,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
DRM_MODE_DPMS_ON);
igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
}
+
+/**
+ * get_dc_counter:
+ * @dc_data: String containing DC counter data in format
+ *
+ * Returns the counter value as uint32_t */ uint32_t
+get_dc_counter(char *dc_data) {
-->Use "igt_" before all lib.c/h functions...
+ char *e;
+ long ret;
+ char *s = strchr(dc_data, ':');
+
+ igt_assert(s);
+ s++;
+ ret = strtol(s, &e, 10);
+ igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) &&
+ e > s && *e == '\n' && ret >= 0);
+ return ret;
+}
+
+/**
+ * support_dc6:
+ * @debugfs_fd: DRM file descriptor
+ *
+ * Returns true if DC6 is supported.
+ */
+bool support_dc6(int debugfs_fd)
+{
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+ return strstr(buf, "DC5 -> DC6 count"); }
+
+/**
+ * get_dc6_counter:Locate DC6 counter string in debugfs buffer
+ * @buf: Buffer containing i915_dmc_info debugfs output
+ *
+ * Searches for DC6 counter information in the DMC info buffer.
+ */
+char *get_dc6_counter(const char *buf)
+{
+ char *str;
+
+ str = strstr(buf, "DC5 -> DC6 count");
+ if (!str)
+ str = strstr(buf, "DC5 -> DC6 allowed count");
+
+ return str;
+}
+
+/**
+ * read_dc_counter:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag (CHECK_DC5, CHECK_DC6, or CHECK_DC3CO)
+ *
+ * Returns current counter value for the specified DC state */
+uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag) {
+ char buf[4096];
+ char *str;
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf,
+sizeof(buf));
+
+ if (dc_flag & CHECK_DC5) {
+ str = strstr(buf, "DC3 -> DC5 count");
+ igt_assert_f(str, "DC5 counter is not available\n");
+ } else if (dc_flag & CHECK_DC6) {
+ str = get_dc6_counter(buf);
+ igt_assert_f(str, "No DC6 counter available\n");
+ } else if (dc_flag & CHECK_DC3CO) {
+ str = strstr(buf, "DC3CO count");
+ igt_assert_f(str, "DC3CO counter is not available\n");
+ } else {
+ igt_assert(!"reached");
+ str = NULL;
+ }
+
+ return get_dc_counter(str);
+}
+
+/**
+ * dc_state_wait_entry:
+ * @debugfs_fd: DRM file descriptor
+ * @dc_flag: DC state flag
+ * @prev_dc_count: Previous counter value to compare against
+ *
+ * Returns true if DC state entry detected within timeout, false
+otherwise */ bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int
+prev_dc_count) {
+ return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
+ prev_dc_count, 3000, 100);
+}
+
+/**
+ * dc_state_name:
+ * @dc_flag: DC state flag
+ *
+ * Converts DC state flag constants to readable string names */ const
+char *dc_state_name(int dc_flag) {
+ if (dc_flag & CHECK_DC3CO)
+ return "DC3CO";
+ else if (dc_flag & CHECK_DC5)
+ return "DC5";
+ else
+ return "DC6";
+}
+
+/**
+ * require_dc_counter:
+ * @debugfs_fd: File descriptor for the debugfs
+ * @dc_flag: DC counter type to check (CHECK_DC3CO, CHECK_DC5,
+ * or CHECK_DC6)
+ *
+ * Skips the current test if the requested DC counter is not available
+ * on the system.
+ */
+void require_dc_counter(int debugfs_fd, int dc_flag) {
+ char *str;
+ char buf[4096];
+
+ igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
+ buf, sizeof(buf));
+
+ switch (dc_flag) {
+ case CHECK_DC3CO:
+ igt_skip_on_f(!strstr(buf, "DC3CO count"),
+ "DC3CO counter is not available\n");
+ break;
+ case CHECK_DC5:
+ igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
+ "DC5 counter is not available\n");
+ break;
+ case CHECK_DC6:
+ str = get_dc6_counter(buf);
+ igt_skip_on_f(!str, "No DC6 counter available\n");
+ break;
+ default:
+ igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
+ }
+}
+
+/**
+ * read_pkgc_counter:
+ * @debugfs_root_fd: File descriptor for the debugfs
+ *
+ * Returns PC10 counter value.
+ */
+unsigned int read_pkgc_counter(int debugfs_root_fd) {
+ char buf[4096];
+ char *str;
+ int len;
+
+ len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
+ igt_skip_on_f(len < 0, "PKGC state file not found\n");
+ buf[len] = '\0';
+ str = strstr(buf, "Package C10");
+ igt_skip_on_f(!str, "PKGC10 is not supported.\n");
+
+ return get_dc_counter(str);
+}
diff --git a/lib/igt_pm.h b/lib/igt_pm.h index e931e51af..2db71e826 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -29,6 +29,13 @@
#include "igt_kms.h"
+#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
+
+/* DC State Flags */
+#define CHECK_DC5 (1 << 0)
+#define CHECK_DC6 (1 << 1)
+#define CHECK_DC3CO (1 << 2)
+
void igt_pm_enable_audio_runtime_pm(void);
void igt_pm_enable_sata_link_power_management(void);
void igt_pm_restore_sata_link_power_management(void);
@@ -99,5 +106,13 @@ int igt_pm_get_runtime_usage(struct pci_device *pci_dev); void igt_pm_ignore_slpc_efficient_freq(int i915, int gtfd, bool val); bool igt_has_pci_pm_capability(struct pci_device *pci_dev); void igt_pm_dpms_toggle(igt_output_t *output);
+uint32_t get_dc_counter(char *dc_data); bool support_dc6(int
+debugfs_fd); char *get_dc6_counter(const char *buf); uint32_t
+read_dc_counter(uint32_t debugfs_fd, int dc_flag); bool
+dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count);
+const char *dc_state_name(int dc_flag); void require_dc_counter(int
+debugfs_fd, int dc_flag); unsigned int read_pkgc_counter(int
+debugfs_root_fd);
#endif /* IGT_PM_H */
diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c index 8cdf312f6..226bb753d 100644
--- a/tests/intel/kms_pm_dc.c
+++ b/tests/intel/kms_pm_dc.c
@@ -79,15 +79,9 @@
* Description: This test validates display engine entry to DC5 state while PSR is active on Pipe B
*/
-/* DC State Flags */
-#define CHECK_DC5 (1 << 0)
-#define CHECK_DC6 (1 << 1)
-#define CHECK_DC3CO (1 << 2)
-
#define PWR_DOMAIN_INFO "i915_power_domain_info"
#define RPM_STATUS "i915_runtime_pm_status"
#define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
-#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) || intel_display_ver(devid) >= 14)) #define SEC 1 @@ -116,7 +110,6 @@ typedef struct {
bool runtime_suspend_disabled;
} data_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);
static void set_output_on_pipe_b(data_t *data) @@ -260,70 +253,6 @@ static void create_color_fb(data_t *data, igt_fb_t *fb, color_t *fb_color)
paint_rectangles(data, data->mode, fb_color, fb); }
-static uint32_t get_dc_counter(char *dc_data) -{
- char *e;
- long ret;
- char *s = strchr(dc_data, ':');
-
- igt_assert(s);
- s++;
- ret = strtol(s, &e, 10);
- igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) && e > s && *e == '\n' && ret >= 0);
- return ret;
-}
-
-static char *get_dc6_counter(const char *buf) -{
- char *str;
-
- str = strstr(buf, "DC5 -> DC6 count");
- if (!str)
- str = strstr(buf, "DC5 -> DC6 allowed count");
-
- return str;
-}
-
-static uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag) -{
- char buf[4096];
- char *str;
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
-
- if (dc_flag & CHECK_DC5) {
- str = strstr(buf, "DC3 -> DC5 count");
- igt_assert_f(str, "DC5 counter is not available\n");
- } else if (dc_flag & CHECK_DC6) {
- str = get_dc6_counter(buf);
- igt_assert_f(str, "No DC6 counter available\n");
- } else if (dc_flag & CHECK_DC3CO) {
- str = strstr(buf, "DC3CO count");
- igt_assert_f(str, "DC3CO counter is not available\n");
- } else {
- igt_assert(!"reached");
- str = NULL;
- }
-
- return get_dc_counter(str);
-}
-
-static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count) -{
- return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
- prev_dc_count, 3000, 100);
-}
-
-static const char *dc_state_name(int dc_flag) -{
- if (dc_flag & CHECK_DC3CO)
- return "DC3CO";
- else if (dc_flag & CHECK_DC5)
- return "DC5";
- else
- return "DC6";
-}
-
static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count) {
igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count), @@ -385,32 +314,6 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n"); }
-static void require_dc_counter(int debugfs_fd, int dc_flag) -{
- char *str;
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
-
- switch (dc_flag) {
- case CHECK_DC3CO:
- igt_skip_on_f(!strstr(buf, "DC3CO count"),
- "DC3CO counter is not available\n");
- break;
- case CHECK_DC5:
- igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
- "DC5 counter is not available\n");
- break;
- case CHECK_DC6:
- str = get_dc6_counter(buf);
- igt_skip_on_f(!str, "No DC6 counter available\n");
- break;
- default:
- igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
- }
-}
-
static void setup_dc3co(data_t *data)
{
data->op_psr_mode = PSR_MODE_2;
@@ -531,15 +434,6 @@ static void test_dc_state_dpms_negative(data_t *data, int dc_flag)
cleanup_dc_dpms(data);
}
-static bool support_dc6(int debugfs_fd) -{
- char buf[4096];
-
- igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
- buf, sizeof(buf));
- return strstr(buf, "DC5 -> DC6 count");
-}
-
static uint64_t read_runtime_suspended_time(int drm_fd) {
struct pci_device *i915;
@@ -621,21 +515,6 @@ static int has_panels_without_dc_support(igt_display_t *display)
return external_panel;
}
-static unsigned int read_pkgc_counter(int debugfs_root_fd) -{
- char buf[4096];
- char *str;
- int len;
-
- len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
- igt_skip_on_f(len < 0, "PKGC state file not found\n");
- buf[len] = '\0';
- str = strstr(buf, "Package C10");
- igt_skip_on_f(!str, "PKGC10 is not supported.\n");
-
- return get_dc_counter(str);
-}
-
static void test_deep_pkgc_state(data_t *data) {
unsigned int pre_val = 0, cur_val = 0;
--
2.43.0
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
2025-12-08 10:31 ` Thasleem, Mohammed
@ 2026-01-12 8:24 ` Thasleem, Mohammed
0 siblings, 0 replies; 15+ messages in thread
From: Thasleem, Mohammed @ 2026-01-12 8:24 UTC (permalink / raw)
To: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11834 bytes --]
On 08-12-2025 04:01 pm, Thasleem, Mohammed wrote:
>
> -----Original Message-----
> From: B, Jeevan<jeevan.b@intel.com>
> Sent: 08 December 2025 02:10 PM
> To:igt-dev@lists.freedesktop.org
> Cc: B S, Karthik<karthik.b.s@intel.com>; Thasleem, Mohammed<mohammed.thasleem@intel.com>; B, Jeevan<jeevan.b@intel.com>
> Subject: [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
>
> Move DC counter utility functions from tests/intel/kms_pm_dc.c to lib/igt_pm.c for reuse across other tests.
>
> Signed-off-by: Jeevan B<jeevan.b@intel.com>
> ---
> lib/igt_pm.c | 169 ++++++++++++++++++++++++++++++++++++++++
> lib/igt_pm.h | 15 ++++
> tests/intel/kms_pm_dc.c | 121 ----------------------------
> 3 files changed, 184 insertions(+), 121 deletions(-)
>
> diff --git a/lib/igt_pm.c b/lib/igt_pm.c index 1ffcdcef3..7873c68a4 100644
> --- a/lib/igt_pm.c
> +++ b/lib/igt_pm.c
> @@ -1543,3 +1543,172 @@ void igt_pm_dpms_toggle(igt_output_t *output)
> DRM_MODE_DPMS_ON);
> igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_ACTIVE));
> }
> +
> +/**
> + * get_dc_counter:
> + * @dc_data: String containing DC counter data in format
> + *
> + * Returns the counter value as uint32_t */ uint32_t
> +get_dc_counter(char *dc_data) {
*-->Use the 'igt_' prefix before all lib.c/h functions.*
> + char *e;
> + long ret;
> + char *s = strchr(dc_data, ':');
> +
> + igt_assert(s);
> + s++;
> + ret = strtol(s, &e, 10);
> + igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) &&
> + e > s && *e == '\n' && ret >= 0);
> + return ret;
> +}
> +
> +/**
> + * support_dc6:
> + * @debugfs_fd: DRM file descriptor
> + *
> + * Returns true if DC6 is supported.
> + */
> +bool support_dc6(int debugfs_fd)
> +{
> + char buf[4096];
> +
> + igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> + buf, sizeof(buf));
> + return strstr(buf, "DC5 -> DC6 count"); }
> +
> +/**
> + * get_dc6_counter:Locate DC6 counter string in debugfs buffer
> + * @buf: Buffer containing i915_dmc_info debugfs output
> + *
> + * Searches for DC6 counter information in the DMC info buffer.
> + */
> +char *get_dc6_counter(const char *buf)
> +{
> + char *str;
> +
> + str = strstr(buf, "DC5 -> DC6 count");
> + if (!str)
> + str = strstr(buf, "DC5 -> DC6 allowed count");
> +
> + return str;
> +}
> +
> +/**
> + * read_dc_counter:
> + * @debugfs_fd: DRM file descriptor
> + * @dc_flag: DC state flag (CHECK_DC5, CHECK_DC6, or CHECK_DC3CO)
> + *
> + * Returns current counter value for the specified DC state */
> +uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag) {
> + char buf[4096];
> + char *str;
> +
> + igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf,
> +sizeof(buf));
> +
> + if (dc_flag & CHECK_DC5) {
> + str = strstr(buf, "DC3 -> DC5 count");
> + igt_assert_f(str, "DC5 counter is not available\n");
> + } else if (dc_flag & CHECK_DC6) {
> + str = get_dc6_counter(buf);
> + igt_assert_f(str, "No DC6 counter available\n");
> + } else if (dc_flag & CHECK_DC3CO) {
> + str = strstr(buf, "DC3CO count");
> + igt_assert_f(str, "DC3CO counter is not available\n");
> + } else {
> + igt_assert(!"reached");
> + str = NULL;
> + }
> +
> + return get_dc_counter(str);
> +}
> +
> +/**
> + * dc_state_wait_entry:
> + * @debugfs_fd: DRM file descriptor
> + * @dc_flag: DC state flag
> + * @prev_dc_count: Previous counter value to compare against
> + *
> + * Returns true if DC state entry detected within timeout, false
> +otherwise */ bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int
> +prev_dc_count) {
> + return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
> + prev_dc_count, 3000, 100);
> +}
> +
> +/**
> + * dc_state_name:
> + * @dc_flag: DC state flag
> + *
> + * Converts DC state flag constants to readable string names */ const
> +char *dc_state_name(int dc_flag) {
> + if (dc_flag & CHECK_DC3CO)
> + return "DC3CO";
> + else if (dc_flag & CHECK_DC5)
> + return "DC5";
> + else
> + return "DC6";
> +}
> +
> +/**
> + * require_dc_counter:
> + * @debugfs_fd: File descriptor for the debugfs
> + * @dc_flag: DC counter type to check (CHECK_DC3CO, CHECK_DC5,
> + * or CHECK_DC6)
> + *
> + * Skips the current test if the requested DC counter is not available
> + * on the system.
> + */
> +void require_dc_counter(int debugfs_fd, int dc_flag) {
> + char *str;
> + char buf[4096];
> +
> + igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> + buf, sizeof(buf));
> +
> + switch (dc_flag) {
> + case CHECK_DC3CO:
> + igt_skip_on_f(!strstr(buf, "DC3CO count"),
> + "DC3CO counter is not available\n");
> + break;
> + case CHECK_DC5:
> + igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
> + "DC5 counter is not available\n");
> + break;
> + case CHECK_DC6:
> + str = get_dc6_counter(buf);
> + igt_skip_on_f(!str, "No DC6 counter available\n");
> + break;
> + default:
> + igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
> + }
> +}
> +
> +/**
> + * read_pkgc_counter:
> + * @debugfs_root_fd: File descriptor for the debugfs
> + *
> + * Returns PC10 counter value.
> + */
> +unsigned int read_pkgc_counter(int debugfs_root_fd) {
> + char buf[4096];
> + char *str;
> + int len;
> +
> + len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
> + igt_skip_on_f(len < 0, "PKGC state file not found\n");
> + buf[len] = '\0';
> + str = strstr(buf, "Package C10");
> + igt_skip_on_f(!str, "PKGC10 is not supported.\n");
> +
> + return get_dc_counter(str);
> +}
> diff --git a/lib/igt_pm.h b/lib/igt_pm.h index e931e51af..2db71e826 100644
> --- a/lib/igt_pm.h
> +++ b/lib/igt_pm.h
> @@ -29,6 +29,13 @@
>
> #include "igt_kms.h"
>
> +#define PACKAGE_CSTATE_PATH "pmc_core/package_cstate_show"
> +
> +/* DC State Flags */
> +#define CHECK_DC5 (1 << 0)
> +#define CHECK_DC6 (1 << 1)
> +#define CHECK_DC3CO (1 << 2)
> +
> void igt_pm_enable_audio_runtime_pm(void);
> void igt_pm_enable_sata_link_power_management(void);
> void igt_pm_restore_sata_link_power_management(void);
> @@ -99,5 +106,13 @@ int igt_pm_get_runtime_usage(struct pci_device *pci_dev); void igt_pm_ignore_slpc_efficient_freq(int i915, int gtfd, bool val); bool igt_has_pci_pm_capability(struct pci_device *pci_dev); void igt_pm_dpms_toggle(igt_output_t *output);
> +uint32_t get_dc_counter(char *dc_data); bool support_dc6(int
> +debugfs_fd); char *get_dc6_counter(const char *buf); uint32_t
> +read_dc_counter(uint32_t debugfs_fd, int dc_flag); bool
> +dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count);
> +const char *dc_state_name(int dc_flag); void require_dc_counter(int
> +debugfs_fd, int dc_flag); unsigned int read_pkgc_counter(int
> +debugfs_root_fd);
>
> #endif /* IGT_PM_H */
> diff --git a/tests/intel/kms_pm_dc.c b/tests/intel/kms_pm_dc.c index 8cdf312f6..226bb753d 100644
> --- a/tests/intel/kms_pm_dc.c
> +++ b/tests/intel/kms_pm_dc.c
> @@ -79,15 +79,9 @@
> * Description: This test validates display engine entry to DC5 state while PSR is active on Pipe B
> */
>
> -/* DC State Flags */
> -#define CHECK_DC5 (1 << 0)
> -#define CHECK_DC6 (1 << 1)
> -#define CHECK_DC3CO (1 << 2)
> -
> #define PWR_DOMAIN_INFO "i915_power_domain_info"
> #define RPM_STATUS "i915_runtime_pm_status"
> #define KMS_HELPER "/sys/module/drm_kms_helper/parameters/"
> -#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) || intel_display_ver(devid) >= 14)) #define SEC 1 @@ -116,7 +110,6 @@ typedef struct {
> bool runtime_suspend_disabled;
> } data_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);
>
> static void set_output_on_pipe_b(data_t *data) @@ -260,70 +253,6 @@ static void create_color_fb(data_t *data, igt_fb_t *fb, color_t *fb_color)
> paint_rectangles(data, data->mode, fb_color, fb); }
>
> -static uint32_t get_dc_counter(char *dc_data) -{
> - char *e;
> - long ret;
> - char *s = strchr(dc_data, ':');
> -
> - igt_assert(s);
> - s++;
> - ret = strtol(s, &e, 10);
> - igt_assert(((ret != LONG_MIN && ret != LONG_MAX) || errno != ERANGE) && e > s && *e == '\n' && ret >= 0);
> - return ret;
> -}
> -
> -static char *get_dc6_counter(const char *buf) -{
> - char *str;
> -
> - str = strstr(buf, "DC5 -> DC6 count");
> - if (!str)
> - str = strstr(buf, "DC5 -> DC6 allowed count");
> -
> - return str;
> -}
> -
> -static uint32_t read_dc_counter(uint32_t debugfs_fd, int dc_flag) -{
> - char buf[4096];
> - char *str;
> -
> - igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info", buf, sizeof(buf));
> -
> - if (dc_flag & CHECK_DC5) {
> - str = strstr(buf, "DC3 -> DC5 count");
> - igt_assert_f(str, "DC5 counter is not available\n");
> - } else if (dc_flag & CHECK_DC6) {
> - str = get_dc6_counter(buf);
> - igt_assert_f(str, "No DC6 counter available\n");
> - } else if (dc_flag & CHECK_DC3CO) {
> - str = strstr(buf, "DC3CO count");
> - igt_assert_f(str, "DC3CO counter is not available\n");
> - } else {
> - igt_assert(!"reached");
> - str = NULL;
> - }
> -
> - return get_dc_counter(str);
> -}
> -
> -static bool dc_state_wait_entry(int debugfs_fd, int dc_flag, int prev_dc_count) -{
> - return igt_wait(read_dc_counter(debugfs_fd, dc_flag) >
> - prev_dc_count, 3000, 100);
> -}
> -
> -static const char *dc_state_name(int dc_flag) -{
> - if (dc_flag & CHECK_DC3CO)
> - return "DC3CO";
> - else if (dc_flag & CHECK_DC5)
> - return "DC5";
> - else
> - return "DC6";
> -}
> -
> static void check_dc_counter(data_t *data, int dc_flag, uint32_t prev_dc_count) {
> igt_assert_f(dc_state_wait_entry(data->debugfs_fd, dc_flag, prev_dc_count), @@ -385,32 +314,6 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data)
> CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n"); }
>
> -static void require_dc_counter(int debugfs_fd, int dc_flag) -{
> - char *str;
> - char buf[4096];
> -
> - igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> - buf, sizeof(buf));
> -
> - switch (dc_flag) {
> - case CHECK_DC3CO:
> - igt_skip_on_f(!strstr(buf, "DC3CO count"),
> - "DC3CO counter is not available\n");
> - break;
> - case CHECK_DC5:
> - igt_skip_on_f(!strstr(buf, "DC3 -> DC5 count"),
> - "DC5 counter is not available\n");
> - break;
> - case CHECK_DC6:
> - str = get_dc6_counter(buf);
> - igt_skip_on_f(!str, "No DC6 counter available\n");
> - break;
> - default:
> - igt_assert_f(0, "Unknown DC counter %d\n", dc_flag);
> - }
> -}
> -
> static void setup_dc3co(data_t *data)
> {
> data->op_psr_mode = PSR_MODE_2;
> @@ -531,15 +434,6 @@ static void test_dc_state_dpms_negative(data_t *data, int dc_flag)
> cleanup_dc_dpms(data);
> }
>
> -static bool support_dc6(int debugfs_fd) -{
> - char buf[4096];
> -
> - igt_debugfs_simple_read(debugfs_fd, "i915_dmc_info",
> - buf, sizeof(buf));
> - return strstr(buf, "DC5 -> DC6 count");
> -}
> -
> static uint64_t read_runtime_suspended_time(int drm_fd) {
> struct pci_device *i915;
> @@ -621,21 +515,6 @@ static int has_panels_without_dc_support(igt_display_t *display)
> return external_panel;
> }
>
> -static unsigned int read_pkgc_counter(int debugfs_root_fd) -{
> - char buf[4096];
> - char *str;
> - int len;
> -
> - len = igt_sysfs_read(debugfs_root_fd, PACKAGE_CSTATE_PATH, buf, sizeof(buf) - 1);
> - igt_skip_on_f(len < 0, "PKGC state file not found\n");
> - buf[len] = '\0';
> - str = strstr(buf, "Package C10");
> - igt_skip_on_f(!str, "PKGC10 is not supported.\n");
> -
> - return get_dc_counter(str);
> -}
> -
> static void test_deep_pkgc_state(data_t *data) {
> unsigned int pre_val = 0, cur_val = 0;
> --
> 2.43.0
>
[-- Attachment #2: Type: text/html, Size: 48954 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2026-02-13 7:16 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-10 3:24 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
2026-02-10 4:08 ` ✓ Xe.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev4) Patchwork
2026-02-10 4:29 ` ✓ i915.CI.BAT: " Patchwork
2026-02-10 9:23 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-10 15:26 ` ✗ i915.CI.Full: " Patchwork
2026-02-10 20:17 ` [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Thasleem, Mohammed
2026-02-11 13:53 ` Kamil Konieczny
-- strict thread matches above, loose matches on Subject: below --
2026-02-13 7:16 Jeevan B
2026-02-09 5:04 Jeevan B
2026-02-09 16:42 ` Kamil Konieczny
2026-01-27 6:34 Jeevan B
2026-01-29 15:58 ` Bilal, Mohammed
2025-12-08 8:39 Jeevan B
2025-12-08 10:31 ` Thasleem, Mohammed
2026-01-12 8:24 ` Thasleem, Mohammed
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox