* [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
* [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library
@ 2026-01-27 6:34 Jeevan B
2026-01-27 7:58 ` ✓ Xe.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 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
* ✓ Xe.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev2)
2026-01-27 6:34 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
@ 2026-01-27 7:58 ` Patchwork
2026-01-27 8:18 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-01-27 7:58 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 (rev2)
URL : https://patchwork.freedesktop.org/series/158629/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8718_BAT -> XEIGTPW_14422_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8718 -> IGTPW_14422
* Linux: xe-4448-0f7122915dfd558c57f69c4f97ebd64707a721cc -> xe-4450-81edc0e82197ad273a82b5da0a64c43d5c5a9a5d
IGTPW_14422: 14422
IGT_8718: 8718
xe-4448-0f7122915dfd558c57f69c4f97ebd64707a721cc: 0f7122915dfd558c57f69c4f97ebd64707a721cc
xe-4450-81edc0e82197ad273a82b5da0a64c43d5c5a9a5d: 81edc0e82197ad273a82b5da0a64c43d5c5a9a5d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/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 (rev2)
2026-01-27 6:34 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
2026-01-27 7:58 ` ✓ Xe.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev2) Patchwork
@ 2026-01-27 8:18 ` Patchwork
2026-01-27 9:34 ` ✗ Xe.CI.Full: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-01-27 8:18 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1959 bytes --]
== Series Details ==
Series: lib/igt_pm: Move DC State Counter Functions to common library (rev2)
URL : https://patchwork.freedesktop.org/series/158629/
State : success
== Summary ==
CI Bug Log - changes from IGT_8718 -> IGTPW_14422
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/index.html
Participating hosts (43 -> 39)
------------------------------
Missing (4): bat-twl-2 bat-dg2-13 fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in IGTPW_14422 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8718/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-6: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8718/bat-arls-6/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8718 -> IGTPW_14422
* Linux: CI_DRM_17886 -> CI_DRM_17892
CI-20190529: 20190529
CI_DRM_17886: ad8c37855805baaa6d835e520e802c950b0491ac @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_17892: e81ccbb3ef7a5a3469b91c8b6b85d021050da562 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14422: 14422
IGT_8718: 8718
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/index.html
[-- Attachment #2: Type: text/html, Size: 2674 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 (rev2)
2026-01-27 6:34 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
2026-01-27 7:58 ` ✓ Xe.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev2) Patchwork
2026-01-27 8:18 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-01-27 9:34 ` Patchwork
2026-01-27 12:47 ` ✗ i915.CI.Full: " Patchwork
2026-01-29 15:58 ` [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Bilal, Mohammed
4 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-01-27 9:34 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 53363 bytes --]
== Series Details ==
Series: lib/igt_pm: Move DC State Counter Functions to common library (rev2)
URL : https://patchwork.freedesktop.org/series/158629/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8718_FULL -> XEIGTPW_14422_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14422_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14422_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_14422_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-lnl: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-suspend.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@xe_exec_system_allocator@many-stride-free-race-nomemset:
- shard-bmg: [PASS][4] -> [DMESG-WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-free-race-nomemset.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-free-race-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap:
- shard-bmg: [PASS][6] -> [ABORT][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap.html
* igt@xe_oa@non-zero-reason-all:
- shard-lnl: [PASS][8] -> [FAIL][9] +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-1/igt@xe_oa@non-zero-reason-all.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-7/igt@xe_oa@non-zero-reason-all.html
#### Warnings ####
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: [SKIP][10] ([Intel XE#736]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
Known issues
------------
Here are the changes found in XEIGTPW_14422_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2233])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#5993]) +3 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#6054]) +3 other tests fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2327]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +9 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +5 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1477])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#610])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2191])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-8/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +8 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#3432])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +10 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#306])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_chamelium_color@ctm-limited-range.html
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2325])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-7/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2252]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_content_protection@atomic-dpms:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3278])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#6974])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2390] / [Intel XE#6974])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#1178] / [Intel XE#3304]) +3 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2320]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2321])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2321])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1424]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#309]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#4633])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][43] -> [FAIL][44] ([Intel XE#5299])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2286])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1340])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4354])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#4354])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#4331])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4331])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2244])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#776]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1421]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-2/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1397] / [Intel XE#1745])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1397]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1401]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2293]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#651]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2311]) +16 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7061]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7061]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4141]) +9 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#6312])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#656]) +15 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2313]) +17 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#3374] / [Intel XE#3544])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1503])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
* igt@kms_invalid_mode@bad-vtotal:
- shard-lnl: [PASS][70] -> [DMESG-WARN][71] ([Intel XE#7063]) +10 other tests dmesg-warn
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-2/igt@kms_invalid_mode@bad-vtotal.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_invalid_mode@bad-vtotal.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6912])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#7130]) +31 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-0:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#7130]) +33 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-0.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#7130] / [Intel XE#7131])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#7130] / [Intel XE#7131])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#7131]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7131]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2393])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#5021])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#4596])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#3307])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#6886]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#6886]) +9 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#870])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1406]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-7/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@kms_psr@psr2-no-drrs.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-270.html
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1127])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2330])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2413])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#6503]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2426])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@wait-busy@pipe-a-edp-1:
- shard-lnl: [PASS][100] -> [DMESG-WARN][101] ([Intel XE#4537] / [Intel XE#7063]) +2 other tests dmesg-warn
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-8/igt@kms_vblank@wait-busy@pipe-a-edp-1.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-2/igt@kms_vblank@wait-busy@pipe-a-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#1499])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-8/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2168])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@kms_vrr@lobf.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7:
- shard-bmg: [PASS][104] -> [FAIL][105] ([Intel XE#5937]) +26 other tests fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-9/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#6010])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-8/igt@xe_configfs@survivability-mode.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4837]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#4837]) +6 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@xe_eudebug@vma-ufence.html
* igt@xe_eudebug_online@pagefault-read:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#4837] / [Intel XE#6665])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-4/igt@xe_eudebug_online@pagefault-read.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-1/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-mixed-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#688]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-8/igt@xe_evict@evict-beng-mixed-threads-large-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][112] -> [INCOMPLETE][113] ([Intel XE#6321])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#7140]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2322]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1392]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#7136]) +9 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#7136]) +7 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-4/igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#6874]) +14 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-2/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#6874]) +21 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#5007])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#5625])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#4943]) +12 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#4943]) +17 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap-dontunmap-eocheck:
- shard-lnl: NOTRUN -> [DMESG-WARN][126] ([Intel XE#7063])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#7138]) +8 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#7138]) +10 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2459] / [Intel XE#2596])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@pci-membarrier-bad-object:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#5100])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-3/igt@xe_mmap@pci-membarrier-bad-object.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154]) -> ([PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [SKIP][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180]) ([Intel XE#2457])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-2/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-2/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-2/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-9/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-9/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-9/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-7/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-7/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-7/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-1/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-1/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-1/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-3/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-3/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-10/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-10/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-10/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-8/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-8/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-8/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-4/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-4/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-4/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-4/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-8/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-3/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-1/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-1/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-8/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-8/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-coherency-basic:
- shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#6964])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-2/igt@xe_multigpu_svm@mgpu-coherency-basic.html
* igt@xe_multigpu_svm@mgpu-pagefault-basic:
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#6964]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@xe_multigpu_svm@mgpu-pagefault-basic.html
* igt@xe_peer2peer@write:
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#1061])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-4/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2284])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#584]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-7/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#4733]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#944]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-4/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
- shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#944]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#4130]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-1/igt@xe_sriov_auto_provisioning@fair-allocation.html
#### Possible fixes ####
* igt@kms_big_fb@linear-8bpp-rotate-0:
- shard-lnl: [ABORT][190] ([Intel XE#4760]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-2/igt@kms_big_fb@linear-8bpp-rotate-0.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-8/igt@kms_big_fb@linear-8bpp-rotate-0.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][192] ([Intel XE#7084]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_plane_cursor@primary:
- shard-bmg: [FAIL][194] -> [PASS][195] +1 other test pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-2/igt@kms_plane_cursor@primary.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-2/igt@kms_plane_cursor@primary.html
* igt@xe_exec_system_allocator@once-large-mmap-remap-dontunmap-eocheck:
- shard-lnl: [DMESG-WARN][196] ([Intel XE#4537] / [Intel XE#7063]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-5/igt@xe_exec_system_allocator@once-large-mmap-remap-dontunmap-eocheck.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-4/igt@xe_exec_system_allocator@once-large-mmap-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@process-many-mmap-prefetch:
- shard-bmg: [ABORT][198] -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-8/igt@xe_exec_system_allocator@process-many-mmap-prefetch.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-8/igt@xe_exec_system_allocator@process-many-mmap-prefetch.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-busy:
- shard-lnl: [DMESG-WARN][200] ([Intel XE#7063]) -> [PASS][201] +8 other tests pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-busy.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-busy.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [FAIL][202] ([Intel XE#6569]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8718/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/shard-bmg-9/igt@xe_sriov_flr@flr-twice.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[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#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[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#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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[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#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#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537
[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#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[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#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[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#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[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#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[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#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[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#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8718 -> IGTPW_14422
* Linux: xe-4448-0f7122915dfd558c57f69c4f97ebd64707a721cc -> xe-4450-81edc0e82197ad273a82b5da0a64c43d5c5a9a5d
IGTPW_14422: 14422
IGT_8718: 8718
xe-4448-0f7122915dfd558c57f69c4f97ebd64707a721cc: 0f7122915dfd558c57f69c4f97ebd64707a721cc
xe-4450-81edc0e82197ad273a82b5da0a64c43d5c5a9a5d: 81edc0e82197ad273a82b5da0a64c43d5c5a9a5d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14422/index.html
[-- Attachment #2: Type: text/html, Size: 60317 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 (rev2)
2026-01-27 6:34 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
` (2 preceding siblings ...)
2026-01-27 9:34 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2026-01-27 12:47 ` Patchwork
2026-01-29 15:58 ` [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Bilal, Mohammed
4 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-01-27 12:47 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 159166 bytes --]
== Series Details ==
Series: lib/igt_pm: Move DC State Counter Functions to common library (rev2)
URL : https://patchwork.freedesktop.org/series/158629/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17892_full -> IGTPW_14422_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14422_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14422_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_14422/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14422_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_softpin@allocator-evict:
- shard-glk: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk5/igt@gem_softpin@allocator-evict.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
#### Warnings ####
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: [SKIP][4] ([i915#9292]) -> [SKIP][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-mtlp-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: [SKIP][6] ([i915#14104]) -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-1/igt@kms_pm_dc@dc6-dpms.html
- shard-rkl: [FAIL][8] ([i915#9295]) -> [FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [FAIL][10] ([i915#9295]) -> [FAIL][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
New tests
---------
New tests have been introduced between CI_DRM_17892_full and IGTPW_14422_full:
### New IGT tests (25) ###
* igt@gem_exercise_blt@fast-copy-emit@yfmajor-smem-smem-emit:
- Statuses : 1 pass(s)
- Exec time: [0.04] s
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-a-plane-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-b-plane-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-1:
- Statuses : 1 pass(s)
- Exec time: [0.36] s
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-7:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-1:
- Statuses : 1 pass(s)
- Exec time: [0.36] s
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-7:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-7:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-a-plane-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_vblank@wait-forked-busy@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [2.50] s
* igt@kms_vblank@wait-forked-busy@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [2.36] s
Known issues
------------
Here are the changes found in IGTPW_14422_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#14544] / [i915#8411])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#11078])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-19/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#11078])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-7/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-glk: NOTRUN -> [DMESG-WARN][15] ([i915#15095]) +1 other test dmesg-warn
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk2/igt@drm_buddy@drm_buddy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#13008])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-8/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#12392] / [i915#13356])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-3/igt@gem_close_race@multigpu-basic-process.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#7697])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#6335])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#6335])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-9/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#6335])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#8562])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-3/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#8562])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-15/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][27] ([i915#1099])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb4/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-4/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#8555])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#280])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-5/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@kms:
- shard-rkl: NOTRUN -> [DMESG-WARN][31] ([i915#13363])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@gem_eio@kms.html
- shard-tglu: [PASS][32] -> [DMESG-WARN][33] ([i915#13363])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-tglu-9/igt@gem_eio@kms.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-7/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][34] ([i915#8898]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb6/igt@gem_eio@unwedge-stress.html
* igt@gem_eio@unwedge-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#15314])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-2/igt@gem_eio@unwedge-stress@blt.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#4525])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][38] ([i915#11713])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-8/igt@gem_exec_big@single.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#5107])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-2/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#5107])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3281]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +10 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-6/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-12/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-4/igt@gem_exec_schedule@deep@rcs0.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_14422/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk10: NOTRUN -> [INCOMPLETE][47] ([i915#13196] / [i915#13356]) +1 other test incomplete
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk10/igt@gem_exec_suspend@basic-s3.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-4/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][50] ([i915#4613]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk2/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8289])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-2/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#8289])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-4/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#284])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-5/igt@gem_mmap_gtt@basic.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@gem_mmap_wc@bad-object.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-14/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#3282]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][61] ([i915#2658])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-15/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#8411])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#14544] / [i915#3282]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][68] ([i915#13809])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk1/igt@gem_softpin@noreloc-s3.html
- shard-rkl: [PASS][69] -> [ABORT][70] ([i915#15131])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-5/igt@gem_softpin@noreloc-s3.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-1/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282] / [i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-5/igt@gem_userptr_blits@forbidden-operations.html
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282] / [i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-16/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-2/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-snb: NOTRUN -> [SKIP][77] +107 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb7/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-2/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#13786])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@i915_fb_tiling@basic-x-tiling.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#13786])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-12/igt@i915_fb_tiling@basic-x-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#13786])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-2/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@fault-injection:
- shard-tglu-1: NOTRUN -> [ABORT][84] ([i915#15342] / [i915#15481])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@i915_module_load@fault-injection.html
- shard-glk: NOTRUN -> [ABORT][85] ([i915#15342] / [i915#15481])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk5/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#15479]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@i915_driver_hw_probe:
- shard-glk: NOTRUN -> [ABORT][87] ([i915#15481])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk5/igt@i915_module_load@fault-injection@i915_driver_hw_probe.html
- shard-tglu-1: NOTRUN -> [ABORT][88] ([i915#15481])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@i915_module_load@fault-injection@i915_driver_hw_probe.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][89] ([i915#15342])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-glk: NOTRUN -> [DMESG-WARN][90] ([i915#15342])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk5/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: [PASS][91] -> [DMESG-WARN][92] ([i915#13029] / [i915#14545])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-1/igt@i915_module_load@reload-no-display.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-1/igt@i915_module_load@reload-no-display.html
- shard-dg1: [PASS][93] -> [DMESG-WARN][94] ([i915#13029] / [i915#14545])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg1-15/igt@i915_module_load@reload-no-display.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-16/igt@i915_module_load@reload-no-display.html
- shard-snb: [PASS][95] -> [DMESG-WARN][96] ([i915#14545])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-snb4/igt@i915_module_load@reload-no-display.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb1/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-dg2: NOTRUN -> [DMESG-WARN][97] ([i915#14545])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-5/igt@i915_module_load@resize-bar.html
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#7178])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-16/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#8399])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][100] ([i915#13790] / [i915#2681]) +1 other test warn
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#14498])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#11681] / [i915#6621])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-12/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#4387])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6188])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-5/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#6188])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [PASS][107] -> [INCOMPLETE][108] ([i915#4817])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-8/igt@i915_suspend@fence-restore-tiled2untiled.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@fence-restore-untiled:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4077]) +5 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-4/igt@i915_suspend@fence-restore-untiled.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4077]) +5 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-12/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#7707])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#12454] / [i915#12712])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4212])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4212])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][115] ([i915#1769])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][116] ([i915#1769])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#5286]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#5286]) +5 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#14544] / [i915#5286])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3638]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3638])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-13/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#3828])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3828])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-18/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#3828])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][127] +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: [PASS][128] -> [DMESG-WARN][129] ([i915#4423]) +1 other test dmesg-warn
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg1-17/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-17/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +5 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6187])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#5190])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][133] +21 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6095]) +14 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#6095]) +87 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#14544] / [i915#6095]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#6095]) +74 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#6095]) +208 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#12805])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#12805])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][143] ([i915#15582])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [INCOMPLETE][144] ([i915#15582]) +1 other test incomplete
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#14098] / [i915#6095]) +62 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#12313])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#6095]) +62 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#6095]) +108 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#12313])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +34 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#10434] / [i915#6095])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][152] +495 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#3742])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-17/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#13781]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-glk10: NOTRUN -> [SKIP][155] +62 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk10/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +6 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_chamelium_frames@dp-frame-dump.html
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-5/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +7 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-rkl: [PASS][162] -> [SKIP][163] ([i915#12655] / [i915#3555])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_color@deep-color.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][164] ([i915#7173]) +2 other tests fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-3.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#15330])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#15330] / [i915#3116] / [i915#3299])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#14544] / [i915#15330])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#15330])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#6944])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#6944] / [i915#7118])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-2/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#6944])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#3555])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#13049]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8814])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3555]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#13049] / [i915#14544])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#13049])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8814])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3555]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#13049]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [PASS][184] -> [FAIL][185] ([i915#13566])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][186] ([i915#13566]) +2 other tests fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
- shard-tglu: [PASS][187] -> [FAIL][188] ([i915#13566]) +3 other tests fail
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#9809]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#13046] / [i915#5354]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#4103])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#4103]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#14544]) +4 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#9067])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#9067])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-19/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#9833])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#9723])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#9723])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-15/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#9723])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#13748])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#3840])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#3840])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats.html
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats.html
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3840] / [i915#9053])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][209] ([i915#9878])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#2065] / [i915#4854])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#1839])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#1839])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-8/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#1839])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-13/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#658])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-19/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#658])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-7/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#658])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3637] / [i915#9934]) +6 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#9934])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#9934])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][220] -> [FAIL][221] ([i915#13027]) +1 other test fail
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-snb4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#8381])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#8381])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#9934]) +8 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#3637] / [i915#9934]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#9934]) +7 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#9934]) +8 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-19/igt@kms_flip@2x-plain-flip.html
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +6 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#14544] / [i915#9934])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: [PASS][230] -> [INCOMPLETE][231] ([i915#6113]) +1 other test incomplete
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#15573]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#2587] / [i915#2672]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +4 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#2672]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#2587] / [i915#2672]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#2672]) +5 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555]) +5 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#2587] / [i915#2672]) +4 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/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-upscaling:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#8813]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-dg2: NOTRUN -> [SKIP][245] +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15104])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#15104])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][248] +25 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#8708])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][250] +22 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#1825]) +8 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#14544] / [i915#15574])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-dg2: [PASS][253] -> [FAIL][254] ([i915#15389] / [i915#6880])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#15102])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#15102])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#15102] / [i915#3023]) +15 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#1825]) +39 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#5354]) +14 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#15574]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#15102] / [i915#3458]) +4 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#15102]) +11 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#15102]) +4 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#15102]) +18 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#14544] / [i915#1825]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#15574]) +3 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#15574])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#15574])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#15574])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#8708]) +6 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#8708]) +6 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#15102] / [i915#3458]) +4 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_hdr@static-toggle-dpms.html
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-2/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#15460])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-15/igt@kms_joiner@basic-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#15460]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15458])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-5/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#15458])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#15458])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-16/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#15458])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-4/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#15458])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-6/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#13688])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#15459])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#13522])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#6301])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#15608] / [i915#15609] / [i915#8825])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-0:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#15608]) +18 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#15609] / [i915#8825])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#15609] / [i915#8825]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/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-dg2-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#15608] / [i915#8825]) +5 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-3:
- shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#15608]) +18 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#15608] / [i915#8825]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-0:
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#15608]) +15 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-9/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-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#15608] / [i915#8825]) +3 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#15609]) +3 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-4/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-7 (NEW):
- shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#15609]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#15609]) +2 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-6/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#15608] / [i915#15609] / [i915#8825])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-3:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#15608]) +7 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-3.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#15609]) +6 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#15609] / [i915#8825])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7 (NEW):
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#15609]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-12/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#15609]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-8/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@pipe-b-plane-3:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#15608]) +8 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-3.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#15608] / [i915#8825]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#15608]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-13/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#15609] / [i915#8825]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk10: NOTRUN -> [FAIL][311] ([i915#12178])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/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][312] ([i915#7862]) +1 other test fail
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][313] ([i915#10647] / [i915#12169])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][314] ([i915#10647]) +3 other tests fail
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][315] ([i915#10647] / [i915#12177])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#13958])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_plane_multiple@2x-tiling-none.html
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#13958])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#13958])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#13958])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#13958])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#14259])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-5/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#6953])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#6953])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#15329]) +4 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/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-dg1: NOTRUN -> [SKIP][325] ([i915#15329]) +4 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#12343])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#5354]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#5354])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#9812])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-9/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#3828])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#9685]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#8430])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][333] -> [SKIP][334] ([i915#15073]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#14544] / [i915#15073])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][336] -> [SKIP][337] ([i915#14544] / [i915#15073])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][338] -> [SKIP][339] ([i915#15073]) +2 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: [PASS][340] -> [SKIP][341] ([i915#15073]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#15073])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#15403])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][344] -> [INCOMPLETE][345] ([i915#14419])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html
- shard-rkl: [PASS][346] -> [INCOMPLETE][347] ([i915#14419]) +1 other test incomplete
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-3/igt@kms_pm_rpm@system-suspend-idle.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: NOTRUN -> [INCOMPLETE][348] ([i915#10553])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#6524])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][350] ([i915#11520]) +3 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#11520] / [i915#14544]) +2 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][352] ([i915#11520]) +7 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-glk10: NOTRUN -> [SKIP][353] ([i915#11520]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#11520]) +3 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][355] ([i915#11520]) +6 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-3/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#12316]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#11520]) +3 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#11520]) +3 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][359] ([i915#11520]) +3 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][360] ([i915#4348])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#9683])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#9683])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][363] ([i915#9732]) +25 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][364] ([i915#9688]) +8 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +20 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#9732]) +9 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#1072] / [i915#9732]) +10 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-15/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +7 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-3/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][370] ([i915#9685]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-14/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][371] ([i915#9685])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#5289])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][373] ([i915#5289])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][374] ([i915#13179]) +1 other test abort
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][375] ([i915#13179]) +1 other test abort
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#3555] / [i915#8809] / [i915#8823])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][377] ([i915#10959])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#14544] / [i915#8623])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#8623])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-tglu: NOTRUN -> [SKIP][380] ([i915#8623])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][381] ([i915#12276]) +3 other tests incomplete
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-rkl: [PASS][382] -> [INCOMPLETE][383] ([i915#12276])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-2/igt@kms_vblank@ts-continuation-suspend.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][384] ([i915#12276])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-basic:
- shard-tglu-1: NOTRUN -> [SKIP][385] ([i915#3555]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][386] ([i915#9906]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#15243] / [i915#3555])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][388] ([i915#9906])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#9906]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@mi-rpc:
- shard-mtlp: NOTRUN -> [SKIP][390] ([i915#2434])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#2435])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-rkl: [PASS][392] -> [FAIL][393] ([i915#4349]) +1 other test fail
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-8/igt@perf_pmu@busy-accuracy-98@rcs0.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@most-busy-check-all@vcs0:
- shard-mtlp: [PASS][394] -> [FAIL][395] ([i915#15520]) +1 other test fail
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-mtlp-5/igt@perf_pmu@most-busy-check-all@vcs0.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-6/igt@perf_pmu@most-busy-check-all@vcs0.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][396] ([i915#3708] / [i915#4077])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-3/igt@prime_vgem@basic-gtt.html
- shard-dg2: NOTRUN -> [SKIP][397] ([i915#3708] / [i915#4077])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-3/igt@prime_vgem@basic-gtt.html
- shard-dg1: NOTRUN -> [SKIP][398] ([i915#3708] / [i915#4077])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-15/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][399] ([i915#3291] / [i915#3708]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][400] +54 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-4/igt@prime_vgem@fence-write-hang.html
- shard-rkl: NOTRUN -> [SKIP][401] ([i915#3708])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][402] ([i915#9917]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [FAIL][403] ([i915#12910]) +9 other tests fail
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-3/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
#### Possible fixes ####
* igt@gem_mmap_offset@clear-via-pagefault@lmem0:
- shard-dg2: [FAIL][404] -> [PASS][405] +2 other tests pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-6/igt@gem_mmap_offset@clear-via-pagefault@lmem0.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-1/igt@gem_mmap_offset@clear-via-pagefault@lmem0.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [INCOMPLETE][406] ([i915#13356]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-glk5/igt@gem_workarounds@suspend-resume-context.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk1/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][408] ([i915#13729] / [i915#13821]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-snb5/igt@i915_pm_rps@reset.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb5/igt@i915_pm_rps@reset.html
* igt@i915_suspend@forcewake:
- shard-rkl: [INCOMPLETE][410] ([i915#4817]) -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-4/igt@i915_suspend@forcewake.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@i915_suspend@forcewake.html
* igt@kms_busy@basic@flip:
- shard-mtlp: [DMESG-WARN][412] ([i915#12935]) -> [PASS][413] +1 other test pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-mtlp-5/igt@kms_busy@basic@flip.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-mtlp-4/igt@kms_busy@basic@flip.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][414] ([i915#15582]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][416] ([i915#13566]) -> [PASS][417] +3 other tests pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-tglu: [FAIL][418] ([i915#13566]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-tglu-6/igt@kms_cursor_crc@cursor-random-64x21.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-2/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-snb: [SKIP][420] -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-snb4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [TIMEOUT][422] ([i915#14033] / [i915#14350]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][424] ([i915#14033]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-rkl: [FAIL][426] ([i915#10826]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-2/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [FAIL][428] ([i915#15389] / [i915#6880]) -> [PASS][429] +1 other test pass
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: [SKIP][430] ([i915#3555] / [i915#8228]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-3/igt@kms_hdr@bpc-switch-dpms.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [SKIP][432] ([i915#6953] / [i915#9423]) -> [PASS][433]
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][434] ([i915#15073]) -> [PASS][435]
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#8411]) -> [SKIP][437] ([i915#8411])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: [SKIP][438] ([i915#11078] / [i915#14544]) -> [SKIP][439] ([i915#11078])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@device_reset@cold-reset-bound.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@device_reset@cold-reset-bound.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: [SKIP][440] ([i915#14544] / [i915#4525]) -> [SKIP][441] ([i915#4525])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: [SKIP][442] ([i915#4525]) -> [SKIP][443] ([i915#14544] / [i915#4525])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_reloc@basic-write-gtt-noreloc:
- shard-rkl: [SKIP][444] ([i915#3281]) -> [SKIP][445] ([i915#14544] / [i915#3281]) +2 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-7/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: [SKIP][446] ([i915#14544] / [i915#3281]) -> [SKIP][447] ([i915#3281]) +3 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_lmem_swapping@random:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#4613]) -> [SKIP][449] ([i915#4613])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@gem_lmem_swapping@random.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: [SKIP][450] ([i915#4613]) -> [SKIP][451] ([i915#14544] / [i915#4613]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-5/igt@gem_lmem_swapping@random-engines.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
* igt@gem_pread@snoop:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#3282]) -> [SKIP][453] ([i915#3282]) +2 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@gem_pread@snoop.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@gem_pread@snoop.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][454] ([i915#3297]) -> [SKIP][455] ([i915#14544] / [i915#3297])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-5/igt@gem_userptr_blits@coherency-sync.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: [SKIP][456] ([i915#14544] / [i915#3297]) -> [SKIP][457] ([i915#3297]) +1 other test skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@bb-secure:
- shard-rkl: [SKIP][458] ([i915#2527]) -> [SKIP][459] ([i915#14544] / [i915#2527]) +1 other test skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-7/igt@gen9_exec_parse@bb-secure.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#2527]) -> [SKIP][461] ([i915#2527])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#8399]) -> [SKIP][463] ([i915#8399])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][464] ([i915#6245]) -> [SKIP][465] ([i915#14544] / [i915#6245])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-4/igt@i915_query@hwconfig_table.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@i915_query@hwconfig_table.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][466] ([i915#14544] / [i915#7707]) -> [SKIP][467] ([i915#7707])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#9531]) -> [SKIP][469] ([i915#9531])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][471] ([i915#1769] / [i915#3555])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-rkl: [SKIP][472] ([i915#14544] / [i915#5286]) -> [SKIP][473] ([i915#5286]) +1 other test skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][474] ([i915#3638]) -> [SKIP][475] ([i915#14544] / [i915#3638]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][476] ([i915#3828]) -> [SKIP][477] ([i915#14544] / [i915#3828])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg1: [SKIP][478] ([i915#3638] / [i915#4423]) -> [SKIP][479] ([i915#3638])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg1-12/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#3638]) -> [SKIP][481] ([i915#3638])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][482] ([i915#14544]) -> [SKIP][483] +8 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][484] ([i915#6095]) -> [SKIP][485] ([i915#14544] / [i915#6095]) +6 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][486] ([i915#14098] / [i915#6095]) -> [SKIP][487] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-rkl: [SKIP][488] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][489] ([i915#14098] / [i915#6095]) +6 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][490] ([i915#14544] / [i915#6095]) -> [SKIP][491] ([i915#6095]) +1 other test skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-2.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg1: [SKIP][492] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][493] ([i915#11151] / [i915#7828])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg1-19/igt@kms_chamelium_edid@hdmi-mode-timings.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-12/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: [SKIP][494] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][495] ([i915#11151] / [i915#7828]) +2 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-rkl: [SKIP][496] ([i915#11151] / [i915#7828]) -> [SKIP][497] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-fast.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-dg2: [FAIL][498] ([i915#7173]) -> [SKIP][499] ([i915#6944] / [i915#7118] / [i915#9424])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-11/igt@kms_content_protection@atomic.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-7/igt@kms_content_protection@atomic.html
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][501] ([i915#6944] / [i915#7118] / [i915#9424])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_content_protection@atomic.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][502] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][503] ([i915#7173])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-6/igt@kms_content_protection@atomic-dpms.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#6944]) -> [SKIP][505] ([i915#6944])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_content_protection@atomic-hdcp14.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-dg2: [FAIL][506] ([i915#7173]) -> [SKIP][507] ([i915#6944])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-11/igt@kms_content_protection@legacy-hdcp14.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-3/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-dg2: [SKIP][508] ([i915#6944]) -> [FAIL][509] ([i915#7173])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-6/igt@kms_content_protection@lic-type-0-hdcp14.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_content_protection@lic-type-0-hdcp14.html
- shard-rkl: [SKIP][510] ([i915#6944]) -> [SKIP][511] ([i915#14544] / [i915#6944])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-3/igt@kms_content_protection@lic-type-0-hdcp14.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][512] ([i915#6944] / [i915#7118]) -> [FAIL][513] ([i915#7173])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-4/igt@kms_content_protection@srm.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-11/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: [FAIL][514] ([i915#1339] / [i915#7173]) -> [SKIP][515] ([i915#6944] / [i915#7118] / [i915#9424])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-11/igt@kms_content_protection@uevent.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][516] ([i915#13049] / [i915#14544]) -> [SKIP][517] ([i915#13049]) +2 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][518] ([i915#14544] / [i915#3555]) -> [SKIP][519] ([i915#3555]) +3 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][520] ([i915#14544] / [i915#4103]) -> [SKIP][521] ([i915#4103])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-rkl: [SKIP][522] ([i915#9934]) -> [SKIP][523] ([i915#14544] / [i915#9934]) +2 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#9934]) -> [SKIP][525] ([i915#9934]) +2 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: [INCOMPLETE][526] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][527] ([i915#12745] / [i915#4839] / [i915#6113])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-glk6/igt@kms_flip@flip-vs-suspend.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: [INCOMPLETE][528] ([i915#12745]) -> [INCOMPLETE][529] ([i915#12745] / [i915#6113])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-glk2/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-rkl: [SKIP][530] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][531] ([i915#2672] / [i915#3555])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][532] ([i915#14544] / [i915#2672]) -> [SKIP][533] ([i915#2672])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-rkl: [SKIP][534] ([i915#2672] / [i915#3555]) -> [SKIP][535] ([i915#14544] / [i915#2672] / [i915#3555])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][536] ([i915#2672]) -> [SKIP][537] ([i915#14544] / [i915#2672])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x@pipe-a-valid-mode:
- shard-rkl: [SKIP][538] ([i915#15573]) -> [SKIP][539] ([i915#14544] / [i915#15573]) +1 other test skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x@pipe-a-valid-mode.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][540] ([i915#1825]) -> [SKIP][541] ([i915#14544] / [i915#1825]) +11 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: [SKIP][542] ([i915#4423]) -> [SKIP][543]
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite:
- shard-rkl: [SKIP][544] ([i915#14544] / [i915#15574]) -> [SKIP][545] ([i915#15574]) +1 other test skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][546] ([i915#14544] / [i915#1825]) -> [SKIP][547] ([i915#1825]) +6 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-rkl: [SKIP][548] ([i915#15102]) -> [SKIP][549] ([i915#14544] / [i915#15102])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][550] ([i915#14544] / [i915#15102]) -> [SKIP][551] ([i915#15102])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][552] ([i915#15102] / [i915#3458]) -> [SKIP][553] ([i915#10433] / [i915#15102] / [i915#3458])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][554] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][555] ([i915#15102] / [i915#3023]) +7 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][556] ([i915#15102] / [i915#3023]) -> [SKIP][557] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][558] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][559] ([i915#15102] / [i915#3458]) +2 other tests skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-cpu:
- shard-rkl: [SKIP][560] ([i915#15574]) -> [SKIP][561] ([i915#14544] / [i915#15574])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-cpu.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-cpu.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][562] ([i915#13331]) -> [SKIP][563] ([i915#12713])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][564] ([i915#13331] / [i915#14544]) -> [SKIP][565] ([i915#12713])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: [SKIP][566] ([i915#12713]) -> [SKIP][567] ([i915#1187] / [i915#12713])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][568] ([i915#1187] / [i915#12713]) -> [SKIP][569] ([i915#12713])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][570] ([i915#15458]) -> [SKIP][571] ([i915#14544] / [i915#15458])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-3/igt@kms_joiner@basic-ultra-joiner.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: [SKIP][572] ([i915#14544] / [i915#15460]) -> [SKIP][573] ([i915#15460])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][574] ([i915#15459]) -> [SKIP][575] ([i915#14544] / [i915#15459])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-rkl: [SKIP][576] -> [SKIP][577] ([i915#14544]) +8 other tests skip
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][578] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][579] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][580] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][581] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825])
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-0:
- shard-rkl: [SKIP][582] ([i915#15608]) -> [SKIP][583] ([i915#14544] / [i915#15608])
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-0.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: [SKIP][584] ([i915#15609] / [i915#8825]) -> [SKIP][585] ([i915#14544] / [i915#15609] / [i915#8825])
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0:
- shard-rkl: [SKIP][586] ([i915#14544] / [i915#15608]) -> [SKIP][587] ([i915#15608]) +1 other test skip
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: [SKIP][588] ([i915#14544] / [i915#15609] / [i915#8825]) -> [SKIP][589] ([i915#15609] / [i915#8825]) +1 other test skip
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: [SKIP][590] ([i915#13958]) -> [SKIP][591] ([i915#13958] / [i915#14544])
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-none.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: [SKIP][592] ([i915#14259] / [i915#14544]) -> [SKIP][593] ([i915#14259])
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-3/igt@kms_plane_multiple@tiling-4.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: [SKIP][594] ([i915#14544] / [i915#5354]) -> [SKIP][595] ([i915#5354])
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][596] ([i915#3828]) -> [SKIP][597] ([i915#9340])
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][598] ([i915#11520] / [i915#14544]) -> [SKIP][599] ([i915#11520]) +2 other tests skip
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][600] ([i915#14544] / [i915#9683]) -> [SKIP][601] ([i915#9683]) +1 other test skip
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: [SKIP][602] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][603] ([i915#1072] / [i915#9732]) +8 other tests skip
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-4/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg1: [SKIP][604] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][605] ([i915#1072] / [i915#9732])
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-dg1-17/igt@kms_psr@fbc-psr2-suspend.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-dg1-18/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][606] ([i915#1072] / [i915#9732]) -> [SKIP][607] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][608] ([i915#14544] / [i915#5289]) -> [SKIP][609] ([i915#5289])
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][610] ([i915#14544] / [i915#2434]) -> [SKIP][611] ([i915#2434])
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-6/igt@perf@mi-rpc.html
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-7/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][612] ([i915#2433]) -> [SKIP][613] ([i915#14544] / [i915#2433])
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17892/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[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#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[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#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12935]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12935
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[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#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14104
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15095
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[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#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520
[i915#15573]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15573
[i915#15574]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574
[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#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#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[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#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[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#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
[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#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[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#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[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#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[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_8718 -> IGTPW_14422
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_17892: e81ccbb3ef7a5a3469b91c8b6b85d021050da562 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14422: 14422
IGT_8718: 8718
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14422/index.html
[-- Attachment #2: Type: text/html, Size: 215596 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-01-27 6:34 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
` (3 preceding siblings ...)
2026-01-27 12:47 ` ✗ i915.CI.Full: " Patchwork
@ 2026-01-29 15:58 ` Bilal, Mohammed
4 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
@ 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-02-10 3:24 Jeevan B
2026-02-10 20:17 ` Thasleem, Mohammed
2026-02-11 13:53 ` Kamil Konieczny
0 siblings, 2 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
* RE: [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 20:17 ` Thasleem, Mohammed
2026-02-11 13:53 ` Kamil Konieczny
1 sibling, 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 Jeevan B
2026-02-10 20:17 ` Thasleem, Mohammed
@ 2026-02-11 13:53 ` Kamil Konieczny
1 sibling, 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
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-01-27 6:34 [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Jeevan B
2026-01-27 7:58 ` ✓ Xe.CI.BAT: success for lib/igt_pm: Move DC State Counter Functions to common library (rev2) Patchwork
2026-01-27 8:18 ` ✓ i915.CI.BAT: " Patchwork
2026-01-27 9:34 ` ✗ Xe.CI.Full: failure " Patchwork
2026-01-27 12:47 ` ✗ i915.CI.Full: " Patchwork
2026-01-29 15:58 ` [PATCH i-g-t] lib/igt_pm: Move DC State Counter Functions to common library Bilal, Mohammed
-- strict thread matches above, loose matches on Subject: below --
2026-02-13 7:16 Jeevan B
2026-02-10 3:24 Jeevan B
2026-02-10 20:17 ` Thasleem, Mohammed
2026-02-11 13:53 ` Kamil Konieczny
2026-02-09 5:04 Jeevan B
2026-02-09 16:42 ` Kamil Konieczny
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